*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: initial;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.container {
  width: min(100% - 3rem, 1400px);
  margin-inline: auto;
  padding-block: 2rem;
}

.site-header, .site-footer {
  position: absolute;
  width: 100%;
  z-index: 10;
  color: white;
}

.site-title {
  margin: 0;
  padding-block: 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.menu-container .nav {
  margin: 0;
  padding: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
@media (max-width: 1299px) {
  .menu-container {
    position: absolute;
    left: -250px;
    width: 250px;
    top: 70px;
    padding: 10px 0 0 15px;
  }
  .menu-container .nav {
    flex-direction: column;
    padding: 0;
    gap: 2px;
  }
}
.menu-container {
  transition: all 0.2s ease-in-out;
}
.menu-container.show-menu {
  transform: translateX(250px);
}

.nav a {
  padding: 5px 10px;
  border-radius: 0.375rem;
  font-size: 15px;
}

.nav a:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  margin-top: -10px;
}
.menu-toggle span {
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media (min-width: 1300px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #0000ff;
  color: #ffffff;
  border-radius: 0.25rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section {
  height: 100vh;
  min-height: 1000px;
  display: flex;
  align-items: center;
}

.section-title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: clamp(2.15rem, 3.55vw, 5.5rem);
  line-height: normal;
}
.section-title span {
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 1.4rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0000ff, #03ffda);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: normal;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.btn-2 {
  display: inline-block;
  padding: 1.4rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2a2a4d, #00c6a9);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: normal;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  margin-top: 50px;
}
@media (max-width: 680px) {
  .btn-2 {
    margin-top: 30px;
  }
}

.btn:hover, .btn-2:hover {
  text-decoration: none;
  opacity: 1;
}

.btn:focus-visible, .btn-2:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.card {
  padding: 1rem;
  border: 1px solid #e7e7e7;
  border-radius: 0.5rem;
  max-width: 40rem;
}

.field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

input, textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  font: inherit;
}

input:focus-visible, textarea:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.form-help {
  color: #555;
  margin-top: 0;
}

.site-footer {
  padding-block: 1rem;
  background: #042030;
}

.site-footer p {
  margin: 0;
  color: white;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.header-container img {
  max-width: 350px;
}
.header-container .nav a {
  color: white;
  transition: all 0.2s;
}
.header-container .nav a:hover {
  text-decoration: none;
  color: #00fffd;
}
@media (max-width: 1299px) {
  .header-container {
    justify-content: left;
    gap: 35px;
  }
  .header-container img {
    max-width: 250px;
  }
}

#intro {
  background: #042030;
  position: relative;
  overflow: hidden;
}
#intro.terms-of-service .section-1-wrapper h1 {
  font-size: 60px;
}
#intro.terms-of-service .section-1-wrapper h2 {
  font-size: 34px;
  margin-top: 10px;
  font-weight: 300;
}
@media (max-width: 580px) {
  #intro.terms-of-service .section-1-wrapper h1 {
    font-size: 32px;
  }
  #intro.terms-of-service .section-1-wrapper h2 {
    font-size: 22px;
  }
}
#intro.terms-of-service .terms-service-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
#intro.terms-of-service .terms-service-wrapper .terms-container {
  height: 500px;
  max-width: 85%;
  background: white;
  padding: 30px;
  border-radius: 5px;
  overflow: scroll;
}
#intro.terms-of-service .terms-service-wrapper .terms-container ol {
  padding-left: 20px;
  margin: 0;
}
#intro.terms-of-service .terms-service-wrapper .terms-container ol li {
  font-weight: 600;
  margin-bottom: 15px;
}
#intro.terms-of-service .terms-service-wrapper .terms-container ol li h3 {
  margin: 0;
  margin-bottom: 3px;
  font-size: 15px;
}
#intro.terms-of-service .terms-service-wrapper .terms-container ol li p {
  color: black;
  font-size: 14px;
  margin: 8px 0;
  line-height: normal;
}
#intro.terms-of-service .actions-wrapper {
  display: flex;
  gap: 15px;
}

.commerce-bg {
  position: absolute;
  top: 15%;
  opacity: 0.09;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  z-index: 1;
  pointer-events: none;
}

