/* =========Hero Section========== */

.hero-section {
  background-color: var(--background-color);
  padding: 180px 0px 50px;

  h1 {
    font-size: 5.0rem;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 6.5rem;

    span {
      background: var(--primary-color);
      padding-left: 30px;
      padding-right: 30px;
      border-radius: 100px;
      color: #ffffff;
      text-shadow: 0px 9px 5px #715cbd
    }
  }

  .pointer-box {
    border-top: 3px dashed var(--border);
    margin-top: 50px;
    padding-top: 50px;
    display: flex;
    gap: 50px;
    justify-content: space-around;

    ul {
      padding: 0px 0px 0px 25px;
      list-style-image: url(../images/tick-icon.png);

      li {
        font-size: 1.2rem;
        padding: 12px 0px;
      }
    }
  }

  .offer-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 3.2rem;
    text-transform: capitalize;
    padding: 0px;
    margin: 0px;

    span {
      color: var(--secondary-color);
      font-size: 3.2rem;
    }
  }

  .offer-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0px;
  }
}

@media(max-width:1600px) {
  .hero-section {
    background-color: var(--background-color);
    padding: 160px 0px 50px;

    h1 {
      font-size: 4.3rem;
      line-height: 5.3rem;
    }
  }
}

@media(max-width:1366px) {
  .hero-section {
    background-color: var(--background-color);
    padding: 160px 0px 50px;

    h1 {
      font-size: 4.3rem;
      line-height: 5.3rem;
    }
  }
}

@media(max-width:980px) {
  .hero-section {
    padding: 90px 0px 30px;

    .pointer-box {
      display: block;
      margin-top: 30px;
      padding-top: 30px;

      ul {
        li {
          font-size: 1.0rem;
          padding: 5px 0px;
        }
      }
    }

    h1 {
      font-size: 2.1rem;
      line-height: 3.0rem;
      text-align: center;

      span {
        padding-left: 10px;
        padding-right: 10px;
        text-shadow: 0px 3px 6px #715cbd;
      }
    }

    .offer-text {
      font-size: 1.4rem;
      text-align: center;
    }

    .offer-heading {
      font-size: 1.8rem;
      line-height: 2.8rem;
      text-align: center;

      span {
        color: var(--secondary-color);
        font-size: 2.0rem;
      }
    }

    .link {
      margin: 0 auto;
      display: block;
    }
  }
}

/* =========Rotating Links Button========== */

.link {
  width: 8rem;
  height: 8rem;
  display: inline-block;
  font: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1175em;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
}

.link__svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #161616;
  stroke: #9681de;
  stroke-width: 0.05em;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link__cloud {
  transform-origin: 50% 50%;
  -webkit-animation: rotate normal infinite 60s linear;
  animation: rotate normal infinite 60s linear;
  fill: rgba(255, 255, 255, 0.15);
}

.link__face,
.link__arrow {
  transform-origin: 50% 50%;
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}

