@media screen and (max-width: 600px) {
  .card {
    max-width: 200px !important;
  }
  .card-image img {
    width: 200px !important;
  }
}
body {
  height: 100%;
  width: 100vw;
  font-family: sans-serif;
  overflow-x: hidden;
  background-color: #d3d3d3;
  margin: 0; /* Remove default body margin */
  padding: 0; /* Remove default body padding */
}

main {
  padding: 20px;
  margin-left: 0 auto;
  margin-top: 4rem;
}

.nav-nav {
  background-color: rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  min-height: 100px;
  align-items: center;
  z-index: 999;
  position: fixed;
  width: 100%;
}
.nav-nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}
.nav-nav .nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.nav-nav .nav-toggle::before, .nav-nav .nav-toggle::after,
.nav-nav .nav-toggle .nav-toggle-icon {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transition: transform 0.3s;
}
.nav-nav .nav-toggle::before {
  top: -6px;
}
.nav-nav .nav-toggle::after {
  bottom: -6px;
}
.nav-nav .nav-toggle .nav-toggle-icon {
  top: 50%;
  transform: translateY(-50%);
}
.nav-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-nav li {
  display: inline-block;
  margin-right: 4rem;
  text-align: center;
}
.nav-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  color: white;
  padding: 10px;
  transition: border-bottom-color 2s;
  position: relative; /* Add position: relative */
}
.nav-nav li a:hover {
  border-bottom: 2px dotted tomato;
  margin-bottom: -2px; /* Add negative margin to offset the border */
}
.nav-nav a.nav-active {
  color: tomato;
}
.nav-nav .nav-credits {
  font-size: 14px;
  color: whitesmoke;
  margin-right: 2rem;
}
.nav-nav .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  transition: max-height 0.3s;
  overflow: hidden;
  max-height: 100%;
}
.nav-nav .nav-menu li {
  display: block;
}
.nav-nav .nav-nav.active .nav-menu {
  max-height: 500px;
}
@media (max-width: 500px) {
  .nav-nav body, .nav-nav html {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .nav-nav .nav-nav {
    background-color: rgba(0, 0, 0, 0.4) !important;
    position: sticky;
    top: 0;
    height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 999;
    position: fixed;
    width: 100%;
  }
  .nav-nav .nav-credits {
    text-align: right;
    margin-top: auto;
    margin-left: auto;
    display: inline-block;
    vertical-align: middle;
    border-bottom: 2px solid #d9534f;
  }
  .nav-nav .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-nav .nav-toggle {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  .nav-nav .nav-menu {
    display: none;
  }
  .nav-nav .nav-container.active .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 501px) {
  .nav-nav .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: none;
  }
  .nav-nav .nav-toggle {
    display: none;
  }
  .nav-nav li {
    margin-right: 20px;
  }
}

.title {
  text-align: center;
}

.jumbotron {
  display: flex;
  flex-wrap: wrap;
  margin-right: 4px;
  flex-direction: row;
}

.ceo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}

.table {
  display: flex;
  margin: 1rem;
  flex-direction: column;
  width: fit-content;
  width: 600px;
  border-radius: 8px;
  background-color: white;
  height: 200px;
}
.table .bg-primary {
  background-color: rgb(20, 115, 198);
}
.table .bg-danger {
  background-color: #d9534f;
}
.table .bg-dark {
  background-color: black;
}
.table .bg-success {
  background-color: #28a745;
}
.table .bg-default {
  background-color: #6c757d;
}
.table-title {
  color: rgb(255, 136, 0);
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  padding: 2px;
}
.table-desc {
  color: slategrey;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: 2rem;
}
.table-desc li {
  list-style: none;
}
.table-footer {
  height: 70px;
  border-top: 1px solid black;
  display: grid;
  background-color: black;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.team {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
  overflow: hidden;
  height: 200px;
}
.team-picture {
  width: 98%;
  height: 400px;
}

.form {
  width: 100%;
  margin-top: 20px;
  height: auto;
  background-color: #c2bfbf; /* Adjust the hex code as needed */
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .form .form-input {
    width: 90%; /* Ensure the form input takes full width on smaller screens */
  }
  .form .form-input label {
    width: 100%; /* Make labels take full width on smaller screens */
    display: block; /* Display labels as block to stack them */
    margin-bottom: 5px; /* Add some space between labels and inputs */
    border-top: 1px solid #ccc; /* Add border-top to visually separate labels and inputs */
    padding-top: 5px; /* Add some space above the label */
  }
  .form .form-row {
    display: block; /* Ensure form rows stack vertically on smaller screens */
    margin-right: 1rem;
  }
  .form .form-75,
  .form .form-labels {
    width: 100%; /* Make form labels and input areas take full width on smaller screens */
  }
  .form .form-file {
    width: 90%; /* Make file input labels take full width on smaller screens */
  }
}
.form-input {
  border-radius: 5px;
  padding: 20px;
}
.form-input label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  color: rgba(15, 15, 15, 0.9333333333);
  font-weight: bold;
}
.form-input textarea {
  height: 200px;
}
.form-input input[type=file] {
  display: none;
}
.form-input select {
  font-weight: bold;
  width: 94% !important;
}
.form-input input[type=text], .form-input input[type=email], .form-input input[type=number], .form-input textarea, .form-input select {
  width: 90%;
  color: rgba(128, 0, 128, 0.91);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}