.intro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro-wrapper h1 {
  color: #ffffff;
}
.intro-wrapper h1 span {
  font-weight: 300;
}
.intro-wrapper h1 {
  font-size: clamp(2.25rem, 4.5vw, 6.8rem);
  line-height: normal;
  margin: 0;
}
.intro-wrapper h2 span {
  font-weight: 300;
}
.intro-wrapper h2 {
  font-size: clamp(1.4rem, 2.3vw, 3.4rem);
  line-height: normal;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
}
.intro-wrapper p {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 40px;
}
.intro-wrapper .btn {
  margin-top: 50px;
}
.intro-wrapper .plus-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: block;
}
.intro-wrapper .plus-icon:after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  background: white;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.intro-wrapper .plus-icon:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 50%;
  background: white;
  width: 3px;
  top: 0;
  transform: translateX(-50%);
}
.intro-wrapper .ns-react-container {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
@media (max-width: 680px) {
  .intro-wrapper .ns-react-container {
    flex-direction: column;
    gap: 10px;
    max-width: 170px;
  }
  .intro-wrapper .btn {
    margin-top: 30px;
  }
}

#what-is-awacommerce {
  background: #64ffff;
  position: relative;
}
#what-is-awacommerce .what-is-awacommerce-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 5;
}
#what-is-awacommerce .what-is-awacommerce-wrapper .left-container h2 {
  color: #052d3b;
}
#what-is-awacommerce .what-is-awacommerce-wrapper .left-container h2 span {
  font-weight: 400;
}
#what-is-awacommerce .what-is-awacommerce-wrapper .left-container h3 {
  font-size: 24px;
  font-weight: 300;
}
#what-is-awacommerce .what-is-awacommerce-wrapper .right-container {
  min-width: 36%;
}
#what-is-awacommerce .what-is-awacommerce-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#what-is-awacommerce .what-is-awacommerce-bg-wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0.6;
}
@media (max-width: 900px) {
  #what-is-awacommerce .what-is-awacommerce-wrapper {
    gap: 40px;
    z-index: 5;
  }
  #what-is-awacommerce .what-is-awacommerce-wrapper .left-container h3 {
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  #what-is-awacommerce .what-is-awacommerce-wrapper {
    flex-direction: column;
    gap: 30px;
    z-index: 5;
  }
  #what-is-awacommerce .what-is-awacommerce-wrapper .left-container h3 {
    font-size: 16px;
  }
  #what-is-awacommerce .what-is-awacommerce-wrapper .right-container {
    min-width: 36%;
    max-width: 300px;
  }
}

#benefits {
  position: relative;
  overflow: hidden;
}
#benefits .benefits-bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section-3-bg-1.png");
  background-repeat: no-repeat;
  background-position: right;
}
#benefits .benefits-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 5;
  justify-content: space-between;
}
#benefits .benefits-wrapper .left-container h2 {
  color: #052d3b;
}
#benefits .benefits-wrapper .left-container h2 span {
  font-weight: 400;
}
#benefits .benefits-wrapper .left-container ul {
  padding-left: 0;
  margin-top: 30px;
}
#benefits .benefits-wrapper .left-container ul li {
  padding-left: 50px;
  list-style: none;
  margin-bottom: 20px;
  background-image: url("../img/check-icon.png");
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: left 2px;
}
#benefits .benefits-wrapper .left-container ul li h4 {
  margin: 0;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  color: #065987;
  line-height: normal;
}
#benefits .benefits-wrapper .left-container ul li p {
  margin: 0;
  margin-top: 5px;
}
#benefits .benefits-wrapper .right-container {
  min-width: 36%;
}
@media (max-width: 1400px) {
  #benefits .benefits-wrapper {
    gap: 50px;
  }
  #benefits .benefits-wrapper .right-container {
    max-width: 50%;
  }
}
@media (max-width: 900px) {
  #benefits .benefits-wrapper {
    gap: 40px;
  }
  #benefits .benefits-wrapper .left-container ul li {
    padding-left: 40px;
    background-size: 28px;
  }
}
@media (max-width: 720px) {
  #benefits .benefits-bg-wrapper {
    opacity: 0.6;
  }
  #benefits .benefits-wrapper {
    gap: 30px;
    flex-direction: column;
  }
  #benefits .benefits-wrapper .right-container {
    max-width: 70%;
  }
}