.link:hover .link__face,
.link:hover .link__arrow {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link__arrow {
  stroke-width: 0.075em;
}

.link__text {
  -webkit-animation: rotateReverse normal infinite 20s linear;
  animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}

.link:hover .link__text {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.link--alt {
  font-size: 1.15rem;
  letter-spacing: 0;
  word-spacing: 0;
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}


/* =========Fact Section========== */

.fact-section {
  padding: 50px 0px;
  background-color: var(--white);

  .fact-box {
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
    display: flex;

    .fact-content-box {
      width: 60%;
    }

    .fact-icon-box {
      width: 40%;
    }

    h4 {
      font-size: 3.8rem;
      font-weight: 700;
      color: #fff;
    }

    p {
      color: #fff;
    }
  }

  .fact-box-first {
    background-color: var(--primary-color);
  }

  .fact-box-second {
    background-color: var(--white);
    border: 1px solid var(--border);

    .fact-content-box {
      h4 {
        color: var(--primary-text);

        span {
          font-size: 2.0rem;
        }
      }

      p {
        color: var(--primary-text)
      }
    }
  }

  .fact-box-third {
    background-color: var(--white);
    border: 1px solid var(--border);

    .fact-content-box {
      h4 {
        color: var(--primary-text);
      }

      p {
        color: var(--primary-text)
      }
    }
  }

  .fact-box-fourth {
    background-color: var(--semi-secondary-color);
  }

  .fact-box-fifth {
    background-color: var(--secondary-color);
  }
}


.rotating-image {
  animation: spin 8s linear infinite;
  transform-origin: center center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media(max-width:980px) {
  .fact-section {
    padding: 30px 0px;

    .fact-box {
      margin: 10px 0px;

      h4 {
        font-size: 2.8rem;
      }

      p {
        font-size: 0.9rem;
        margin-bottom: 0px;
      }
    }
  }
}

/* =========Demo Video Section========== */

.demo-video-section {
  padding: 50px 0;

  .video-text {
    background: var(--primary-color);
    width: max-content;
    height: auto;
    border-radius: 50%;
    padding: 25px;
    /* display: flex; */
    /* padding-top: 80px; */
    align-items: center;
    position: absolute;
    text-align: center;
    left: 350px;

    h3 {
      color: var(--white);
      font-size: 2.2rem;
    }
  }

  .feature-img {
    margin-top: 50px;
  }
}

@media(max-width:1366px) {
  .demo-video-section {
    padding: 50px 0;

    .video-text {
      width: max-content;
      height: auto;
      /* padding-top: 60px; */
      left: 230px;

      h3 {
        font-size: 1.7rem;
      }
    }
  }
}

@media(max-width:980px) {
  .demo-video-section {
    padding: 20px 0;

    .video-text {
      width: max-content;
      height: auto;
      padding: 15px;
      left: 35px;
      top: 130px;

      h3 {
        font-size: 1.0rem;
      }
    }
  }
}



/* =========Brief Section========== */

.brief-section {
  padding: 0px 0px 50px;

  .brief-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;

    .brief-box {
      margin-top: 35px;
      margin-bottom: 35px;
      width: 100%;
      /* text-align: center; */
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 30px;
      transition: all 0.3s ease;
    }

    .brief-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      background: var(--primary-color);
      border-radius: 50%;
      padding: 15px;
    }


    .brief-icon-secondary {
      background: var(--semi-secondary-color);
    }

    .brief-content {
      h3 {
        font-weight: 700;
        font-size: 1.6rem;
        text-transform: capitalize;
      }
    }

    .brief-box:hover {
      background-color: var(--primary-color);
      border-radius: 3.0rem;

      .brief-content {
        color: var(--white);
      }
    }

    .brief-box-black:hover {
      background-color: var(--semi-secondary-color);
      border-radius: 3.0rem;

      .brief-content {
        color: var(--white);
      }
    }

  }
}


@media(max-width:980px) {
  .brief-section {
    padding: 0px 0px 30px;

    .brief-wrapper {
      display: block;

      .brief-box {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 20px;

        .brief-content {
          h3 {
            font-size: 1.2rem;
          }
        }
      }

      .brief-icon {
        width: 65px;
        height: 65px;
      }
    }
  }
}


/* =========Benifits Section========== */

.benefits-section {
  padding: 100px 0px;
  background-color: var(--background-color);
}

@media(max-width:980px) {
  .benefits-section {
    padding: 50px 0px;
  }
}

/* =========Benifits Section========== */

.cta-section {
  padding: 100px 0px 0px;

  h3 {
    margin-bottom: 45px;
  }

  .text-style {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 4.8rem;
    margin-top: 25px;
  }

  .cta-points-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 15px;

    .cta-point-box {
      display: inline-flex;
      align-items: center;
      margin: 15px 0px;

      p {
        width: calc(100% - 55px);
        font-size: 1.2rem;
      }
    }

    .number-icon {
      height: 45px;
      width: 45px;
      text-align: center;
      line-height: 45px;
      background: var(--semi-secondary-color);
      border-radius: 50%;
      margin-right: 15px;
      font-weight: 700;
      top: 50px;
      transition: all .35s ease-in-out;
      color: var(--white);
      margin-bottom: 20px;
    }
  }
}

@media(max-width:980px) {
  .cta-section {
    padding: 30px 0px 0px;

    .cta-points-wrapper {
      display: block;

      .cta-point-box {
        margin: 10px 0px;

        p {
          font-size: 1.0rem;
        }
      }

    }
  }
}

/* =========Scroll Text Section========== */