.form-file {
  cursor: pointer;
  background-color: rgb(20, 115, 198);
  height: 30px;
  width: 90px;
}
.form-file:hover {
  background-color: rgb(2, 79, 147);
}
.form-btn-file {
  margin-top: 4px;
  color: white;
  font-weight: bolder;
  display: grid;
  justify-content: center;
}
.form-btn-create {
  width: 94%;
  height: 40px;
  background-color: #28a745;
  color: white;
  float: left;
  font-weight: bolder;
  cursor: pointer;
}
.form-btn-create:hover {
  background-color: rgba(40, 167, 70, 0.8666666667);
}
.form-row {
  margin-top: 5px;
}
.form-row:after {
  content: "";
  display: table;
  clear: both;
}
.form-labels {
  float: left;
  width: 25%;
  margin-top: 6px;
}
.form-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}
.form-name {
  color: white;
  margin-top: 10px;
  font-family: bold;
}
.form-btn {
  width: 94%;
  color: white;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-weight: bolder;
  resize: vertical;
  background-color: black;
  cursor: pointer;
}
.form-alert {
  background-color: rgba(128, 0, 128, 0.91);
  width: 100%;
  color: white;
  font-weight: bold;
  height: 50px;
  display: flex;
  justify-content: center;
}

.hid {
  color: orange;
  font-weight: bold;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: none;
  margin-left: 10px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0);
  display: flex;
  margin-top: 1rem;
  margin-right: 1rem;
  flex-direction: column;
  width: fit-content;
  background-color: white;
  width: fit-content;
  max-width: 310px;
  border-radius: 6px;
}
.card .bg-primary {
  background-color: rgb(20, 115, 198);
}
.card .bg-danger {
  background-color: #d9534f;
}
.card .bg-dark {
  background-color: black;
}
.card .bg-success {
  background-color: #28a745;
}
.card .bg-default {
  background-color: #6c757d;
}
.card:hover {
  background-color: white;
  transition: 400ms;
  transform-origin: center center;
  overflow: hidden;
}
.card:hover .card-table {
  height: 200px !important;
}
.card:hover .card-price {
  text-decoration: underline;
}
.card:hover .card-retired {
  text-decoration: line-through;
}
.card:hover .card-table {
  transform: none !important;
}
.card:hover .card-title, .card:hover .card-model {
  color: rgb(2, 79, 147) !important;
  transition: 400ms;
  border-color: rgb(2, 79, 147);
}
.card:hover img {
  transform: scale(1.1);
  opacity: 1;
  pointer-events: none; /* Add this line */
}
.card .img-sm {
  width: 200px;
  height: 200px;
  max-height: 200px !important;
  align-items: center;
}
.card .img-sm img {
  width: 200px;
  height: 200px;
}
.card-table {
  background-color: white;
  height: 200px;
  width: 500px !important;
}
.card-title {
  font-size: 1.2rem;
  margin-left: 4px;
  text-align: center;
  color: rgb(20, 115, 198);
  font-weight: bold;
}
.card-price {
  margin-left: 4px;
  color: #28a745;
  text-align: center;
  margin-top: 0px;
}
.card-retired {
  color: #d9534f;
  margin-left: 4px;
  margin-top: 0px;
  text-decoration: line-through;
  text-align: center;
}
.card-model {
  font-size: 1.2rem;
  text-align: center;
  color: rgb(20, 115, 198);
}
.card-image {
  max-height: 300px;
  height: 300px;
  background-color: white;
  display: flex;
  align-items: center;
}
.card-image img {
  width: 300px;
  opacity: 0.8;
}
.card-text {
  margin-left: 4px;
  margin-right: 4px;
  margin-top: 0;
  margin-bottom: 0px;
}
.card-button {
  background-color: #d9534f;
  color: white;
  margin-top: 20px;
  margin-bottom: 25px;
  margin-left: 4px;
  width: 40%;
  border-radius: 8px;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.card-tag {
  width: auto;
  transform: translate(0, -6px);
  height: 20px;
  display: flex;
  align-items: center;
}
.card-tag-text {
  border-radius: 5px;
  padding: 4px;
  color: white;
  text-align: center;
  margin-left: 1.2rem;
}
.card-bg-danger {
  background-color: rgb(20, 115, 198);
}
.card-featured {
  max-width: 1200px;
}
.card-featured .card-title {
  font-size: 1.5rem;
  color: white;
}

.panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  color: white;
  margin: 2rem auto; /* Center the section horizontally */
  transition: background-color 2s;
  background-color: white;
  border-radius: 6px;
  color: black;
}
.panel:hover {
  background-color: rgb(9, 9, 10);
  color: white;
}
.panel-title {
  font-size: 1.5rem;
}
.panel-about {
  margin-top: 0px;
}
.panel-h {
  margin-bottom: 0px;
}
.panel-featured {
  max-width: 1000px;
}

.profile {
  border: 1px solid rgb(20, 115, 198);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: fit-content;
  width: fit-content;
  background-color: #d9534f;
  border-radius: 6px;
  width: 400px;
  height: 200px;
  margin-left: 2rem;
}
.profile-text {
  flex-direction: column;
  text-align: right;
  color: white;
  text-align: left;
}
.profile-text a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
.profile-text a::after {
  content: "\a";
  white-space: pre;
}
.profile-text a:visited {
  color: white;
}

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