#comparison {
  background-image: url("../img/table-bg.jpg");
  background-size: cover;
}
#comparison h2 {
  color: white;
  font-size: clamp(2.15rem, 3.15vw, 4.4rem);
  margin-bottom: 30px;
}
#comparison .table-container {
  margin-top: 25px;
}
@media (max-width: 832px) {
  #comparison .table-container {
    overflow-x: scroll;
  }
}
#comparison .table-container table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
#comparison .table-container table thead {
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#comparison .table-container table thead th {
  padding: 20px 20px;
  vertical-align: middle;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  width: 20%;
}
#comparison .table-container table thead th.thead-col-1 {
  width: 14%;
}
#comparison .table-container table thead th.thead-col-5 {
  background: rgba(0, 0, 0, 0.3);
}
#comparison .table-container table thead th:last-of-type {
  border-right: none;
}
#comparison .table-container table thead th img {
  float: left;
}
#comparison .table-container table tbody {
  background: rgba(0, 0, 0, 0.15);
}
#comparison .table-container table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#comparison .table-container table tbody tr td {
  padding: 6px 20px;
  vertical-align: middle;
  color: white;
  font-weight: 300;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
#comparison .table-container table tbody tr td.first-column {
  color: #b9ffa6;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  font-style: normal;
}
#comparison .table-container table tbody tr td.highlighted {
  background: rgba(0, 0, 0, 0.13);
}
#comparison .table-container table tbody tr td:last-of-type {
  border-right: none;
}
@media (max-width: 1100px) {
  #comparison {
    height: initial;
    min-height: initial;
  }
  #comparison .comparison-wrapper {
    padding-block: 45px;
  }
}

#feature-highlights {
  background: white url("../img/section-5-bg-1.jpg");
  background-repeat: no-repeat;
}
#feature-highlights .feature-highlights-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 5;
  justify-content: space-between;
}
#feature-highlights .feature-highlights-wrapper .right-container {
  min-width: 36%;
}
#feature-highlights .feature-highlights-wrapper h2 {
  color: white;
  font-size: clamp(2.15rem, 3.15vw, 4.4rem);
}
#feature-highlights .feature-highlights-wrapper h3 {
  color: white;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 30px;
}
#feature-highlights .feature-highlights-wrapper ul {
  list-style: none;
  padding-left: 0;
}
#feature-highlights .feature-highlights-wrapper ul li {
  list-style: none;
}
#feature-highlights .feature-highlights-wrapper ul li h4 {
  font-size: 20px;
  color: white;
  font-weight: 200;
  position: relative;
  padding-left: 30px;
  line-height: normal;
}
#feature-highlights .feature-highlights-wrapper ul li h4:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #79ffec;
  border-radius: 50px;
  left: 0;
  top: 2px;
}
#feature-highlights .feature-highlights-wrapper ul li h4:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #79ffec;
  border-radius: 50px;
  left: 4px;
  top: 6px;
}
@media (max-width: 900px) {
  #feature-highlights .feature-highlights-wrapper h3 {
    font-size: 22px;
  }
  #feature-highlights .feature-highlights-wrapper ul li h4 {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  #feature-highlights .feature-highlights-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  #feature-highlights .feature-highlights-wrapper .right-container {
    width: 50%;
  }
}
@media (min-width: 1921px) {
  #feature-highlights {
    background-size: 64%;
  }
}

#proof-investment {
  background: linear-gradient(120deg, rgb(0, 0, 0) 0%, rgb(94, 249, 246) 100%);
  position: relative;
}
#proof-investment img.proof-investment-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
}
#proof-investment .proof-investment-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 5;
  justify-content: space-between;
}
#proof-investment .proof-investment-wrapper .right-container {
  min-width: 36%;
}
#proof-investment .proof-investment-wrapper h2 {
  color: white;
  font-size: clamp(2.15rem, 3.15vw, 4.4rem);
}
#proof-investment .proof-investment-wrapper h3 {
  color: white;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 30px;
}
#proof-investment .proof-investment-wrapper ul {
  list-style: none;
  padding-left: 0;
}
#proof-investment .proof-investment-wrapper ul li {
  list-style: none;
}
#proof-investment .proof-investment-wrapper ul li h4 {
  font-size: 20px;
  color: white;
  font-weight: 200;
  position: relative;
  padding-left: 30px;
  line-height: normal;
}
#proof-investment .proof-investment-wrapper ul li h4:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #79ffec;
  border-radius: 50px;
  left: 0;
  top: 2px;
}
#proof-investment .proof-investment-wrapper ul li h4:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #79ffec;
  border-radius: 50px;
  left: 4px;
  top: 6px;
}
#proof-investment .proof-investment-wrapper .leyend {
  color: #00ffdf;
}
@media (max-width: 900px) {
  #proof-investment .proof-investment-wrapper h3 {
    font-size: 22px;
  }
  #proof-investment .proof-investment-wrapper ul li h4 {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  #proof-investment .proof-investment-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  #proof-investment .proof-investment-wrapper .right-container {
    width: 50%;
  }
}

