* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

html {
  background-color: #000;
}

body {
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  background: #000;
  color: white;
}

main {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

article {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 50px 0px;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.container:nth-child(1) {
  justify-content: end;
}

.container:not(:nth-child(1)) {
  gap: 20px;
}

.image-bg {
  background: url("bg-desktop.webp") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.image-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #000 90%);
}

.container h1,
.container h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}

.container span {
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
}

.container p {
  font-size: 1.2rem;
  color: #e1e1e1;
  z-index: 2;
}

.icon-fire {
  font-size: 3rem !important;
}

/* Export Class  */

.gradient {
  background: linear-gradient(270deg, #ff0000, #ff7300, #ff3c7d, #ff0000);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowMove 10s ease infinite;
}

@keyframes rainbowMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.div-headline {
  display: flex;
  max-width: 768px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid orange;
  background: rgba(53, 53, 53, 0.45);
  backdrop-filter: blur(20px);
  text-align: center;
  animation-name: jumpDiv;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.div-headline p {
  font-size: 1.4rem;
  width: 70%;
}
.div-headline span {
  font-weight: 800;
  font-size: 1.5rem;
}
@keyframes jumpDiv {
  0% {
    transform: scale(1);
    box-shadow: 0 0 25px orange;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 3px #101010;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 25px orange;
  }
}

.bot-trigger--btn {
  text-decoration: none;
  padding: 20px 40px;
  text-align: center;
  background: linear-gradient(270deg, #ff7300, #ff0000, #ff7300);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  animation-name: jumpCta;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  border-radius: 10px;
  cursor: pointer;
}
.bot-trigger--btn:hover {
  filter: brightness(40%);
}
@keyframes jumpCta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 25px red;
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 3px #101010;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 25px red;
  }
}

.box-border-orange {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 50px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid orange;
  background: rgba(53, 53, 53, 0.45);
  backdrop-filter: blur(20px);
  text-align: center;
}

.box-border-orange .content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.box-border-orange .content p {
  width: 100%;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .bot-trigger--btn {
    padding: 15px 20px;
  }
  .container {
    gap: 8px;
  }
  .container:nth-child(1) {
    padding-bottom: 80px;
  }
  .container h1 {
    width: 90%;
    font-size: 2.2rem;
  }
  .container h2 {
    font-size: 1.8rem;
  }
  .container span {
    font-size: 1.1rem;
  }

  .container p {
    font-size: 1rem;
  }

  .div-headline {
    width: 94%;
    gap: 3px;
    padding: 10px;
  }
  .div-headline p {
    font-size: 1.2rem;
    width: 100%;
  }
  .div-headline span {
    font-weight: 800;
    font-size: 1.3rem;
  }

  .image-bg {
    background: url("bg-mobile.webp") no-repeat center center;
    background-size: cover;
  }

  .image-bg::after {
    background: linear-gradient(180deg, transparent 0%, #000 70%);
  }
  .box-border-orange {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
  }
}
