@charset "UTF-8";
html, body {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  margin-top: 0px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  padding: 0;
}

.hero-mask-wrapper {
  background-color: #000000;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.yellow {
  background-color: #f4da40;
}

.gray {
  background-color: #efefef;
}

.green {
  background-color: #00ce7c;
}

.hero-mask-wrapper.active .hero-mask {
  opacity: 1;
  mask-position-y: 3rem;
  -webkit-mask-position-y: 3rem;
}
.hero-mask-wrapper.active .hero-mask-2 {
  opacity: 1;
  mask-position-y: -6rem;
  -webkit-mask-position-y: -6rem;
}

.hero-mask {
  width: 100%;
  height: 100%;
  background-image: url(hero-bg.jpg);
  background-size: cover;
  background-position: bottom center;
  transition: all 0.5s ease;
  opacity: 0;
  /* Máscara */
  mask-image: url("shape-v.svg");
  mask-size: 18%;
  mask-repeat: no-repeat;
  mask-position-x: 95%;
  mask-position-y: -2rem;
  -webkit-mask-image: url("shape-v.svg");
  -webkit-mask-size: 18%;
  -webkit-mask-position-x: 95%;
  -webkit-mask-position-y: -2rem;
  -webkit-mask-repeat: no-repeat;
  z-index: 0;
  position: absolute;
}

.hero-mask-2 {
  width: 100%;
  height: 100%;
  background-image: url(hero-bg.jpg);
  background-size: cover;
  background-position: bottom center;
  opacity: 0;
  transition: all 0.5s ease;
  /* Máscara */
  mask-image: url("shape-v.svg");
  mask-size: 18%;
  mask-repeat: no-repeat;
  mask-position-x: 70%;
  mask-position-y: -4rem;
  -webkit-mask-image: url("shape-v.svg");
  -webkit-mask-size: 18%;
  -webkit-mask-position-x: 70%;
  -webkit-mask-position-y: -4rem;
  -webkit-mask-repeat: no-repeat;
  z-index: 0;
  position: absolute;
}

b, strong {
  font-weight: 600;
}

