@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Manrope:400,700");
body {
  background-color: #151515;
  color: white;
  font-family: "Archivo", Manrope, sans-serif;
  font-size: 90%;
}

a {
  color: #37f0cb;
}

button {
  border: 0;
  background-color: #f0cc35;
  color: #151515;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Archivo", Manrope, sans-serif;
  font-weight: 500;
  font-size: 1.1em;
  transition: 0.3s all;
}

button.pending {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.ai {
  color: #f0cc35;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Archivo", Manrope, sans-serif;
  font-weight: normal;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

p {
  font-size: 1em;
  margin-bottom: 0.5em;
}

.results img {
  width: 100%;
}

label textarea {
  width: 100%;
  height: 200px;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2vw;
}
.images .img-holder.selected {
  border: 10px solid #f0cc35;
  transform: scale(0.9);
}
.images .img-holder {
  width: 38vw;
  transform: scale(1);
  height: 38vw;
  margin-bottom: 3vw;
  vertical-align: top;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F9F9F9;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gradient {
  position: fixed;
  bottom: -10px;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: 1s all;
}
.gradient img {
  width: 100%;
  height: 100%;
}

article {
  width: 100%;
  line-height: 1.6;
  columns: 3;
  font-size: 1.2em;
}
article p, article span {
  break-inside: avoid;
}
@media (max-width: 768px) {
  article {
    width: 100%;
    columns: 1;
  }
}

.plan {
  display: inline-block;
  padding: 38px;
  vertical-align: top;
  margin-bottom: 20px;
  background: #F9F9F9;
  color: #151515;
  border-radius: 19px;
  width: 100%;
  position: relative;
}

[src="/img/erps.png"] {
  width: 70%;
  margin-top: 20px;
  position: absolute;
  left: 15%;
  margin-top: 70px;
  margin-bottom: 40px;
}

.textarea-site {
  margin-top: 20px;
  font-size: 1.2em;
}

.flow {
  width: 80%;
  margin: 0 auto;
}
.flow label input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #F9F9F9;
  margin: 18px 0;
  font-size: 1.4em;
  color: white;
  padding: 10px 0;
  font-family: "Archivo", Manrope, sans-serif;
}
.flow label input::placeholder {
  color: #F9F9F9;
}

.searching {
  white-space: pre;
}

.msg {
  color: #f0cc35;
}

.step-7 .msg {
  margin-bottom: 20px;
  margin-top: 20px;
}

label span {
  margin-bottom: -20px;
  display: block;
}

nav {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 0 2%;
}
nav .logo {
  width: 60%;
  max-width: 300px;
}
nav img {
  vertical-align: middle;
}
nav .profile {
  flex: 1;
  text-align: right;
}
nav .profile img {
  width: 30px;
}
nav .menu {
  display: inline-block;
}
nav .menu img {
  width: 30px;
  height: 30px;
  margin: 10px;
  margin-right: 0;
}

.camera {
  width: 3em;
  vertical-align: middle;
  float: right;
  margin-right: 10px;
}
.camera img {
  width: 100%;
}

.loading-bars {
  text-align: center;
}
.loading-bars.stopped .bar {
  animation: none !important;
}
.loading-bars .bar {
  transform-origin: bottom;
  margin: 2px;
  height: 30px;
  background: #f0cc35;
  display: inline-block;
}
.loading-bars .bar.fixed {
  transform: scaleY(1) !important;
}
.loading-bars .bar:nth-child(1) {
  animation: bar 1s infinite;
  background: white;
}
.loading-bars .bar:nth-child(2) {
  animation: bar 1s infinite;
  animation-delay: 0.1s;
  background: #F9F9F9;
}
.loading-bars .bar:nth-child(3) {
  animation: bar 1s infinite;
  background: #F9F9F9;
  animation-delay: 0.2s;
}
.loading-bars .bar:nth-child(4) {
  animation: bar 1s infinite;
  background: #F9F9F9;
  animation-delay: 0.3s;
}
.loading-bars .bar:nth-child(5) {
  animation: bar 1s infinite;
  background: #F9F9F9;
  animation-delay: 0.4s;
}
.loading-bars .bar:nth-child(6) {
  animation: bar 1s infinite;
  animation-delay: 0.5s;
}
.loading-bars .bar:nth-child(7) {
  animation: bar 1s infinite;
  animation-delay: 0.6s;
}
.loading-bars .bar:nth-child(8) {
  animation: bar 1s infinite;
  animation-delay: 0.7s;
}
.loading-bars .bar:nth-child(9) {
  animation: bar 1s infinite;
  animation-delay: 0.8s;
}
.loading-bars .bar:nth-child(10) {
  animation: bar 1s infinite;
  animation-delay: 0.9s;
}
@keyframes bar {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}