/*
Colors
**************
*/
/*
Font Import & Family
***********
*/
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&family=Stack+Sans+Notch:wght@200..700&display=swap");
body {
  background: #000000;
  font-family: "Red Hat Text", sans-serif;
}

/*
Root Font Size
***********
*/
html {
  font-size: 16px;
}

/*
Line Heights
**************
*/
/*
Font Sizes
***********
*/
h1 {
  font-family: "Stack Sans Notch", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 5.6rem);
  line-height: 1.1;
}

h2 {
  font-family: "Stack Sans Notch", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 4rem);
  line-height: 1.1;
}

h3 {
  font-family: "Stack Sans Notch", sans-serif;
  font-size: clamp(1.6rem, 1.8vw, 3rem);
  line-height: 1.1;
}

h4 {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  font-weight: 400;
}

h5 {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.1;
  font-weight: 400;
}

p {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.25;
  font-weight: 400;
}

a {
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.25;
  font-weight: 400;
}

/*
Font Weights
**************
*/
/*
Breakpoints and Containers
***********
*/
.container {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1352px) {
  .container {
    width: calc(100% - 150px);
  }
}
@media (min-width: 1920px) {
  .container {
    width: calc(100% - 250px);
  }
}

/*
Border Radius
***********
*/
/*
Margin
***********
*/
/*
Padding
***********
*/
/*
Shadows
***********
*/
/*
Spacing Classes
***********
*/
/*
Transitions
***********
*/
.button {
  border-radius: 0.5rem;
  width: fit-content;
  font-family: "Stack Sans Notch", sans-serif;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  z-index: 0;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .button {
    padding: 15px 30px;
  }
}
.button--border {
  background: var(--secondary);
  border: none;
}
.button--border::before, .button--border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  transition: opacity 0.8s ease;
}
.button--border::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 1;
}
.button--border::after {
  background: linear-gradient(90deg, var(--primary), var(--primary));
  opacity: 0;
}
.button--border:hover::before {
  opacity: 0;
}
.button--border:hover::after {
  opacity: 1;
}

