@charset "utf-8";

/* ==========================================
  Heading Components
========================================== */

/* Base Heading
------------------------------ */
.bz-heading {
  color: var(--color__white);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  position: relative;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  z-index: 2;
}

.bz-partner__heading-note{
  font-size: 0.8rem;
  margin-left: 0.2rem;
}

.bz-heading::before {
  content: "";
  position: absolute;
  top: -50px;
  top: -3.125rem;
  left: -70px;
  left: -4.375rem;
  width: 110px;
  width: 6.875rem;
  height: 110px;
  height: 6.875rem;
  background-image: url("../../../img/circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation: rotate 20s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

/* Heading Style 2
------------------------------ */
.bz-heading-2 {
  color: var(--color__white);
  font-family: var(--font-family__base);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  position: relative;
}

.bz-heading-2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  bottom: -0.625rem;
  left: 0;
  width: 47px;
  width: 2.9375rem;
  height: 2px;
  height: 0.125rem;
  background-color: var(--color__white);
  bottom: -30%;
  left: 50%;
  transform: translate(-50%, 0);
}

/* Media Queries
------------------------------ */
@media (min-width: 768px) {
  .bz-heading {
    font-size: 26.8px;
    font-size: 1.675rem;
  }

  .bz-heading::before {
    width: 208px;
    width: 13rem;
    height: 208px;
    height: 13rem;
    top: -96px;
    top: -6rem;
    left: -160px;
    left: -10rem;
  }

  .bz-heading-2 {
    font-size: 26.8px;
    font-size: 1.675rem;
    margin-bottom: 80px;
    margin-bottom: 5rem;
  }
}