.scroll-text-section {
  padding: 0px 0px;

  .scroll-text-content {
    h4 {
      font-size: 7.0rem;
      font-weight: 600;
      padding-right: 25px;
      width: max-content;
      text-transform: uppercase;
      color: #ebebeb;
      position: relative;
      display: inline-block;
      padding-right: 56px;
      padding-left: 17px;
    }

    h4::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      background-color: #ebebeb;
      /* change color as needed */
      border-radius: 50%;
    }
  }
}

@media(max-width:980px) {
  .scroll-text-section {
    .scroll-text-content {
      h4 {
        font-size: 2.4rem;
        padding-right: 25px;
        padding-left: 0px;
      }

      h4::after {
        width: 15px;
        height: 15px;
      }
    }
  }
}




/* =========Testimonial Section========== */

.testimonial-box-wrapper {
  background-color: var(--semi-secondary-color);
  border-radius: 3.0rem;
  padding: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  height: 600px;
  margin-top: 50px;


  .client-photo {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    margin: 15px auto;
  }

  p {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
  }

  .carousel-indicators {
    margin-bottom: 0px;
    margin-top: 25px;
    position: relative;
  }

  .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 8px;
    background-color: var(--primary-color);
  }

  .client-name {
    font-weight: 700;
    font-size: 16px !important;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0px;
    margin-top: 30px;
  }

  .client-designation {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 14px;
  }
}

.testimonial-section {
  padding: 50px 0px 100px;

  .testimonials-quote-icon {
    height: 50px;
    margin: 25px auto 0px;
    background: var(--white);
    padding: 0 30px;
    display: inline-block;
  }

  .testimonial-box {
    padding: 0px 25px 25px 25px;
    margin-top: 15px;
    margin-bottom: 15px;

    p {
      font-size: 1.4rem;
      color: var(--white)
    }

    .client-photo {
      width: 80px;
      height: 80px;
      line-height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 1px solid var(--border);
      margin: 15px auto;
    }


  }


}

.testimonial-style-two-area {
  position: relative;
  z-index: 1;
}

/* .testimonial-style-two-area:after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 500px;
    width: 500px;
    border-top: 1px solid #000;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: .3;
    margin-top: 80px;
} */

.video-testimonial {
  background: url(../images/cenes-bg.png);
  border-radius: 20px;
  padding: 150px 50px;
  background-size: cover;
  margin-top: 50px;
  position: relative;

  p {
    font-size: 1.4rem;
    color: var(--white);
    margin-top: 15px;
  }

  .video-brand {
    display: flex;
    margin: 15px 0px 0px;
    align-items: center;
  }

  .brand-logo {
    margin-right: 15px;
  }

  .brand-content {
    p {
      font-size: 16px;
      font-weight: 600;
      line-height: 25px;
      width: auto;
      margin: 0px;

      span {
        font-weight: 400;
      }
    }
  }
}


.video-testimonial-box {
  background: var(--primary-color);
  background-repeat: no-repeat;
  border-radius: 3.0rem;
  justify-content: space-between;
  position: relative;
  padding: 50px 30px;
  overflow: hidden;
  background-position: top right;
  padding: 0px;
  margin-top: 50px;
  display: flex;


  .content-box {
    padding: 50px;
  }

  p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
  }

  .client-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .client-logo {
    margin-bottom: 10px;
  }

  .client-company {
    font-size: 16px;
    font-weight: 500;
  }
}

.video-testimonial-image {
  bottom: 0px;
  right: 0;
  padding: 0px;
  display: flex;
  align-items: center;

  img {
    position: relative;
    right: 0;
    bottom: 0;
    width: 400px;
  }
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 22px 22px 22px 25px;
  border: 0px;
  margin: 0 auto;
  /* position: absolute; */
  background: var(--semi-secondary-color);
  right: 15px;
  bottom: 15px;
}

.play-pulse {
  animation: animate-pulse 3s linear infinite;
  cursor: pointer;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(159, 139, 231, 0.7), 0 0 0 0 rgba(125, 101, 211, 0.7);
  }

  40% {
    box-shadow: 0 0 0 50px rgba(103, 192, 17, 0), 0 0 0 0 rgba(125, 101, 211, 0.7);
  }

  80% {
    box-shadow: 0 0 0 50px rgba(103, 192, 17, 0),
      0 0 0 30px rgba(72, 134, 11, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(103, 192, 17, 0), 0 0 0 30px rgba(72, 134, 11, 0);
  }
}