#partner-program {
  background: linear-gradient(120deg, #29abe2, #2e3192 100%);
  position: relative;
  overflow: hidden;
}
#partner-program img.partner-program-bg-1 {
  position: absolute;
  top: -90px;
  left: 60%;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-2 {
  position: absolute;
  bottom: -90px;
  left: 10%;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-3 {
  position: absolute;
  top: 90px;
  right: -10%;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-4 {
  position: absolute;
  top: 30%;
  left: 10%;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-5 {
  position: absolute;
  top: 30%;
  right: 10%;
  opacity: 0.4;
  z-index: 2;
  transform: rotate(90deg);
  pointer-events: none;
}
#partner-program img.partner-program-bg-6 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  opacity: 0.3;
  z-index: 2;
  transform: rotate(180deg);
  pointer-events: none;
}
#partner-program img.partner-program-bg-7 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-8 {
  position: absolute;
  bottom: -20%;
  right: -5%;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
#partner-program img.partner-program-bg-9 {
  position: absolute;
  top: -40%;
  left: -5%;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}
#partner-program .partner-program-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15pxpx;
  position: relative;
  z-index: 5;
  justify-content: space-between;
  padding: 0 15px;
}
#partner-program .partner-program-wrapper h2 {
  color: white;
  font-size: clamp(2.15rem, 3.15vw, 4.4rem);
  margin: 0;
}
#partner-program .partner-program-wrapper h3 {
  color: white;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
}
#partner-program .partner-program-wrapper p {
  max-width: 600px;
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

#contact-us {
  background: linear-gradient(120deg, #1737ba, #87f2ac 100%);
  position: relative;
  overflow: hidden;
}
#contact-us .decoration-top:after {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  background: white;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  opacity: 0.08;
}
#contact-us .decoration-top:before {
  content: "";
  position: absolute;
  top: -8%;
  left: -8%;
  background: white;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  opacity: 0.08;
}
#contact-us .decoration-bottom:after {
  content: "";
  position: absolute;
  bottom: -5%;
  right: -5%;
  background: white;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  opacity: 0.08;
}
#contact-us .decoration-bottom:before {
  content: "";
  position: absolute;
  bottom: -8%;
  right: -8%;
  background: white;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  opacity: 0.08;
}
#contact-us .contact-us-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15pxpx;
  position: relative;
  z-index: 5;
  justify-content: space-between;
  padding: 0 15px;
}
#contact-us .contact-us-wrapper h2 {
  color: white;
  font-size: clamp(2.15rem, 3.15vw, 4.4rem);
  margin: 0;
  text-align: center;
}
#contact-us .contact-us-wrapper h3 {
  color: white;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
  margin-top: 10px;
}
#contact-us .contact-us-wrapper h3.contact-title {
  margin-top: 20px;
  font-weight: 600;
  font-size: 28px;
}
#contact-us .contact-us-wrapper p {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

#contact-form {
  width: 100%;
  max-width: 400px;
}
#contact-form .form-row {
  margin-bottom: 15px;
  position: relative;
}
#contact-form .form-row label {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
#contact-form .form-row input, #contact-form .form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1411764706);
  border: 0;
  color: #fff;
  font-weight: 300;
}
#contact-form .form-row input::placeholder, #contact-form .form-row textarea::placeholder {
  color: white;
  font-weight: 300;
}
#contact-form .form-row input:focus, #contact-form .form-row textarea:focus {
  outline: 1px solid rgba(255, 255, 255, 0.568627451);
}
#contact-form .form-actions {
  text-align: center;
}
#contact-form .form-actions #submit-btn {
  min-width: 160px;
  border: none;
  cursor: pointer;
}

.site-footer .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .footer-wrapper ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
}
.site-footer .footer-wrapper ul li a {
  color: white;
  font-size: 15px;
}
.site-footer .footer-wrapper ul li a:hover {
  text-decoration: none;
  color: #00fffd;
}
.site-footer .footer-wrapper .footer-logo a {
  display: block;
  width: 250px;
}
.site-footer .footer-wrapper .footer-logo a img {
  width: 100%;
}
@media (max-width: 1340px) {
  .site-footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .site-footer .container .footer-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 1040px) {
  .site-footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .site-footer .container .footer-wrapper {
    flex-direction: column;
  }
  .site-footer .container .footer-wrapper ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.input-error {
  outline: 2px solid red;
  background: rgba(255, 255, 255, 0.6) !important;
}
.input-error::placeholder {
  color: #d93025 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  opacity: 1;
}

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