.hero {
  position: relative;
  top: 2rem;
  transition: all 0.5s ease;
  opacity: 0;
  overflow: visible;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero.active {
  opacity: 1;
  top: 0;
}
.hero.active .toptop {
  opacity: 1;
}
.hero.active .logo {
  opacity: 1;
}
.hero .logo {
  width: 35%;
  opacity: 0;
  transition: all 0.5s ease 0.8s;
}
.hero .logo svg, .hero .logo img {
  width: 100%;
}
.hero .toptop {
  position: relative;
  opacity: 0;
  transition: all 0.5s ease 0.5s;
  padding-top: 4rem;
  height: 62vh;
  width: 100%;
}
.hero i {
  font-size: 1.44rem;
  border-radius: 10rem;
  background-color: rgba(255, 255, 255, 0);
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  color: #000000;
}
.hero i:hover {
  background-color: #000000;
  color: #ffffff;
}
.hero .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.hero .container.bottom {
  margin-top: 6rem;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  opacity: 0;
  transition: all 1s ease;
}
.hero .container.bottom.active {
  opacity: 1;
}
.hero .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 6rem;
}
.hero .title-wrapper .title {
  font-size: clamp(6rem, 10vw, 10rem);
  line-height: 1;
  font-weight: 700;
}
.hero .title-wrapper .sub-title {
  font-size: 2.986rem;
  font-weight: 400;
  line-height: 1.1;
}
.hero .intro {
  font-size: 1.44rem;
  width: 60%;
}
.hero .ctas {
  width: 30%;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero .ctas .btn {
  width: 100%;
}

.btn {
  background-color: #0394cc;
  border-radius: 10rem;
  font-size: 1.44rem;
  line-height: 1;
  color: #ffffff;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  width: fit-content;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.btn i {
  font-size: 2rem;
  transition: all 0.5s ease;
  color: white;
}
.btn:hover {
  background-color: #ffffff;
  color: #000000;
}
.btn:hover i {
  rotate: -45deg;
  color: #000000;
}
.btn.green {
  background-color: #00ce7c;
}
.btn.circle {
  border-radius: 100%;
  height: 6rem;
  width: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00ce7c;
}
.btn.circle:hover {
  background-color: #ffffff;
  color: #000000;
}

.the-moment, .what, .coalition {
  background-color: transparent;
  color: #ffffff;
  padding: 4rem 0rem;
  transition: all 1s ease;
}
.the-moment.coalition, .what.coalition, .coalition.coalition {
  background-color: #ffffff;
  color: #000000;
  transition: background-color 1s ease;
}
.the-moment.coalition.active .title, .the-moment.coalition.active .text, .the-moment.coalition.active .lista, .what.coalition.active .title, .what.coalition.active .text, .what.coalition.active .lista, .coalition.coalition.active .title, .coalition.coalition.active .text, .coalition.coalition.active .lista {
  top: 0;
  opacity: 1;
}
.the-moment.the-moment.active, .what.the-moment.active, .coalition.the-moment.active {
  color: #000000;
}
.the-moment.the-moment.active .highlighted .underline, .what.the-moment.active .highlighted .underline, .coalition.the-moment.active .highlighted .underline {
  background: linear-gradient(to bottom, transparent 55%, #f4da40 55%);
}
.the-moment .highlighted, .what .highlighted, .coalition .highlighted {
  font-weight: 500;
}
.the-moment .highlighted .underline, .what .highlighted .underline, .coalition .highlighted .underline {
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(to bottom, transparent 55%, transparent 55%);
  padding: 0rem 0.25em;
  transition: all 0.5s ease;
}
.the-moment .ctas, .what .ctas, .coalition .ctas {
  margin-top: 2rem;
}
.the-moment .container, .what .container, .coalition .container {
  gap: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.the-moment .title, .what .title, .coalition .title {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  font-weight: 700;
  position: sticky;
  top: 4rem;
  height: fit-content;
  width: 50%;
}
.the-moment .text, .what .text, .coalition .text {
  width: 50%;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 4rem 0rem;
}
.the-moment.coalition, .what.coalition, .coalition.coalition {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.the-moment.coalition .title-hidden .dash, .what.coalition .title-hidden .dash, .coalition.coalition .title-hidden .dash {
  background-color: #000000;
}
.the-moment.coalition .title-hidden, .what.coalition .title-hidden, .coalition.coalition .title-hidden {
  top: 1.5rem;
  position: fixed;
}
.the-moment.coalition .title, .what.coalition .title, .coalition.coalition .title {
  transition: all 0.5s ease;
  width: 60%;
  position: relative;
  top: 2rem;
  transform-origin: left top;
  opacity: 0;
}
.the-moment.coalition .text, .what.coalition .text, .coalition.coalition .text {
  transition: all 0.5s ease;
  width: 40%;
  position: relative;
  top: 2rem;
  opacity: 0;
}
.the-moment.coalition .cont-title, .what.coalition .cont-title, .coalition.coalition .cont-title {
  padding: 4rem 0rem 4rem 0rem;
}
.the-moment.coalition .scroll-buttons, .what.coalition .scroll-buttons, .coalition.coalition .scroll-buttons {
  position: absolute;
  top: 47%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.the-moment.coalition .scroll-buttons button, .what.coalition .scroll-buttons button, .coalition.coalition .scroll-buttons button {
  pointer-events: all;
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 48%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.the-moment.coalition .scroll-buttons button:hover, .what.coalition .scroll-buttons button:hover, .coalition.coalition .scroll-buttons button:hover {
  color: #0394cc;
}
.the-moment.coalition .lista, .what.coalition .lista, .coalition.coalition .lista {
  position: relative;
  padding-bottom: 1rem;
  opacity: 0;
  transition: all 0.5s ease 0.5s;
}
.the-moment.coalition .lista .group-wrapper, .what.coalition .lista .group-wrapper, .coalition.coalition .lista .group-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  gap: 1rem;
  transition: all 0.5s ease;
  padding-right: 6rem;
  margin-bottom: 2rem;
  overflow-x: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.the-moment.coalition .lista .group-wrapper::-webkit-scrollbar, .what.coalition .lista .group-wrapper::-webkit-scrollbar, .coalition.coalition .lista .group-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.the-moment.coalition .lista .group-wrapper .group, .what.coalition .lista .group-wrapper .group, .coalition.coalition .lista .group-wrapper .group {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  font-size: 0.833rem;
  font-weight: 300;
}
.the-moment.coalition .lista .group-wrapper .group .group-title, .what.coalition .lista .group-wrapper .group .group-title, .coalition.coalition .lista .group-wrapper .group .group-title {
  font-weight: 500;
  font-size: 1.728rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: right;
  margin-right: 1rem;
}
.the-moment.coalition .lista .group-wrapper .group .sub-group, .what.coalition .lista .group-wrapper .group .sub-group, .coalition.coalition .lista .group-wrapper .group .sub-group {
  margin-top: 0rem;
  width: 16vw;
}
.the-moment.coalition .lista .group-wrapper .group .sub-group .wrapper div, .what.coalition .lista .group-wrapper .group .sub-group .wrapper div, .coalition.coalition .lista .group-wrapper .group .sub-group .wrapper div {
  margin: 1rem 0rem;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  font-size: 0.833rem;
  line-height: 1.2;
  display: flex;
  flex-flow: column;
}
.the-moment.coalition .lista .group-wrapper .group .sub-group .wrapper div.m-group, .what.coalition .lista .group-wrapper .group .sub-group .wrapper div.m-group, .coalition.coalition .lista .group-wrapper .group .sub-group .wrapper div.m-group {
  font-weight: 400;
  font-size: 1rem;
}
.the-moment.coalition .lista .group-wrapper .group .sub-group .wrapper div:not(.m-group)::before, .what.coalition .lista .group-wrapper .group .sub-group .wrapper div:not(.m-group)::before, .coalition.coalition .lista .group-wrapper .group .sub-group .wrapper div:not(.m-group)::before {
  content: "";
  width: 1rem;
  height: 2px;
  background-color: #000000;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.the-moment.coalition .lista .group-wrapper .group .sub-group-title, .what.coalition .lista .group-wrapper .group .sub-group-title, .coalition.coalition .lista .group-wrapper .group .sub-group-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
}
.the-moment.what, .what.what, .coalition.what {
  color: #000000;
  background-color: #000000;
}
.the-moment.what .title, .what.what .title, .coalition.what .title {
  width: 60%;
  position: relative;
  top: 3rem;
  transition: all 1s ease 0s;
}
.the-moment.what .text, .what.what .text, .coalition.what .text {
  width: 60%;
  opacity: 0;
  transition: all 1s ease 0.5s;
}
.the-moment.what.active, .what.what.active, .coalition.what.active {
  background-color: #f4da40;
}
.the-moment.what.active .title, .what.what.active .title, .coalition.what.active .title {
  top: 0;
}
.the-moment.what.active .text, .what.what.active .text, .coalition.what.active .text {
  opacity: 1;
}

.coalition .underline {
  background: linear-gradient(to bottom, transparent 55%, #f4da40 55%);
  font-weight: 500;
}

.vibrate-once {
  animation: vibrate-once 0.8s ease;
}

@keyframes vibrate-once {
  0% {
    rotate: 3deg;
  }
  10% {
    rotate: -3deg;
  }
  20% {
    rotate: 3deg;
  }
  30% {
    rotate: -3deg;
  }
  40% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }
  60% {
    rotate: 3deg;
  }
  70% {
    rotate: -3deg;
  }
  80% {
    rotate: 3deg;
  }
  90% {
    rotate: -3deg;
  }
  100% {
    rotate: 3deg;
  }
}
.cards {
  background-color: transparent;
  color: #000000;
  padding-top: 1rem;
  position: relative;
  top: -0.5rem;
  padding-bottom: 6rem;
}
.cards .container {
  gap: 0rem;
  position: relative;
  align-items: center;
}
.cards.active .card:nth-of-type(1) {
  rotate: 3deg;
}
.cards.active .card:nth-of-type(2) {
  rotate: -3deg;
}
.cards.active .card:nth-of-type(3) {
  rotate: 3deg;
}
.cards.active .card:nth-of-type(4) {
  rotate: -3deg;
}
.cards .card {
  border: none;
  width: 25%;
  border-radius: 2rem;
  transition: rotate ease 0.5s 0.5s;
}
.cards .card:nth-of-type(1) {
  rotate: -3deg;
}
.cards .card:nth-of-type(2) {
  rotate: 3deg;
}
.cards .card:nth-of-type(3) {
  rotate: -3deg;
}
.cards .card:nth-of-type(4) {
  rotate: 3deg;
}
.cards .card .top {
  flex-wrap: wrap;
  padding: 2rem 1rem;
  min-height: 16rem;
}
.cards .card .title {
  font-size: 2.488rem;
  font-weight: 800;
  line-height: 1;
}
.cards .card .text {
  font-size: 1.44rem;
  font-weight: 500;
  line-height: 1;
  margin: 0.5rem 0rem;
}
.cards .card .small-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.cards .card .bottom {
  overflow: hidden;
  position: relative;
  top: -0.25rem;
  padding: 1.5rem 1rem;
  font-size: 0.694rem;
  line-height: 1.2;
  color: #000000;
  font-weight: 400;
}
.cards .card .bottom .line {
  margin: 0rem 1rem;
  border-top: 3px dotted;
  position: absolute;
  border-radius: 0rem;
  top: 0rem;
  left: 0rem;
  width: calc(100% - 2rem);
}
.cards .card .bottom b {
  margin-right: 0.25rem;
}

.title-hidden {
  font-size: 1rem;
  font-weight: 300;
  position: sticky;
  top: 1.5rem;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05rem;
  transform-origin: left top;
}
.title-hidden .dash {
  width: 0px;
  height: 1px;
  background-color: #ffffff;
  transition: all ease 0.5s;
  opacity: 0;
}
.title-hidden.active .dash {
  width: 1rem;
  opacity: 1;
}

#share-popup {
  opacity: 1;
}
#share-popup.hidden {
  opacity: 0;
}

.six-priorities {
  color: #ffffff;
  padding: 6rem 0rem;
}
.six-priorities .ctas {
  margin: 2rem 0rem 1rem 0rem;
  display: flex;
  align-items: center;
}
.six-priorities .intro-wrapper {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.six-priorities .intro {
  flex-wrap: wrap;
  justify-content: space-between;
}
.six-priorities .intro .title {
  font-size: clamp(6rem, 8vw, 8rem);
  line-height: 1;
  font-weight: 700;
  position: sticky;
  top: 4rem;
  height: fit-content;
  width: 50vw;
  transform-origin: left center;
  scale: 1;
}
.six-priorities .intro .right {
  width: 40vw;
}
.six-priorities .intro .right .text {
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 4rem 0rem;
}
.six-priorities .solutions {
  width: 100%;
}
.six-priorities .solutions .title {
  font-size: 2.074rem;
  position: sticky;
  top: 4rem;
  font-weight: 500;
}
.six-priorities .solutions .solution {
  opacity: 0;
  margin-top: 2rem;
  position: relative;
  top: 0rem;
  padding-bottom: 16rem;
}
.six-priorities .solutions .right {
  width: 50vw;
  padding-top: 0rem;
}
.six-priorities .solutions .right .text {
  padding: 0;
  padding-bottom: 0rem;
  padding-top: 0rem;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.2;
}
.six-priorities .solutions .d-flex {
  justify-content: space-between;
  gap: 4rem;
}
.six-priorities .solutions .cases {
  /*display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 1rem;
  margin-bottom: 0rem;
}
.six-priorities .solutions .cases a {
  text-decoration: none;
}
.six-priorities .solutions .cases .card-wrapper {
  cursor: pointer;
}
.six-priorities .solutions .cases .card-wrapper:hover .card-bottom {
  rotate: 3deg;
  transform-origin: 10% 0rem;
}
.six-priorities .solutions .cases .card-wrapper:hover .card-bottom .icon {
  rotate: -45deg;
}
.six-priorities .solutions .cases .card {
  border-radius: 2rem;
  padding: 1.5rem 1rem;
}
.six-priorities .solutions .cases .card .name {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 600;
}
.six-priorities .solutions .cases .card .sub-title {
  font-size: 0.8rem;
  line-height: 1;
}
.six-priorities .solutions .cases .card .cities {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin: 0.5rem 0rem 2rem 0rem;
}
.six-priorities .solutions .cases .card .cities div {
  border-radius: 1rem;
  padding: 0rem 0.5rem;
  font-size: 0.8rem;
  color: #000000;
  border: 3px dotted;
}
.six-priorities .solutions .cases .card-bottom {
  overflow: visible;
  position: relative;
  top: -0.25rem;
  transition: all 0.25s ease;
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  line-height: 1;
  color: #000000;
  font-weight: 500;
}
.six-priorities .solutions .cases .card-bottom .line {
  border-top: 5px dotted #000000;
  position: absolute;
  top: -0.08rem;
  left: 0;
  width: 100%;
}
.six-priorities .solutions .cases .card-bottom .d-flex {
  align-items: center;
}
.six-priorities .solutions .cases .card-bottom b {
  margin-right: 0.25rem;
}
.six-priorities .solutions .cases .card-bottom .icon {
  font-size: 2rem;
  transition: all 0.5s ease;
}

.newsletter {
  background-color: #ffffff;
  color: #000000;
  transition: all 0.5s ease;
  padding: 6rem 0rem 4rem 0rem;
}
.newsletter .ctas {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.newsletter.active {
  color: #ffffff;
  background-color: #000000;
}
.newsletter.active .left, .newsletter.active .bg-wrapper {
  top: 0rem;
}
.newsletter .left {
  position: relative;
  transition: all 0.5s ease;
}
.newsletter .container {
  gap: 4rem;
  transition: all 0.5s ease;
}
.newsletter .text {
  font-size: 1.2rem;
  line-height: 1.2;
}
.newsletter .title {
  font-size: 2.074rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1rem;
}
.newsletter .bg-wrapper {
  height: 80vh;
  width: 50%;
  transition: all 1s ease;
  background-color: #f4da40;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  border-bottom-left-radius: 4rem;
  overflow: hidden;
  position: relative;
}
.newsletter .bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.newsletter .left {
  width: 50%;
}

.what {
  background-color: #f4da40;
}

@media (max-width: 1000px) {
  .hero .logo {
    width: 75%;
  }
  .hero .wrapper {
    padding-bottom: 0rem;
  }
  .the-moment, .what, .coalition {
    padding: 2rem 2rem;
  }
  .hero .toptop {
    height: 70vh;
    padding-top: 0;
  }
  .newsletter .container {
    flex-wrap: wrap;
  }
  .hero .title-wrapper .title {
    font-size: clamp(2.5rem, 10vw, 10rem);
  }
  .hero {
    padding-top: 2rem;
  }
  .six-priorities .intro .title {
    font-size: clamp(2rem, 8vw, 8rem);
    top: 0;
  }
  .six-priorities .btn:not(.circle) {
    width: 100%;
  }
  .six-priorities .intro-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .hero .title-wrapper .sub-title {
    font-size: 1.728rem;
  }
  .hero .container.bottom {
    flex-direction: column;
  }
  .cards .card {
    width: 90%;
  }
  .the-moment .text, .what .text, .coalition .text {
    width: 100%;
  }
  .the-moment .container, .what .container, .coalition .container {
    flex-flow: column;
    gap: 0rem;
  }
  .hero .container.bottom {
    margin-top: 0rem;
  }
  .cards .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .six-priorities .intro .title {
    width: 100%;
    position: relative;
  }
  .hero .intro {
    width: 100%;
  }
  .six-priorities {
    padding: 2rem;
  }
  .six-priorities .solutions .cases {
    margin-bottom: 0rem;
  }
  .hero .intro {
    font-size: 1rem;
    line-height: 1.2;
  }
  .the-moment.coalition .lista .group-wrapper, .what.coalition .lista .group-wrapper, .coalition.coalition .lista .group-wrapper {
    margin-bottom: 0rem;
  }
  .the-moment.coalition .lista, .what.coalition .lista, .coalition.coalition .lista {
    width: calc(100% + 4rem);
    left: -2rem;
    padding-bottom: 0;
    transition: all 1s ease 0s;
  }
  .newsletter, section {
    padding: 4rem 2rem 4rem 2rem;
  }
  .hero .ctas {
    width: 100%;
  }
  .hero-mask, .hero-mask-2 {
    -webkit-mask-size: 45%;
  }
  .hero-mask {
    top: 0rem;
    -webkit-mask-position-y: 6rem;
    mask-position-y: 6rem;
    -webkit-mask-position-x: 94%;
    mask-position-x: 94%;
  }
  .hero-mask-2 {
    top: 0rem;
    -webkit-mask-position-y: 10rem;
    mask-position-y: 10rem;
    -webkit-mask-position-x: 6%;
    mask-position-x: 6%;
  }
  .hero-mask-wrapper.active .hero-mask-2 {
    -webkit-mask-position-y: 8rem;
    mask-position-y: 8rem;
  }
  .hero-mask-wrapper.active .hero-mask {
    -webkit-mask-position-y: 0rem;
    mask-position-y: 0rem;
  }
  .six-priorities .solutions .cases {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .six-priorities .intro-wrapper {
    flex-direction: column;
  }
  .six-priorities .intro .title {
    width: 100%;
  }
  .the-moment .title, .what .title, .coalition .title {
    font-size: clamp(2rem, 8vw, 8rem);
  }
  .newsletter .left {
    width: 100%;
  }
  .newsletter .ctas {
    flex-flow: column;
    align-items: end;
  }
  .btn {
    padding: 1rem;
    font-size: 1.2rem;
  }
  .newsletter .bg-wrapper {
    height: 40vh;
    width: 100%;
  }
  .newsletter .container {
    gap: 2rem;
  }
  .the-moment.coalition .text, .what.coalition .text, .coalition.coalition .text, .the-moment.coalition .title, .what.coalition .title, .coalition.coalition .title {
    width: 100%;
  }
  .the-moment .text, .what .text, .coalition .text {
    padding: 1rem 0rem;
  }
  .the-moment.coalition .scroll-buttons, .what.coalition .scroll-buttons, .coalition.coalition .scroll-buttons {
    top: 36%;
    width: calc(100% + 4rem);
    left: -2rem;
  }
  .six-priorities .intro .right .text {
    padding: 2rem 0rem;
  }
  .six-priorities .solutions .title, .six-priorities .intro .title, .the-moment .title, .what .title, .coalition .title {
    top: 0;
  }
  .the-moment.coalition .title-hidden, .what.coalition .title-hidden, .coalition.coalition .title-hidden {
    top: 0rem;
    padding: 1rem;
    left: 0px;
    width: 100%;
    background-color: black;
  }
  .six-priorities .solutions .d-flex {
    gap: 0rem;
    flex-wrap: wrap;
  }
  .six-priorities .ctas {
    flex-wrap: wrap;
    justify-content: end;
  }
  .the-moment.coalition .lista .group-wrapper .group .sub-group, .what.coalition .lista .group-wrapper .group .sub-group, .coalition.coalition .lista .group-wrapper .group .sub-group {
    width: 40vw;
  }
  .the-moment.coalition .scroll-buttons, .what.coalition .scroll-buttons, .coalition.coalition .scroll-buttons {
    position: relative;
  }
  .the-moment.coalition .cont-title, .what.coalition .cont-title, .coalition.coalition .cont-title {
    padding: 4rem 0rem 2rem 0rem;
  }
  .group .group-title, .what.coalition .lista .group-wrapper .group .group-title, .coalition.coalition .lista .group-wrapper .group .group-title {
    width: min-content;
    text-align: left;
  }
  .the-moment.what .title, .what.what .title, .coalition.what .title, .the-moment.what .text, .what.what .text, .coalition.what .text {
    width: 100%;
  }
  .the-moment .title, .what .title, .coalition .title {
    width: 100%;
    position: relative;
  }
  .six-priorities .intro .right {
    width: 100%;
  }
  .six-priorities .solutions .right {
    width: 100%;
  }
  .six-priorities .solutions .solution {
    padding-bottom: 10rem;
  }
}
@media (min-width: 1800px) {
  .hero-mask-wrapper.active .hero-mask-2 {
    opacity: 1;
    top: -11rem;
  }
  .six-priorities .solutions .d-flex {
    flex-wrap: nowrap;
  }
  .the-moment.coalition .title, .what.coalition .title, .coalition.coalition .title {
    width: 60%;
  }
  .newsletter .bg-wrapper {
    height: 60vh;
  }
  .newsletter {
    padding: 6rem 0rem 8rem 0rem;
  }
  .the-moment.what.active .title, .what.what.active .title, .coalition.what.active .title {
    width: 90%;
  }
  .the-moment .container, .what .container, .coalition .container, .six-priorities .intro-wrapper {
    gap: 4rem;
  }
}

/*# sourceMappingURL=practitioners.css.map */
