@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Paytone+One&display=swap");
body {
  background: linear-gradient(180deg, #02050a 12.06%, #000000 131.11%);
  margin: 0;
  padding: 0;
}
.title-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-icon {
  display: none;
  margin-right: 20px;
}

.navbar-close {
  display: none;
  margin-right: 20px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100; /* ensures it's above other elements */
  background-color: black;
  padding: 10px 20px;
}
header .logo1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  font-family: "Paytone One", sans-serif;
}
header .logo1 span {
  color: #55e6a5;
}
header .logo1 img {
  width: 120px;
  height: 60px;
}
header .nav-links {
  list-style-type: none;
}
header .nav-links li {
  display: inline-block;
  padding: 0px 20px;
}
header .nav-links li a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: white;
  font-family: "Inter", sans-serif;
}
header .nav-links li a:hover {
  color: #ccc;
}
header button {
  font-family: "Inter", sans-serif;
  background-color: #55e6a5;
  border: none;
  border-radius: 5px;
  height: 30px;
  width: 130px;
  margin-right: 30px;
}
header .get a {
  color: black;
  text-decoration: none;
}

.email-form {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center; /* centers the whole form */
  gap: 10px; /* this defines exact space between input and button */
  flex-wrap: wrap;
}

.email-form input[type="text"] {
  padding: 10px 15px;
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
}