@media(max-width:1600px) {
  .play-btn {
    width: 60px;
    height: 60px;
    padding: 15px 15px 15px 18px;
  }

  .video-testimonial-box {
    p {
      /* font-size: 1.2rem; */
    }
  }

  .testimonial-section {
    .testimonial-box {
      p {
        font-size: 1.0rem;
      }
    }
  }

  .testimonial-box-wrapper {
    padding: 10px;
    height: 520px;
    margin-top: 50px;
  }
}

@media(max-width:980px) {
  .testimonial-section {
    padding: 30px 0px;

    .testimonial-box {
      padding: 0px 10px 25px 10px;

      p {
        font-size: 0.9rem;
      }
    }
  }

  .video-testimonial-box {
    border-radius: 2.0rem;
    margin-top: 20px;
    display: block;

    .content-box {
      padding: 25px;
    }

    p {
      font-size: 1.0rem;
    }
  }

  .testimonial-box-wrapper {
    border-radius: 2.0rem;
    padding: 15px;
    margin-top: 0;
    height: auto;
  }
}


.social-icon {
  width: 150px;
  margin-top: 5px;
  justify-self: center;
  display: contents;
  display: block;
  padding: 15px;
  border-radius: 25px;
  background: var(--white);

  img {
    width: 100%;
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.marquee-content {
  display: inline-flex;
  animation: scroll 35s linear infinite;
  gap: 10px;
  padding-bottom: 15px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-65%);
  }
}


/* =========Rating Section========== */

.rating-wrapper {
  background-color: var(--background-color);
  border-radius: 3.0rem;
  margin: 20px 0px;
  padding: 25px;
  border: 1px solid var(--border);

  .rating-star-box {
    padding-top: 10px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
  }
}


@media(max-width:980px) {
  .rating-wrapper {
    border-radius: 2.0rem;
    padding: 20px;
  }
}

/* =========AI Powered Section========== */

.ai-powered-section {
  padding: 750px 0px 0px;
  background: url(../images/ai-bg.webp);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;

  /* .sub-title {
    color: var(--white)
  }

  h3 {
    color: var(--white)
  } */

  .semi-text {
    font-size: 1.4rem;
    font-weight: 500;
  }

  .ai-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3.0rem;
    margin: 20px 0px;
    backdrop-filter: blur(2px);
    border: 1px solid var(--border);

    .ai-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      background: var(--primary-color);
      border-radius: 50%;
      padding: 15px;
    }

    .ai-icon-secondary {
      background: var(--semi-secondary-color);
    }

    h4 {
      margin-bottom: 20px;
      font-size: 1.8rem;
      font-weight: 600;
    }
  }

  .ai-hand {
    width: 50%;
    margin: 0 auto;
  }
}

@media(max-width:1600px) {
  .ai-powered-section {
    padding: 550px 0px 0px;
  }
}

@media(max-width:1366px) {
  .ai-powered-section {
    padding: 480px 0px 0px;
  }
}

@media(max-width:980px) {
  .ai-powered-section {
    padding: 250px 0px 0px;

    .ai-box {
      padding: 20px;
      margin: 10px 0;

      .ai-icon {
        width: 65px;
        height: 65px;
      }

      h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
      }
    }

    .semi-text {
      font-size: 1.2rem;
    }
  }
}

@media(max-width:768px) {
  .ai-powered-section {
    padding: 150px 0px 0px;
  }
}

/* =========CTA Section two Section========== */

.cta-section-two {
  padding-top: 100px;

  .cta-box-two {
    background-image: url(../images/cta-01.webp);
    background-color: var(--semi-secondary-color);
    border-radius: 3.0rem;
    padding: 100px 50px;
    background-size: 50%;
    background-position: right top;
    background-repeat: no-repeat;

    .ventaforce-highlight-text {
      color: var(--white);
      font-size: 4.0rem;
      margin: 0px;
    }
  }
}

