@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  background-color: #161616;
  color: #fafafa;
}
.mob {
  display: none;
}
.spacer {
  width: 100%;
  display: block;
  height: 100px;
}
.clear {
  clear: both;
  padding: 0;
  margin: 0;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
.full {
  display: block;
  padding: 0 20px;
  margin: 40px;
  box-sizing: border-box;
}
.fm-1 {
  float: left;
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-2 {
  float: left;
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-3 {
  float: left;
  width: 31.3333333333%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-4 {
  float: left;
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-5 {
  float: left;
  width: 28%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-6 {
  float: left;
  width: 68%;
  margin-left: 1%;
  margin-right: 1%;
}
.half {
  float: left;
  width: 50%;
  margin: 0;
}
.third {
  float: left;
  width: 33.3333333333%;
  margin: 0;
}

header {
  position: fixed;
  top: 20px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 1000;
}
.logo {
  height: 40px;
}
nav {
  display: flex;
  gap: 20px;
  color: #fafafa;
  padding: 10px 20px;
}
nav a {
  text-decoration: none;
  color: #fafafa;
  font-weight: 500;
  transition: all 0.3s ease;
}
nav a:hover {
  color: #d70015;
}
.cta-button {
  background: #d70015;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: #ff0000;
}

.hero {
  margin: 20px 40px 40px 40px;
  padding: 60px;
  background: url("images/hero.png") no-repeat center center/cover;
  border-radius: 16px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
.hero-content {
  width: 50%;
}

.three-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.single-box {
  position: relative;
  padding-top: 80%; /* 1:1 Aspect Ratio */
  border-radius: 16px;
}
.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: left;
}
.simplify {
  position: relative;
  background-image:
    url("images/simplify.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
}
.simplify::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/simplify.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.simplify:hover::before {
  opacity: 1;
}
.secure {
  position: relative;
  background-image:
    url("images/secure.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
  background-position: center center;
}
.secure::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/secure.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
  background-position: center center;
  background-repeat: no-repeat;
}
.secure:hover::before {
  opacity: 1;
}
.streamline {
  position: relative;
  background-image:
    url("images/streamline.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
}
.streamline::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/streamline.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.streamline:hover::before {
  opacity: 1;
}

.cta {
  background-image: url("images/ctabg.png");
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 30px;
  border-radius: 16px;
  background-color: #1d1d1d;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 40px;
}
.grid-item {
  aspect-ratio: 1 / 1;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: start;
}
.icon {
  height: 48px;
  margin-bottom: 20px;
}
.grid-item ul {
  margin-left: 20px;
}
.grid-item ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.scroll-container {
  height: 560px;
  width: 100%;
  overflow-x: scroll;
  display: flex;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-box {
  flex: 0 0 450px;
  height: 450px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: end;
  justify-content: start;
}
.scroll-box-bg {
  position: relative;
  background-image: linear-gradient(
    to right,
    rgba(29, 29, 29, 100),
    rgba(29, 29, 29, 100)
  );
  z-index: 1;
}
.scroll-box-bg::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-45deg, #477888, #000000);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.scroll-box-bg:hover::before {
  opacity: 1;
}

.ne-logo {
  max-height: 50px;
  height: 100%;
  margin-bottom: 40px;
}

.list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.done {
  background: url("images/done.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  padding-left: 25px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.four-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.single-box {
  background-color: #1d1d1d;
}
.cimage {
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.quotes-rotator {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  height: 250px;
  font-size: 1.2em;
}
.mark {
  margin-bottom: 20px;
}
.green {
  color: #477888;
}

.accordion {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-title {
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #1d1d1d;
  transition: transform 0.3s;
  font-size: 22px;
  border-radius: 16px;
}
.accordion-title.active {
  border-radius: 16px 16px 0 0;
  background-color: #000000;
}
.accordion-title span {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion-title.active span {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 20px;
  border-radius: 0 0 16px 16px;
  background: #000000;
  animation: fadeIn 0.3s ease forwards;
}

.outer-div {
  width: calc(100% - 80px);
  margin: 40px;
  border-radius: 16px;
  padding: 80px 60px;
  background-image: url("images/cta-big.png");
  background-size: cover;
  display: flex;
  justify-content: space-between;
}
.inner-div-70 {
  width: 70%;
  padding: 20px;
}
.inner-div-30 {
  width: 30%;
  padding: 20px;
}

.three-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
p {
  line-height: 1.5;
  margin-bottom: 10px;
}
h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
}
h2 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}
.aligncenter {
  text-align: center;
}

.in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 2s ease-out,
    transform 2s ease-out;
}
.in.visible {
  opacity: 1;
  transform: translateY(0);
}

.choose {
  border: 2px solid #1d1d1d !important;
  cursor: pointer;
  transition: all 0.3s linear;
}
.choose:hover {
  border: 2px solid #ff0000 !important;
  transform: translateY(-5px);
}
.simage {
  height: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
}
ul {
  margin-left: 20px;
}
ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.privacy-policy {
  margin: 120px 40px 40px 40px;
  padding: 60px 40px;
  background: #000000;
  border-radius: 16px;
  margin-bottom: 80px;
}

.privacy-policy-content {
  width: 100%;
}
.privacy-policy section {
  margin-bottom: 80px;
  margin-top: 40px;
}

.login-sub {
  font-size: 20px;
  color: rgba(250, 250, 250, 0.75);
  margin-top: 12px;
}

.login-form {
  max-width: 400px;
  margin: 20px auto;
  margin-top: 10px;
}

.login-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 20px;
  color: rgba(250, 250, 250, 0.85);
}

.login-form input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border-radius: 6px;
  background-color: #1d1d1d;
  border: 1px solid rgba(185, 181, 181, 0.1);
  color: #fafafa;
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
}

.login-form input:focus {
  border-color: #076e0c;
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.required {
  color: #dc2626;
  font-weight: 600;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(250, 250, 250, 0.85);
}

.remember-me input {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #666;
  accent-color: #d70015;
  cursor: pointer;
}

.forgot-password {
  color: #d70015;
  text-decoration: none;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
}

.signup-text {
  text-align: center;
  margin-top: 20px;
}

.signup-text .cta-button {
  margin-left: 10px;
  color: #d70015;
}

.signup-text .color {
  color: #d70015;
  text-decoration: none;
}

.signup-text .color:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mob {
    display: block;
  }
  .container {
    width: 95%;
  }
  .spacer {
    height: 60px;
  }
  .fm-1 {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
  .fm-2 {
    width: 98%;
  }
  .fm-3 {
    width: 98%;
  }
  .fm-3 {
    width: 98%;
  }
  .fm-4 {
    width: 98%;
  }
  .fm-5 {
    width: 100%;
    margin: 0;
  }
  .fm-6 {
    width: 100%;
    margin: 0;
  }
  .grid-container {
    grid-template-columns: 1fr;
    margin: 20px 20px;
  }
  .grid-item:nth-child(2) {
    order: 1;
  }
  .grid-item:nth-child(4) {
    order: 2;
  }
  .grid-item:nth-child(3) {
    order: 3;
    aspect-ratio: 1 / 1.3;
  }
  .grid-item:nth-child(5) {
    order: 4;
  }
  .grid-item:nth-child(6) {
    order: 5;
  }
  .grid-item:nth-child(8) {
    order: 6;
  }
  .grid-item:nth-child(7) {
    order: 7;
    aspect-ratio: 1 / 1.3;
  }
  header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
  }
  nav {
    display: none;
  }
  .hero {
    margin: 100px 20px 20px 20px;
    padding: 20px;
    background: #000000;
    height: calc(100vh - 120px);
  }
  .hero-content {
    width: 100%;
  }
  .full {
    margin: 20px;
    padding: 0;
  }
  .three-box {
    display: grid;
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .grid-item {
    height: auto;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: start;
  }

  .scroll-container {
    height: 340px;
    padding: 20px;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .scroll-box {
    flex: 0 0 300px;
    height: 300px;
  }

  .four-box {
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .three-box {
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 60px;
  }
  .cta {
    padding: 40px;
    text-align: center;
  }
  .quotes-rotator {
    padding: 20px;
    margin-bottom: 40px;
  }

  .outer-div {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 20px 20px;
    display: block;
  }
  .inner-div-70 {
    width: 100%;
  }
  .inner-div-30 {
    width: 100%;
  }
}
.login-form .form-group + .form-group {
  margin-top: 24px;
}

h4.forgot-title {
  font-size: 60px !important;
  margin-bottom: 10px;
}