/*
Reset CSS
***********
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  font-size: 16px;
}

html,
body {
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

button,
a {
  cursor: pointer;
}

#root,
#__next {
  isolation: isolate;
}

header {
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
}
header .navWrap {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  header .navWrap {
    gap: 1rem;
    padding: 1.5rem 0;
  }
}
@media (min-width: 1024px) {
  header .navWrap {
    gap: 1.5rem;
  }
}
header .navWrap img {
  max-width: 200px;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  header .navWrap img {
    max-width: 225px;
    max-height: 55px;
  }
}
header .navWrap .navMenu {
  background: #000000;
  padding: 25px;
  top: 0;
  padding-top: 85px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.2s ease all;
  width: 100%;
  left: -100%;
  z-index: 1;
  position: fixed;
}
@media (min-width: 768px) {
  header .navWrap .navMenu {
    padding: 115px 50px 0 50px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu {
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    position: static;
    background: none;
    padding: 0;
  }
}
header .navWrap .navMenu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  header .navWrap .navMenu nav {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    flex-direction: row;
    gap: 1rem;
  }
}
header .navWrap .navMenu nav ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul {
    gap: 1.5rem;
  }
}
@media (min-width: 1352px) {
  header .navWrap .navMenu nav ul {
    gap: 2rem;
  }
}
@media (min-width: 1920px) {
  header .navWrap .navMenu nav ul {
    gap: 6rem;
  }
}
header .navWrap .navMenu nav ul li {
  width: 100%;
  background: #1e1e1e;
  border-radius: 5px;
  padding: 12px;
}
@media (min-width: 768px) {
  header .navWrap .navMenu nav ul li {
    border-radius: 15px;
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul li {
    width: auto;
    padding: 0;
    background: none;
  }
}
header .navWrap .navMenu nav ul a {
  width: 100%;
  transition: all ease 0.3s;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  header .navWrap .navMenu nav ul a {
    gap: 1rem;
  }
}
header .navWrap .navMenu nav ul a:hover {
  color: var(--primary);
}
header .navWrap .navMenu nav ul a img {
  width: 18px;
}
@media (min-width: 768px) {
  header .navWrap .navMenu nav ul a img {
    width: 24px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul a img {
    display: none;
  }
}
header .navWrap .navMenu nav ul a:hover {
  cursor: pointer;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul a:hover li {
    color: #000000;
  }
  header .navWrap .navMenu nav ul a:hover svg {
    width: auto;
    opacity: 1;
    visibility: visible;
  }
}
header .navWrap .navMenu.is-active {
  left: 0;
}
@media (min-width: 1024px) {
  header .navWrap .menuToggle {
    display: none;
  }
}
header .navWrap .menuToggle .hamburger {
  transform: rotate(0deg);
  appearance: 0;
  padding: 0;
  border: 0;
  position: relative;
  display: block;
  width: auto;
  height: auto;
  cursor: pointer;
  z-index: 6;
  appearance: none;
  background: none;
  outline: none;
}
header .navWrap .menuToggle .bar {
  display: none;
}
header .navWrap .menuToggle .hamburger:after,
header .navWrap .menuToggle .hamburger:before {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 34px;
  height: 4px;
  background-color: white;
  margin-bottom: 8px;
  margin-top: 8px;
  transition: 0.2s ease all;
  border-radius: 999999px;
}
header .navWrap .menuToggle .hamburger.is-active:before {
  transform: rotate(-45deg) translate(-4px, 5px);
}
header .navWrap .menuToggle .hamburger.is-active:after {
  transform: rotate(45deg) translate(-4px, -5px);
}
header .navWrap .menuToggle .hamburger.is-active .bar {
  opacity: 0;
}
header .navWrap .button {
  display: none;
}
@media (min-width: 1024px) {
  header .navWrap .button {
    display: block;
  }
}

footer {
  width: 100%;
  position: fixed;
  z-index: 1;
  bottom: 0;
  background: #000000;
}
footer .contact-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 50px 0;
}
@media (min-width: 768px) {
  footer .contact-wrap {
    padding: 75px 0;
  }
}
@media (min-width: 1352px) {
  footer .contact-wrap {
    padding: 100px 0;
  }
}
@media (min-width: 1920px) {
  footer .contact-wrap {
    padding: 100px 0 150px 0;
  }
}
footer .contact-wrap .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 25px;
  background: var(--primary);
  border-radius: 15px;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content {
    gap: 4rem;
    padding: 50px;
    flex-direction: row;
  }
}
@media (min-width: 1352px) {
  footer .contact-wrap .content {
    width: 85%;
  }
}
@media (min-width: 1920px) {
  footer .contact-wrap .content {
    padding: 75px;
  }
}
footer .contact-wrap .content .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: #000000;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content .head {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    max-width: 75%;
    gap: 2rem;
  }
}
@media (min-width: 1920px) {
  footer .contact-wrap .content .head {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  footer .contact-wrap .content .head p {
    max-width: 75%;
  }
}
footer .contact-wrap .content .wpcf7 {
  width: 100%;
}
footer .contact-wrap .content form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content form {
    gap: 1rem;
    width: 100%;
  }
}
footer .contact-wrap .content form input,
footer .contact-wrap .content form textarea {
  width: 100%;
  font-family: "Red Hat Text", sans-serif;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  outline: 0;
  border-radius: 5px;
  padding: 10px;
  color: #000000;
}
footer .contact-wrap .content form input::placeholder,
footer .contact-wrap .content form textarea::placeholder {
  color: #000000;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content form input,
  footer .contact-wrap .content form textarea {
    padding: 20px;
  }
}
footer .contact-wrap .content form textarea {
  height: 100px;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content form textarea {
    height: 150px;
  }
}
footer .contact-wrap .content form input[type=submit] {
  border: 2px solid #000000;
  transition: all ease 0.3s;
  background: #000000;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-family: "Stack Sans Notch", sans-serif;
}
@media (min-width: 1024px) {
  footer .contact-wrap .content form input[type=submit] {
    padding: 20px;
  }
}
footer .contact-wrap .content form input[type=submit]:hover {
  background: var(--primary);
  color: #000000;
}
footer .contact-wrap .content form .wpcf7-form-control-wrap {
  width: 100%;
}
footer .contact-wrap .content form .wpcf7-form .wpcf7-submit {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
footer .contact-wrap .content form .wpcf7-form .wpcf7-spinner {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin: 0;
}
footer .contact-wrap .content form .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  margin: 0;
  padding: 10px;
  color: white;
  border-radius: 10px;
  border: 1px solid red;
}
footer .contact-wrap .content form .wpcf7-spinner {
  display: none;
}
footer .contact-wrap .content form .wpcf7-response-output {
  margin: 0;
  padding: 10px;
  color: #000000;
  border-radius: 10px;
}
footer .contact-wrap .content form .wpcf7-form-control-wrap::placeholder {
  color: #d6d6d6;
}
footer .contact-wrap .content form .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  background-color: #dc3232;
}
footer .white-bar {
  background: white;
  width: 100%;
}
footer .white-bar .white-bar-wrap {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  footer .white-bar .white-bar-wrap {
    justify-content: space-between;
    flex-direction: row;
  }
}
footer .white-bar .white-bar-wrap p {
  color: #000000;
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #000000;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .hero {
    gap: 5rem;
  }
}
.hero .hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .hero .hero-wrap {
    padding-top: 150px;
  }
}
@media (min-width: 1920px) {
  .hero .hero-wrap {
    padding-top: 175px;
  }
}
.hero .hero-wrap .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: white;
}
@media (min-width: 1024px) {
  .hero .hero-wrap .content {
    width: 85%;
    gap: 2rem;
  }
}
@media (min-width: 1920px) {
  .hero .hero-wrap .content {
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .hero .hero-wrap .content h1 {
    width: 85%;
  }
}
.hero .hero-wrap .content h1 b {
  color: var(--primary);
}
.hero .hero-wrap .content h5 {
  color: #d6d6d6;
}
@media (min-width: 768px) {
  .hero .hero-wrap .content h5 {
    width: 65%;
  }
}
@media (min-width: 1352px) {
  .hero .hero-wrap .content h5 {
    width: 50%;
  }
}
.hero .hand {
  position: relative;
  z-index: 9999999999999;
  width: 500px;
}
@media (min-width: 768px) {
  .hero .hand {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .hero .hand {
    width: 70%;
  }
}
@media (min-width: 1352px) {
  .hero .hand {
    width: 60%;
  }
}
@media (min-width: 1920px) {
  .hero .hand {
    width: 50%;
  }
}
.hero .gradient-overlays {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 50%;
  background: linear-gradient(0deg, rgba(var(--primary-rgb), 0.84) 0%, rgba(var(--primary-rgb), 0) 100%);
}

.split {
  background: #d6d6d6;
}
.split .split-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .split .split-wrap {
    text-align: left;
    flex-direction: row;
    align-items: stretch;
  }
}
.split .split-wrap .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 35px;
  width: 100%;
}
@media (min-width: 1024px) {
  .split .split-wrap .content {
    align-items: flex-start;
    gap: 2rem;
    padding: 50px;
    width: 60%;
  }
}
@media (min-width: 1352px) {
  .split .split-wrap .content {
    padding: 75px;
  }
}
@media (min-width: 1920px) {
  .split .split-wrap .content {
    gap: 2.5rem;
    padding: 125px;
  }
}
.split .split-wrap .content h2 {
  text-wrap: balance;
}
.split .split-wrap .image-wrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .split .split-wrap .image-wrap {
    width: 40%;
    display: flex;
  }
}
.split .split-wrap .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.grid {
  padding: 50px 0 0 0;
  background: linear-gradient(to bottom, #ffffff 90%, #000000 90%);
}
@media (min-width: 768px) {
  .grid {
    padding: 75px 0 0 0;
  }
}
@media (min-width: 1352px) {
  .grid {
    padding: 150px 0 0 0;
  }
}
.grid .grid-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .grid .grid-wrap {
    gap: 4rem;
  }
}
@media (min-width: 1920px) {
  .grid .grid-wrap {
    gap: 5rem;
  }
}
.grid .grid-wrap .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .head {
    max-width: 70%;
    gap: 2rem;
  }
}
@media (min-width: 1920px) {
  .grid .grid-wrap .head {
    gap: 2.5rem;
  }
}
.grid .grid-wrap .head p {
  max-width: 75%;
}
.grid .grid-wrap .grid-area {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area {
    perspective: 2000px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
}
@media (min-width: 1352px) {
  .grid .grid-wrap .grid-area {
    width: 85%;
  }
}
.grid .grid-wrap .grid-area .box {
  perspective: 2000px;
  position: relative;
  background: #000000;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box {
    overflow: hidden;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
}
@media (min-width: 1352px) {
  .grid .grid-wrap .grid-area .box {
    padding: 35px;
  }
}
.grid .grid-wrap .grid-area .box .icon {
  max-height: 135px;
  width: auto;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box .icon {
    padding-bottom: 15px;
    max-height: 150px;
  }
}
@media (min-width: 1920px) {
  .grid .grid-wrap .grid-area .box .icon {
    max-height: 175px;
  }
}
.grid .grid-wrap .grid-area .box .extra-image {
  display: none;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box .extra-image {
    display: block;
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 225px;
    filter: blur(4px);
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box .extra-image {
    width: 250px;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box .extra-image {
    width: 300px;
  }
}
.grid .grid-wrap .grid-area .box h3,
.grid .grid-wrap .grid-area .box h1 {
  color: var(--primary);
}
.grid .grid-wrap .grid-area .box p {
  color: #d6d6d6;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-1,
  .grid .grid-wrap .grid-area .box-2,
  .grid .grid-wrap .grid-area .box-3,
  .grid .grid-wrap .grid-area .box-4,
  .grid .grid-wrap .grid-area .box-5 {
    grid-column: auto;
    grid-row: auto;
  }
}
.grid .grid-wrap .grid-area .box-3,
.grid .grid-wrap .grid-area .box-4,
.grid .grid-wrap .grid-area .box-5 {
  border: 2px solid var(--primary);
  padding: 50px 35px;
}
.grid .grid-wrap .grid-area .box-3 h1,
.grid .grid-wrap .grid-area .box-4 h1,
.grid .grid-wrap .grid-area .box-5 h1 {
  font-size: 4.4rem;
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-1 {
    grid-column: 1/span 2;
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-1 p {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-2 {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-3 {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-4 {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .grid .grid-wrap .grid-area .box-5 {
    grid-column: 3;
    grid-row: 2;
  }
}

.features {
  border-bottom: 5px solid var(--primary);
  background: #000000;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .features {
    padding: 75px 0;
  }
}
@media (min-width: 1352px) {
  .features {
    padding: 150px 0;
  }
}
.features .features-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .features .features-wrap {
    gap: 4rem;
  }
}
@media (min-width: 1920px) {
  .features .features-wrap {
    gap: 5rem;
  }
}
.features .features-wrap .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .features .features-wrap .head {
    align-items: flex-start;
    text-align: left;
    max-width: 75%;
    gap: 2rem;
  }
}
@media (min-width: 1920px) {
  .features .features-wrap .head {
    gap: 2.5rem;
  }
}
.features .features-wrap .head h2 {
  color: white;
}
.features .features-wrap .head p {
  color: #d6d6d6;
}
@media (min-width: 1024px) {
  .features .features-wrap .head p {
    max-width: 75%;
  }
}
.features .features-wrap .features-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .features .features-wrap .features-area {
    align-items: flex-start;
    flex-direction: row;
    flex-flow: wrap;
    max-width: 100%;
    gap: 4rem;
  }
}
@media (min-width: 1352px) {
  .features .features-wrap .features-area {
    flex-flow: nowrap;
  }
}
@media (min-width: 1920px) {
  .features .features-wrap .features-area {
    gap: 3rem;
  }
}
.features .features-wrap .features-area .single {
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .features .features-wrap .features-area .single {
    width: calc(50% - 2rem);
    align-items: flex-start;
    text-align: left;
  }
}
.features .features-wrap .features-area .single h3 {
  color: var(--primary);
}
.features .features-wrap .features-area .single p {
  color: #d6d6d6;
}

/*# sourceMappingURL=main.css.map */