@media(max-width:980px) {
  .cta-section-two {
    padding-top: 15px;

    .cta-box-two {
      padding: 30px 20px;
      border-radius: 2.0rem;

      .ventaforce-highlight-text {
        font-size: 2.0rem;
      }
    }
  }
}

/* =========MLM Plans Section========== */

.mlm-plans-section {
  padding: 100px 0px;

  .plan-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    /* margin-left: -100px; */
    margin-top: 20px;
    position: relative;
    z-index: 1;

    .plan-item {
      padding: 30px 25px;
      width: 100%;
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 2px 60px #0000001a;
      min-height: 200px;

      h4 {
        font-size: 1.2rem;
        line-height: 1.7rem;
        font-weight: 600;
      }

      .number-icon {
        height: 45px;
        width: 45px;
        text-align: center;
        line-height: 45px;
        background: var(--semi-secondary-color);
        border-radius: 50%;
        margin-right: 15px;
        font-weight: 700;
        top: 50px;
        transition: all .35s ease-in-out;
        color: var(--white);
        margin-bottom: 20px;
      }
    }


  }

  .plan-items {
    .plan-item-primary {
      background: var(--primary-color);

      h4 {
        color: var(--white);
      }

      .number-icon {
        color: var(--semi-secondary-color);
        background: var(--white);
      }
    }
  }

  .plan-items {
    .plan-item-secondary {
      background: var(--semi-secondary-color);

      h4 {
        color: var(--white);
      }

      .number-icon {
        color: var(--semi-secondary-color);
        background: var(--white);
      }
    }

  }
}

@media(max-width:980px) {
  .mlm-plans-section {
    padding: 30px 0px;

    .plan-items {
      display: block;
      margin-left: auto;

      .plan-item {
        padding: 15px 15px;
        width: calc(50% - 20px);
        min-height: 200px;
        margin: 10px;
        float: left;
      }
    }


  }
}

/* =========integrations Section========== */

.integrations-section {
  background: var(--background-color);
  padding: 100px 0px;
}

@media(max-width:980px) {
  .integrations-section {
    padding: 30px 0px;
  }
}

/* ======FAQ Section start======= */
.faq-section {
  padding: 100px 0px 50px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #1c283f;
}

.accordion-button:focus {
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-button {
  font-size: 1.2rem;
  padding: 25px;
}

.bg {
  background-image: linear-gradient(90deg,
      rgba(206, 211, 246, 0) 0,
      #bbb 38%,
      #bbb 64%,
      rgba(206, 211, 246, 0) 99%);
  border: none;
  opacity: 0.4;
  background-color: transparent;
  width: 100%;
  height: 1px;
}

@media(max-width:980px) {
  .faq-section {
    padding: 30px 0px 30px;
  }

  .accordion-button {
    font-size: 1.0rem;
    padding: 15px;
  }
}

/* ======Association Section End======= */

.association-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: 100%;
  position: relative;
}

.association-section .association-container {
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(17, 12, 46, 0.06) 0px 5px 15px 0px;
  margin-top: 25px;

  img {
    width: 100%;
  }
}

.association-section .bottom-image {
  width: 100%;

  img {
    width: 100%;
  }
}

.tick-group {
  display: flex;
  gap: 50px;
  justify-content: center;

  .tick-list-style {
    li {
      color: #fff;
      text-align: left;
    }
  }
}

@media(max-width:980px) {
  .association-section {
    padding: 30px 0px 50px;
  }

  .tick-group {
    display: block;
  }

  .association-section .association-container {
    padding: 10px;
  }
}

@media (max-width:786px) {
  .video-testimonial-box {
    .video-testimonial-image {
      img {
        position: unset !important;
      }
    }
  }

  .testimonial-section {
    .button-group {
      justify-content: center !important;
    }
  }

  .light-red {
    background: #fdf4f5 !important;
  }

  .light-orange {
    background: #fefbf4 !important;
  }

  .light-ocean {
    background: #eff9ff !important;
  }

  .light-paret-green {
    background: #fbfff3 !important;
  }

  .light-ocen-purple {
    background: #f5f5ff !important;
  }

  .main-clients {
    .button-group {
      justify-content: center !important;
    }
  }
}

.cta-section-four {
  text-align: center;
  background: url(../images/background-cta.png), #181D27;
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  p {
    color: var(--white);
    margin: 0;
  }
}