* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(
    315deg,
    rgba(91, 84, 61, 1) 3%,
    rgba(91, 84, 61, 1) 38%,
    rgba(153, 144, 105, 1) 68%,
    rgba(0, 0, 0, 1) 98%
  );
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  height: 100vh;
  width: auto;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.wave {
  background: rgb(200, 189, 137 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}
header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
.logo {
  width: auto;
  height: 140px;
  margin-top: 10px;
  margin-left: 10px;
}
.line {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: end;
  align-items: center;
  margin: 0px 20px 0px 0px;
  gap: 50px;
}
.line a {
  text-decoration: none;
  color: #fff;
}
.conta {
  width: auto;
  height: 70px;
}
.searchBox {
  display: flex;
  max-width: 230px;
  max-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: unset;
  border: 2px solid #ffffff;
  border-radius: 50px;
  position: relative;
}

.searchButton {
  color: white;
  position: absolute;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: unset;
  border: 0;
  display: inline-block;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/*hover effect*/
button:hover {
  color: #fff;
  background-color: #cccccc7e;
  box-shadow: rgba(0, 0, 0, 0.5) 0 10px 20px;
  transform: translateY(-3px);
}
/*button pressing effect*/
button:active {
  box-shadow: none;
  transform: translateY(0);
}

.searchInput {
  border: none;
  background: none;
  outline: none;
  color: white;
  font-size: 15px;
  padding: 24px 46px 24px 26px;
}
.line h2:hover {
  transform: scale(1.1);
}
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-banner{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  width: 1650px;
  height: 700px;
}
.cards{
  width: 100%;
}
.in-cards{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 150px;
}
.card-body{
  background-color: #191923 !important;
  border-radius: 0px 0px 20px 20px !important;
}
.card-body h5{
  color: white;
}
.card-body p{
  color: white;
}
.card{
  border: none !important;
  border-radius: 30px !important;
}
.card:hover{
  transform: scale(1.02);
}
.card-img-top{
  border-radius: 20px 20px 0px 0px !important;
}
.card-body a{
  background-color: unset;
  border: 1px solid #FBFEF9;
}
.card-body a:hover{
  background-color: white;
  border: 1px solid #191923;
  color: black;
}
footer{
  margin-top: 100px;
}