:root {
  --e-global-color-primary: #00443B;
  --e-global-color-shadow: #185349;
  --e-global-color-secondary: #FF4800;
  --e-global-color-accent: #9BE042;
  --e-global-color-white: #FFFFFF;
  --e-global-color-41fa304: #FAFAFA;
  --e-global-color-f875600: #F0EACB;
  --e-global-color-1bb7294: #008000;
  --e-global-color-e0fc440: #0E101A;
  --e-global-color-d8fafc1: #F7F3E6;
}

.name-input-bx {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-btn {
  position: relative;
  width: 100%;
  outline: none;
  border: none;
  background: #FF4800;
  padding: .5rem;
  font-weight: 600;
  margin: 1rem 0;
  transition: .5s;
  color: #FAFAFA;
}

.form-btn:hover {
  background-image: linear-gradient(to right, #006eff, #01a3da);
}

.footer-list-wp-bx {
  display: flex;
  flex-direction: column;
}

.footer-list-wp-bx a {
  margin: .5rem 0;
  text-decoration: none;
  color: #00443B;
  border-bottom: 1px solid #008000;
  transition: .5s;
  font-weight: 600
}

.footer-list-wp-bx a i {
  color: #00443B;
  margin-right: .5rem;
}

.footer-list-wp-bx a:nth-last-child(1) {
  border-bottom: none;
}

.footer-list-wp-bx a:hover {
  padding-left: 14px;
}

#footer {
  background: #F0EACB !important;
  color: #0E101A !important;
}

.col-footer-wrapper-bx h2 {
  color: #0E101A;
}

.last-footer {
  background: #00443B;
  padding: 1rem;
}

.col-last-footer address {
  color: #F7F3E6;
}

.col-last-footer address button {
  border: none;
  outline: none;
  background: #FF4800;
  width: 100%;
  padding: .7rem;
  transition: .5s;
}

.col-last-footer address button a {
  color: #F0EACB;
  text-decoration: none;
}

.col-last-footer address button:hover {
  background: #0E101A;
}

@media screen and (max-width:768px) {
  .name-input-bx {
    display: block;
  }
}

.card__form {
  display: flex;
  background: #F0EACB;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.card__form input {
  outline: 0;
  margin-left: 10px;
  background: rgba(255, 255, 255, 0);
  box-shadow: transparent 0px 0px 0px 1px inset;
  padding: 0.6em;
  border: transparent;
  appearance: none;
  color: #F7F3E6;
  width: 80%;
}

.card__form input::placeholder {
  color: #0E101A;
  font-weight: 600;
}

.card__form button {
  position: relative;
  width: 20%;
  height: 100%;
  padding: 1rem;
  border: 0;
  background: #FF4800;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: .5s
}

.card__form button:hover {
  background: #01bda4;
}