.email-form button {
  padding: 10px 16px;
  background-color: #55e6a5;
  color: black;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.hero {
  position: relative;
  margin-top: 80px;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero .hero-text {
  position: absolute; /* Set position to absolute */
  top: 50%; /* Align the top of the div to the vertical center */
  left: 50%; /* Align the left side of the div to the horizontal center */
  transform: translate(
    -50%,
    -50%
  ); /* Adjust position to center both horizontally and vertically */
  text-align: center; /* Center-align text within the div */
  color: white; /* Set text color */

  padding: 10px;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}
.hero h1 {
  font-family: "Paytone One", sans-serif;
  font-size: 2.5em;
  color: #55e6a5;
}
.hero p {
  font-size: 1.2em;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
  text-align: auto;
}
.hero .hero-text input[type="text"],
.hero .hero-text button {
  display: flex;

  margin: 10px; /* Add some spacing between input and button */
  padding: 10px 20px; /* Add padding to input and button */
  border: none; /* Remove border */
  border-radius: 5px; /* Apply border-radius */
}
.hero .hero-text input[type="text"] {
  width: 500px;
  max-width: 550px;
  /* width: 300px; Set width for the input */
}
.hero .hero-text button {
  background-color: #55e6a5; /* Set background color */
  color: black; /* Set text color */
  cursor: pointer; /* Set cursor to pointer on hover */
}
.hero .hero-text button:hover {
  background-color: #55e6a5; /* Change background color on hover */
}

.sec1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 4em; /* Adjust the margin as needed */
  text-align: center;
}

.first {
  color: #55e6a5;
  font-family: "Paytone One", sans-serif;
  font-size: 20px;
  max-width: 360px;
  text-align: justify;
}

.secound {
  color: white;
  margin-top: 10px;
}

.secound p {
  margin-top: 20px;
  font-size: 17px;
  max-width: 300px;
  font-family: "Inter", sans-serif;
}

.services {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.icon h3 {
  font-family: "Inter", sans-serif;
  color: #55e6a5;
  margin: 0;
}

.services h1 {
  color: white;
  font-family: "Paytone One", sans-serif;
}

.services p {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 200px;
  max-width: 550px;
  line-height: 1.2;
  text-align: center; /* Center-align text within the <p> element */
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
  gap: 60px; /* Adds a gap between grid items */
  align-items: center;
  padding-left: 40px;
}

.box {
  width: 250px;
  height: 320px;
  padding: 20px; /* Add padding inside the box */
  background-color: #55e6a5; /* Set background color */
}

.box h2 {
  font-family: "Inter", sans-serif;
  margin-top: 0; /* Remove top margin for h1 */
}

.box p {
  font-family: "Inter", sans-serif;
  margin-bottom: 0; /* Remove bottom margin for p */
}

.box img {
  max-width: 100%; /* Ensure image doesn't exceed box width */
  height: auto; /* Maintain aspect ratio */
  margin-top: 10px;
}

.connect {
  text-align: center;
}
.connect h1 {
  color: #55e6a5;
  font-family: "Paytone One", sans-serif;
}
.connect p {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 200px;
  font-size: 17px;
  line-height: 1.5;
}

.con {
  display: flex;
  color: white;
  padding: 20px; /* Add padding */
  font-family: "Inter", sans-serif;
}

#line {
  /* Line 1 */
  position: absolute;
  width: 350px;
  left: 200px;
  border: 0.5px solid #ffffff;
}

.left,
.right {
  flex: 1;
  padding: 40px 170px; /* Add padding */
}

.left .ico1,
.right .ico2 {
  display: flex;
  align-items: center;
}

.left .ico1 img,
.right .ico2 img {
  margin-right: 10px; /* Add margin between image and text */
  width: 30px;
}

.right {
  max-width: 600px; /* Set a maximum width for the content */
  margin: 0 auto; /* Center the content horizontally */
}

.bg {
  position: absolute;
  width: 490px;
  height: 470px;
  margin-bottom: 80px;
  left: calc(60% - 30.5px); /* Center horizontally */
  background: #0a1019;
  z-index: -1;
  border-radius: 10px;
}

.right input {
  display: block;
  margin-bottom: 10px; /* Add margin between input elements */
  background-color: white;
}

.right input[type="text"],
.right input[type="email"],
.right button {
  width: 100%; /* Set the width to fill the container */
  padding: 10px; /* Add padding */
  margin-bottom: 10px; /* Add margin between elements */
  border: 1px solid #ccc; /* Add border */
  border-radius: 5px; /* Add border radius */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.right button {
  background-color: #55e6a5; /* Set background color */
  color: black; /* Set text color */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s; /* Add transition for smoother hover effect */
}

.right button:hover {
  background-color: #45a049; /* Change background color on hover */
}

.add {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Inter", sans-serif;
  margin-top: 40px;
}

.add div {
  display: flex;
  align-items: center;
}

.add img {
  margin-right: 10px; /* Add margin between image and text */
}

.whoami {
  display: flex;
  align-items: flex-start;
  padding: 40px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.brand {
  flex: 0 0 200px;
  margin-right: 70px;
  margin-top: 70px;
}

.brand img {
  max-width: 100%;
  height: auto;
}

.me {
  flex: 1;
}

.me h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.me h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.me p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.me p br {
  display: none;
}

.me p::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: white;
  margin: 10px 0;
}

.me img {
  max-width: 150px;
  height: auto;
  margin-top: 20px;
}

.con2 {
  display: flex;
  color: white;
  text-align: center;
  -moz-column-gap: 80px;
  column-gap: 80px;
  align-items: center;
  padding: 90px 170px;
  font-family: "Inter", sans-serif;
}
.con2 h2 {
  color: #55e6a5;
}
.con2 p {
  max-width: 500px;
}
.con2 h5 {
  font-size: 14px;
}

.join {
  position: relative;
  margin-bottom: -20px;
}
.join img {
  width: 100%;
  height: auto;
}
.join .jtext {
  position: absolute; /* Set position to absolute */
  top: 50%; /* Align the top of the div to the vertical center */
  left: 50%; /* Align the left side of the div to the horizontal center */
  transform: translate(
    -50%,
    -50%
  ); /* Adjust position to center both horizontally and vertically */
  text-align: center; /* Center-align text within the div */
  color: white; /* Set text color */
  margin-top: 80px;
}
.join h1 {
  font-family: "Paytone One", sans-serif;
  font-size: 2.5em;
  color: #55e6a5;
  max-width: 550px;
}
.join button {
  background-color: #55e6a5;
  color: black;
  width: 120px;
  height: 40px;
  border-radius: 20px;
  border: none;
}
.join a {
  text-decoration: none;
  color: black;
}

.sad {
  background-color: #0a1019;
}

.name img {
  width: 350px;
  height: 50px;
}

.name {
  color: white;
  display: flex;
  margin: 40px;
  font-family: "Inter", sans-serif;
  gap: 10px;
}

.footer1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  color: white;
  margin-bottom: 70px;
  font-family: "Inter", sans-serif;
}

.para {
  flex-basis: 100%;
  max-width: 300px;
  margin-left: 30px;
}

.side1,
.side2 {
  flex-basis: calc(10% - 5px);
}

.side1 ul,
.side2 ul {
  list-style: none;
  padding: 0;
}

.side1 ul li,
.side2 ul li {
  margin-bottom: 10px;
}

.side1 ul li a,
.side2 ul li a {
  color: white;
  text-decoration: none;
}

.side1 ul li a:hover,
.side2 ul li a:hover {
  text-decoration: underline;
}

.socials {
  background-color: #0a1019;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: white;
  padding: 20px;
  font-family: "Inter", sans-serif;
}
.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Media Query for Mobile Screens (max-width: 767px) */
@media only screen and (max-width: 768px) {
  body,
  html {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }
  .email-form {
    display: flex;
    flex-direction: row;
    gap: 0px;
  }

  .email-form input[type="text"] {
    width: 100px;
    max-width: 200px;
  }

  .email-form button {
    padding: 10px 14px;
  }

  .logo1 {
    display: flex;
  }
  .logo1 h2 {
    font-size: 16px;
    font-family: "Paytone One", sans-serif;
  }
  .logo1 img {
    width: 40px;
    height: 50px;
  }
  header .get {
    z-index: 20;
  }
  .navbar-icon {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 25px;
    z-index: 100; /* Show the navbar icon for mobile devices */
  }
  .navbar-close {
    display: none;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;

    padding: 20px 0;
  }
  .nav-links.show {
    display: flex; /* Show nav links when class 'show' is applied */
    flex-direction: column;
    transition: height 0.5s ease, opacity 0.5s ease; /* Add transition for height and opacity */
    height: auto;
    opacity: 1;
    max-height: 400px;
  }
  .get a {
    font-size: 10px;
    color: black;
    text-decoration: none;
  }
  ul {
    padding: 0;
    margin: 0;
  }
  ul li {
    margin: 10px 0; /* Add margin between nav links */
  }
  ul li a {
    font-size: 15px;
    text-align: center;
    color: white; /* Set link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth color transition */
  }
  ul li a:hover {
    color: gray; /* Change color on hover */
  }
  .hero {
    position: relative;
    margin-top: 100px;
  }
  .hero img {
    width: 100%;
    height: auto;
  }
  .hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    color: white;
    /*Decreased margin for mobile*/
    font-size: 14px;
    max-width: 90%;
  }
  .hero-text h1 {
    margin-top: 75px;
    font-family: "Paytone One", sans-serif;
    font-size: 20px; /* Reduced font size for mobile */
    color: #55e6a5;
  }
  .hero-text p {
    /* font-size: 12px; Reduced font size for mobile */
    line-height: 1.6; /* Adjusted line height for mobile */
    font-family: "Inter", sans-serif;
    text-align: center; /* Center-align text for mobile */

    font-size: 14px;
    padding: 0 10px;
  }
  .hero .hero-text input[type="text"] {
    width: 200px;
    max-width: 300px;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .hero-text button {
    font-size: 12px;
    height: 31px;
  }
  .sec1 {
    display: block;
    margin-bottom: 20px;
  }
  .sec1 .first h1 {
    margin-top: 70px;
    font-size: 17px;
    text-align: center;
  }
  .sec1 .secound p {
    font-size: 10px;
    text-align: center;
  }
  .services {
    display: block;
  }
  .services .icon h3 {
    font-size: 17px;
  }
  .services h1 {
    font-size: 17px;
  }
  .services p {
    font-size: 10px;
  }
  .grid {
    margin: 0.5em;
    margin-left: -10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 3 equal columns */
    gap: 10px; /* Adds a gap between grid items */
    align-items: center;
    padding-left: 20px;
  }
  .box {
    width: 100px;
    height: 180px;
    padding: 28px; /* Add padding inside the box */
    background-color: #55e6a5; /* Set background color */
  }
  .box h2 {
    font-family: "Inter", sans-serif;
    margin-top: 0; /* Remove top margin for h1 */
    font-size: 14px;
  }
  .box p {
    font-family: "Inter", sans-serif;
    margin-bottom: 0; /* Remove bottom margin for p */
    font-size: 10px;
  }
  .box img {
    max-width: 100%; /* Ensure image doesn't exceed box width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px;
  }
  .connect h1 {
    font-size: 20px;
  }
  .connect p {
    font-size: 13px;
  }
  .con {
    flex-direction: column; /* Stack elements vertically for mobile */
    align-items: center; /* Center items horizontally */
  }
  .left,
  .right {
    padding: 20px; /* Adjust padding for mobile */
  }
  #line {
    display: none; /* Hide the line for mobile */
  }
  .bg {
    display: none; /* Hide the background for mobile */
  }
  .add img {
    margin-right: 10px; /* Remove margin between image and text for mobile */
    margin-bottom: 5px; /* Add margin below the image for mobile */
  }
  .right input,
  .right button {
    margin-bottom: 20px; /* Increase margin between input elements for mobile */
  }

  .whoami {
    flex-direction: column;
    align-items: center;
  }

  .brand {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .brand img {
    width: 300px;
  }

  .me {
    text-align: center;
  }

  .me h1 {
    font-size: 2rem;
  }

  .me h5 {
    font-size: 1rem;
  }

  .me p {
    font-size: 0.9rem;
  }
  .con2 {
    display: block;
    padding: 10px; /* Adjust the padding */
  }
  .con2 h2 {
    color: #55e6a5;
    font-size: 18px;
  }
  .con2 p {
    font-size: 15px;
  }
  .con2 > div {
    max-width: 100%; /* Adjust the max-width of each div */
  }
  .con2 img {
    max-width: 80px; /* Adjust the max-width of the images */
  }
  .join img {
    width: 100%;
    height: auto;
  }
  .join .jtext h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .jtext button {
    margin-bottom: 150px;
  }
  .jtext a {
    text-decoration: none;
    color: black;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  .footer .name img {
    /* Adjust image size if needed */
    width: 200px;
    height: 40px;
    margin-bottom: 10px;
    margin: 40px;
  }
  .footer .name h2 {
    font-family: "Paytone One", sans-serif;
    font-size: 24px;
  }
  .footer .footer1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%; /* Adjust max-width if needed */
  }
  .footer .footer1 .para h3 {
    margin: 0;
    font-size: 16px;
  }
  .footer .footer1 .side1,
  .footer .footer1 .side2 {
    width: 100%;
  }
  .footer .footer1 ul {
    list-style-type: none;
    padding: 0;
  }
  .footer .footer1 ul li {
    margin-bottom: 10px;
  }
  .socials {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .socials .whatsapp {
    position: fixed;
    left: 10px; /* Adjust the left position as needed */
    top: 80%; /* Adjust the vertical position as needed */
    transform: translateY(-50%);
    z-index: 999; /* Ensure the icon is above other content */
    width: 50px;
  }
  .socials h3 {
    margin: 10px 0;
    font-size: 17px; /* Adjust font size if needed */
  }
  .socials .social-img {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust the gap between social icons */
    flex-wrap: wrap;
  }
  .socials .social-img a {
    display: block;
  }
  .socials .social-img img {
    max-width: 40px; /* Adjust image size if needed */
  }
} /*# sourceMappingURL=style.css.map */
