html, body {
  width: 100%;
  height: 100%;
  font-family: inter, sans-serif;
  padding: 0px;
  margin: 0px;
}

video {
  max-width: 586px;
  margin: 50px;
  border-radius: 10px;
  box-shadow: 1px 1px 8px 1px rgba(128, 128, 128, 0.09);
  margin-top: 0px;
}

body {
  /* Basic CSS for the FAQ section */
}
body .signup-link {
  color: #131313 !important;
  background: #f2f8fb !important;
  border: 1px solid rgba(7, 7, 7, 0.7098039216) !important;
  box-shadow: 0px 0px 0px !important;
}
body .sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 17px 33px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid rgb(242, 242, 242);
  box-sizing: border-box;
}
body .sticky-header .logo {
  /* Styling for your logo goes here */
}
body .sticky-header .logo svg {
  width: 70px;
}
body .sticky-header .link-box {
  /* Styling for the link-box goes here */
  display: flex;
  gap: 20px;
}
body .sticky-header .link-box a {
  text-decoration: none;
  color: rgb(59, 59, 59);
  font-size: 13px;
}
body .sticky-header .link-box .login-link {
  /* Styling for the login links goes here */
}
body main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .faq {
  margin: 24px;
  margin-top: 53px;
  /* Style for the toggle arrow icon */
}
body .faq span.toggle-icon {
  font-size: 28px;
  margin: 0px;
  padding: 0px;
  position: relative;
  /* font-weight: 700; */
  position: relative;
  margin-top: -8px;
}
body .faq .question {
  background-color: #ffffff;
  padding: 25px;
  cursor: pointer;
  border: 1px solid #d6d6d6;
  margin-bottom: 7px;
  border-radius: 10px;
}
body .faq .answer {
  display: none;
  padding: 26px;
  line-height: 24px;
}
body .faq .toggle-icon {
  float: right;
}
body .center {
  text-align: center;
  margin: auto;
  display: block;
}
body .signup-btn {
  border-radius: 36px !important;
  padding: 22px 28px !important;
  position: relative;
  top: -11px;
}
body .btn {
  border: 0px;
  padding: 10px;
  margin-top: 20px;
  width: 263px;
  /* display: inline-block; */
  padding: 16px 31px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 26px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #007bff;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
body .btn.btn-primary {
  color: white;
  background-color: #2DAED7;
}
body header {
  margin: 61px;
  margin-top: 33px;
}
body header #header-logo {
  width: 150px;
}
body header .login-link {
  float: right;
}
body header .login-link {
  color: rgb(38, 38, 38);
  text-decoration: none;
  margin-left: 33px;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  top: 21px;
}
body .center-h1-text {
  color: #05324d;
  font-size: 46px;
  font-weight: 500;
  max-width: 793px;
  margin: auto;
  margin-bottom: 23px;
  margin-top: 120px;
}
body .main-holder {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body section {
  background-color: white;
  padding: 15px;
}
body section .feature-title {
  font-size: 2.25rem;
  line-height: 3.5rem;
}
body section .feature-holder {
  margin: auto;
  max-width: 89%;
  margin-top: 100px;
  border: 1px solid #f6f6f6;
  border-radius: 14px;
  padding-top: 24px;
}
body section .feature-description {
  color: gray;
}
body section .card-list {
  list-style: none;
  padding: 0;
  margin-top: 100px;
}
body section .card {
  display: flex;
  margin: 10px;
  margin-top: 67px;
}
body section .card .image {
  flex: 1;
  padding: 10px;
}
body section .card .image img {
  width: 518px;
  height: auto;
  border-radius: 5px;
}
body section .card .content {
  flex: 2;
  padding: 10px;
}
body section .card .content h2 {
  margin-top: 0;
  color: #303030 !important;
  font-weight: 600 !important;
}
body section .card .content p {
  margin-bottom: 0;
  color: rgb(46, 46, 46);
  font-size: 17px;
}
body section .card:nth-child(odd) .image {
  order: 2;
}
body section .card:nth-child(even) .content {
  order: 1;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 49px 0;
  position: absolute;
  width: 100%;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-container .footer-logo img {
  width: 150px;
  height: auto;
}
.footer .footer-container .footer-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}
.footer .footer-container .footer-links a:hover {
  text-decoration: underline;
}
.footer .footer-container .footer-info p {
  margin: 5px 0;
}
.footer .footer-container .footer-info p:first-child {
  font-weight: bold;
}
.footer .footer-container .footer-info p:not(:first-child) {
  font-size: 14px;
}

/* Styles for screens with a maximum width of 767px (typical for mobile devices) */
@media only screen and (max-width: 767px) {
  body section .feature-holder {
    padding: 0px;
    margin: auto;
    width: 100%;
    max-width: 97%;
  }
  video {
    max-width: 100%;
    margin: 0px;
    border-radius: 10px;
    box-shadow: 1px 1px 8px 1px rgba(128, 128, 128, 0.09);
    margin-top: 0px;
    /* width: 100%; */
  }
  body section .card {
    display: block;
    margin: 0px;
    margin-top: 47px;
  }
  body section {
    padding: 0px !important;
    margin-top: 67px;
  }
  svg#header-logo {
    width: 99px !important;
    margin-top: 16px;
  }
  body header {
    margin: 17px;
    margin-top: 16px;
  }
  a.login-link.hire-link {
    display: none;
  }
  .footer .footer-container {
    margin-right: 13px;
    margin-left: 13px;
  }
  /* Add more styles as needed for your mobile design */
}/*# sourceMappingURL=styles.css.map */