body {
    font-family: 'Rubik', sans-serif;
    margin: auto;
  }
  .main-container {
    overflow: hidden;
  }
  
  .main-container,
  .main-container * {
    box-sizing: border-box;
  }
  
  input,
  select,
  textarea,
  button {
    outline: 0;
  }

  .frame {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
/* ----------------------------------------- */
.map-img {
  opacity: 0.20;
  margin-top: -2.5rem;
  margin-bottom: -4rem;
  width: 35%;
  height: auto;
  object-fit: cover;
}

.banner-img {
  background-size: cover;
  background-image: url("/static/images/bg-banner.png");
}

.simplified-img {
  background-size: cover;
  background-image: url("/static/images/body.png");
}

.map-bg{
  background-size: cover;
  background-image: url("/static/images/map-bg.png");
}

.vulnerabilities-box {
  margin: 0;
}
.analysis-box {
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
  --bs-bg-opacity: 0.75;
}

.vulnerabilities-box:hover .analysis-box {
  cursor: pointer;
  position: relative;
  background: linear-gradient(90deg, #ee3b3b, #fca575);
  transition: background-image 0.3s ease;
  --bs-bg-opacity: 0;
}
.image-container {
  /* background: url('/static/images/dashboard-r.png') no-repeat center center; */
  background-size: contain;
  height: 60px; /* Adjust the height as needed */
  transition: background-image 0.3s ease;

}

.image-Security {
  background: url('/static/images/testing-r.png') no-repeat center center;
  background-size: contain;
  height: 60px; /* Adjust the height as needed */
  transition: background-image 0.3s ease;

}
.image-Execution {
  background: url('/static/images/credit-card-r.png') no-repeat center center;
  background-size: contain;
  height: 60px; /* Adjust the height as needed */
  transition: background-image 0.3s ease;

}

.vulnerabilities-box:hover .image-container {
  background-image: url('/static/images/dashboard-b.png');
}
.vulnerabilities-box:hover .image-Security {
  background-image: url('/static/images/testing-b.png');
}
.vulnerabilities-box:hover .image-Execution {
  background-image: url('/static/images/credit-card-b.png');
}

.vulnerabilities-box:hover .text-red600 {
  color: #3D3D3D;
}

.vulnerabilities-box:hover .text-gray600 {
  color: white;
}

.vulnerabilities-box:hover .text-gray600 {
  color: white;
}


.vulnerabilities-box:hover .bg-opa20-gray600 {
  background-color: #ffffff88;
}

.top {
  --offset: 50px;
  display: flex;
  margin-top:10px;
  place-self: end;
  width: auto;
  text-decoration: none;
  font-family: sans-serif;
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.btn-cancel,
.btn-next {
    width: 202px;
    height: 53px;
    padding: 16px 24px;
    border: 1px solid var(--Color-btn-primary, #C52B27);
    border-radius: 8px;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 0px;
}

.radius {
    border-radius: 8px;
}
.border-danger {
    border: 1px solid #C52B27;
}

.radius-grey {
    background: var(--Color50, #DEDEDE80);
}

.radius-line {
    border-width: 1px;
    border-color: #3D3D3D;
    border-style: solid;
}

.pointer {cursor: pointer;}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
}


.menu {
}

.menu a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 48px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #ffffff;
      position: absolute;
      top:35px;
      left: 0;
  }
  .getstart-btn {
    display:none
  }
  .menu a {
      padding: 10px;
      border-top: 1px solid #000000;
  }

  .hamburger {
      display: block;
  }
  .logo {
    width: 50%;
  }

}
.logo {
  width: 100%;
}
/* Container for each field */
.form-group {
    margin-bottom: 24px;
}

/* Style for the label */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

/* Style for input and select fields */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

nav a.active {
  font-size: 20px;
  color: var(--primary, #C52B27);
  font-weight: 500;
  text-decoration: none;
}