/** ===================================================================== **/
/** RESETS **/
/** ===================================================================== **/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  font-weight: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

html,
body {
  display: block;
  position: relative;
  font-family: Montserrat;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  min-width: 100vw;
  background-color: #FFFFFF;
}

main {
  max-width: 1172px;
  margin: 0 auto;
}

img {
  position: relative;
  max-width: 100%;
  max-height: auto;
}

input {
  display: flex;
  padding: 1rem 2.5rem;
  align-self: stretch;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-style: normal;
  border-style: none;
}

form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

form > input {
  flex: 3;
}

form > button {
  flex: 1;
  max-height: 3.5rem;
  align-self: flex-end;
  margin-left: 1.5rem;
  cursor: pointer;
}

a {
  cursor: pointer;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  body {
    font-size: calc(1.125rem + (0.125) * ((100vw - 360px) / (1440 - 360)));
  }
}

/** ===================================================================== **/
/** NAVBAR **/
/** ===================================================================== **/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  padding: 1.5rem;
  background-color: white;
  position: sticky;
  z-index: 3;
  top: 0;
  max-width: 1172px;
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between; /* keeps the items "Education," "Learn More," and "Sign-in" evenly spaced*/
  flex-grow: 0;
  align-items: center; /* keeps the text of the menu aligned with the rahrah logo */
  text-decoration: none;
}

.nav-items {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: flex-end;
}

.menuToggle {
  cursor: pointer;
}

.nav-items li {
  padding-left: 1rem;
}

.nav-items a:not(.signIn) {
  text-decoration: none;
  color: #000;
}

.rahrahlogo {
  max-width: 8rem;
}

.talkToSales {
  background-color: #4a50e8;
  border-style: none;
  padding: 0.875rem 2.5rem;
}

.menu {
  display: none;
}

.hamburger,
.x {
  display: none;
}

.signIn {
  font-family: Montserrat;
  border-style: none;
  background-color: #4a50e8;
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  text-decoration: none;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .rahrahlogo {
    max-width: 14rem;
  }

  nav {
    justify-content: center;
    margin: 0;
    width: 100%;
    position: absolute;
    overflow: hidden;
    top: 100%;
    left: 0;
    background-color: white;
  }

  .nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-items li {
    display: block;
    padding: 1rem;
  }

  .menu {
    display: none;
  }

  .menu:checked ~ .menuToggle .hamburger {
    display: none;
  }

  .menu:not(:checked) ~ .menuToggle .x {
    display: none;
  }

  .menu:not(:checked) ~ nav .nav-items {
    display: none;
  }

  .menu:checked ~ nav {
    max-height: 50vh;
    padding-bottom: 1rem;
  }

  .hamburger,
  .x {
    display: block;
    color: #4a50e8;
    width: 3rem;
    height: 3rem;
  }

  .nav-items a {
    border-bottom-color: rgba(0, 0, 255, 0.35);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
  }
}

/** ===================================================================== **/
/** FOOTER **/
/** ===================================================================== **/
footer {
  display: flex;
  padding: 4rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1172px;
  background-color: white;
  margin: 0 auto;
}
.footerContainer {
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
#Copyright {
  font-weight: 650;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
.socialsContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1.3rem;
  height: 1.75rem;
  margin-bottom: 1.5rem;
  margin-right: 0;
}
.socialsLinks > a {
  margin-right: 1rem;
  font-weight: 650;
}
.socialsLinks > a:nth-last-child(1) {
  margin-right: 0;
}
.socialsContainer > a > svg {
  max-height: 2.2rem;
  max-width: 2.2rem;
  margin-bottom: 0;
}

.socials-links-container {
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  padding-bottom: 0.4rem;
}

.logo-copyright-container {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .footerContainer {
    flex-direction: column;
    align-items: start;
  }

  .rahrahlogo {
    max-width: 38%;
  }

  #Copyright {
    margin-bottom: 0.75rem;
  }

  .socialsContainer {
    height: 2.5rem;
  }

  .socialsLinks {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    gap: 1.5rem;
  }
}

/** ===================================================================== **/
/** TYPOGRAPHY **/
/** ===================================================================== **/
@font-face {
  font-family: BricolageGrotesque;
  src: url(../fonts/BricolageGrotesque.ttf);
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat.ttf);
}

h1 {
  color: #000;
  font-family: BricolageGrotesque;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin: 0px;
}

h2 {
  font-family: BricolageGrotesque;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

h5 {
  font-size: 1rem;
}

p {
  font-family: Montserrat;
  text-align: left;
  color: black;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 0;
}

strong {
  font-weight: 700;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  p {
    font-size: 1.125rem;
  }
}

/** ===================================================================== **/
/** THEME **/
/** ===================================================================== **/
.purple {
  color: #4a50e8;
}

.bubble {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 127.986%; /* 20.478px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  display: flex;
  padding: 7px 16px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 40px;
  background: #000;
}

/** ===================================================================== **/
/** PAGE CONTAINER BASE **/
/** ===================================================================== **/
section {
  display: flex;
  position: relative;
  max-width: 100%;
  padding: 4rem 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.sectionTitleChip {
  border-style: none;
  background-color: black;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2.5em;
  text-align: center;
  text-decoration: none;
  display: block;
  text-wrap: nowrap;
  font-weight: 700;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .sectionTitleChip {
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 2.5rem;
    font-size: 1.1rem;
  }
}

/** ===================================================================== **/
/** PAGE CONTAINER ONE **/
/** ===================================================================== **/
/* Copied directly from figma */
/* Still needs purple for purple text */
.container_one {
  background: #f3f2ed;
  align-items: center;
  padding-bottom: 0rem;
}

.container_one_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
}

.container_oneButton {
  display: flex;
  justify-content: center;
  border-radius: 4em;
  background: #4a50e8;
  margin-bottom: 0;
}

.container_oneButton a {
  color: #fff;
  padding: 16px 32px;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.container_one img {
  margin-top: 70px;
  height: auto;
  margin-bottom: -3px;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .container_one {
    gap: 2rem;
  }

  .container_one > * {
    text-align: center;
  }

  .container_one > h1 {
    font-size: 3.75rem;
  }

  .container_one > p {
    font-size: 1.25rem;
    font-weight: 550;
  }

  .container_one img {
    margin-top: 3rem;
  }
}

/** ===================================================================== **/
/** PAGE CONTAINER TWO **/
/** ===================================================================== **/
.container_two {
  background: #b6a7fa;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  height: max-content;
  padding: 0;
}

.container_two > p:first-of-type {
  width: 60%;
  align-self: flex-end;
}

.imageTwo {
  align-self: center;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
}

/** ===================================================================== **/
/** PAGE CONTAINER THREE **/
/** ===================================================================== **/
.container_three {
  background-color: black;
  display: flex;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container_three > .joinWaitList {
  padding: 0;
  padding: 3rem 1.5rem;
  border-radius: 0;
}

.container_three h2 {
  color: white;
}

.joinWaitListContainer {
  display: flex;
  background: #b6a7fa;
}

.joinWaitList {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: black;
  color: white;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  z-index: 1;
  align-self: center;
  overflow: hidden;
}

.joinWaitList svg {
  width: 180px;
  position: absolute;
  right: 0;
  top: 0;
}

.joinWaitList h2 {
  text-align: left;
  justify-content: center;
  position: relative;
}

.joinWaitListOne {
  padding-right: 7.5rem;
}

.joinWaitListTwo {
  padding-right: 4rem;
}

.joinWaitList input {
  margin-top: 2rem;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

::placeholder {
  opacity: 60%;
  transform: scale(1.1, 1);
}

.joinWaitList button {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 0;
  background: #4a50e8;
  border-radius: 137.05px;
  color: white;
  font-size: 20px;
  font-weight: 550;
}

/* NESTING STRUCTURE OF LAUNCHLIST DOWN TO THE INPUT */
/* .container_three
  .joinWaitList
  .launchlist-widget
  iframe
  :root
  body
  div
  .launchlist-form
  .launchlist-wrapper
  .launchlist-input-wrapper
  .launchlist-input-wrapper */

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .joinWaitListContainer {
    gap: 1rem;
  }

  .joinWaitListContainer > h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  .joinWaitList > h2 {
    padding-top: 2rem;
    font-size: 2.1rem;
    padding-right: 2.5rem;
  }

  .joinWaitList form {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .joinWaitList svg {
    width: 160px;
  }
}

/** ===================================================================== **/
/** PAGE CONTAINER FOUR **/
/** ===================================================================== **/
.container_four {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.container_four > p {
  width: 50%;
  align-self: flex-end;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .container_four > h2 {
    margin-top: -1.5rem;
    font-size: 2.2rem;
    font-weight: 450;
  }

  .container_four > h2 > b {
    font-weight: 650;
  }

  .container_four > p {
    margin-top: -1rem;
    width: 100%;
    align-self: flex-start;
    font-size: 1.25rem;
    font-weight: 550;
  }

  .imageTwo {
    margin-bottom: -2rem;
  }
}

/** ===================================================================== **/
/** PAGE CONTAINER FIVE **/
/** ===================================================================== **/
.container_five {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-self: stretch;
  background: #108e60;
  padding-bottom: 0;
  overflow: hidden;
}

.container_five > h2,
.container_five_text > p {
  color: white;
}

.container_five > h2 {
  max-width: 50vw;
  flex-wrap: wrap;
  text-align: left;
  align-self: flex-start;
}

.container_five_text {
  width: 50%;
  flex-wrap: wrap;
}

.container_five_content {
  max-width: max-content;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}

.container_five_text > hr {
  background-color: rgb(255, 255, 255);
  border: 0;
  border-radius: 20px;
  width: 100%;
  height: 2px;
  position: relative;
  opacity: 0.5;
}

.userAnalytics {
  max-width: 33%;
  align-self: center;
}

.communityLedGrowth {
  background-color: white;
  color: #108e60;
}

.communityLedGrowth-text-outer {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 2rem 0;
  align-items: center;
}

.communityLedGrowth-text-outer > h1,
.communityLedGrowth-text-inner > h3,
.communityLedGrowth-text-inner > p {
  color: white;
}

.communityLedGrowth-text-inner > h3 {
  margin-bottom: 1rem;
}

.communityLedGrowth-text-inner > p {
  font-size: 1rem;
}

.communityLedGrowth-text-outer > h1 {
  padding-top: 1rem;
  padding-right: 2rem;
  min-width: 120px;
}

.communityLedGrowthSvgContainer {
  display: block;
  height: 100%;
}

.communityLedGrowthSvg1 {
  display: inline;
  position: relative;
  align-self: left;
  height: 100%;
  left: -1.5em;
  bottom: -0.5em;
}

.communityLedGrowthSvg2 {
  display: inline;
  position: relative;
  align-self: left;
  height: 100%;
  left: -3.5em;
  bottom: -1em;
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .container_five {
    gap: 1rem;
  }

  .container_five > h2 {
    max-width: unset;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .container_five_content {
    flex-direction: column;
  }

  .container_five_text {
    width: unset;
  }

  .communityLedGrowthIntro {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .communityLedGrowth-text-outer {
    flex-direction: column;
    align-items: flex-start;
  }

  .communityLedGrowth-text-outer > h1 {
    font-family: Montserrat;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .communityLedGrowth-text-inner > h3 {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    padding-top: 1rem;
  }

  .communityLedGrowth-text-inner > p {
    font-size: 1.1rem;
    font-weight: 450;
  }

  .userAnalytics img {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
  }

  .userAnalytics {
    min-width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .communityLedGrowthSvgContainer {
    display: block;
    margin-top: -10.5rem;
  }

  .communityLedGrowthSvg1 {
    display: inline;
    position: relative;
    z-index: 1;
    align-self: left;
    height: 100%;
    left: -1.5em;
    bottom: -3em;
  }

  .communityLedGrowthSvg2 {
    display: inline;
    position: relative;
    align-self: left;
    height: 100%;
    left: 6em;
  }
}

/** ===================================================================== **/
/** PAGE CONTAINER SIX **/
/** ===================================================================== **/
.container_six {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
}

.ourSolutionsByIndustry {
  background-color: #4a50e8;
}

@media only screen and (min-width: 360px) and (max-width: 810px) {
  .container_six h2 {
    font-size: 2.1rem;
  }
}

/** ===================================================================== **/
/** CAROUSEL **/
/** ===================================================================== **/
.sticky-carousel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  pointer-events: none;
  z-index: 2;
  padding: 4rem 1.5rem 0;
  top: 0;
  left: 0;
  height: 600px;
  gap: 3rem;
}

.sticky-carousel > h2 {
  display: block;
  text-align: left;
  justify-self: left;
}

.sticky-carousel > p {
  width: 65%;
  align-self: flex-end;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  pointer-events: auto;
  scroll-snap-type: x mandatory;
}

.carousel {
  display: flex;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: 0 0 100%; /* Set item width to 100% of the container */
  background-color: #f0f0f0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  width: 100%;
}

#Events {
  background: #b6a7fa;
  /* z-index: 1; */
}

#Groups {
  background: #f3f2ed;
  /* z-index: 1; */
}

#Resources {
  background: #fdafa3;
  /* z-index: 1; */
}

#People {
  background: #dbdff9;
  /* z-index: 0; */
}

.carousel-svg-left {
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 0;
}

.carousel-svg-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.carousel-item-content-spacer {
  height: calc(45rem - ((100vw - 810px)));
  min-height: 30rem;
}

.carousel-item-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: auto;
  flex-direction: row;
  margin-bottom: 2rem;
  z-index: 1;
}

.carousel-item-content > img {
  padding: 1rem;
  margin-left: 12rem;
  max-width: 33%;
}

.carousel-item-content > a {
  text-decoration: none;
  position: sticky;
  transform: translateY(50%);
  top: 0;
  color: white;
  background-color: #4a50e8;
  padding: 1rem;
  border-radius: 2rem;
  height: auto;
}

.carousel-item-text {
  width: 30%;
  justify-content: left;
}

.carousel-item-text svg {
  max-width: 11rem;
  max-height: 11rem;
  margin-bottom: 4rem;
}

.carousel-item-text > h2 {
  margin-bottom: 1.5rem;
}

/* @keyframes tonext {
  75% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(100%);
  }
  92% {
    transform: translateX(100%);
  }
  99% {
    transform: translateX(0);
  }
}

@keyframes tostart {
  75% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(-300%);
  }
  92% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
} */

/* @keyframes snap {
  84% {
    scroll-snap-align: center;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  27% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  52% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-200%);
  }
  77% {
    transform: translateX(-300%);
  }
  86% {
    transform: translateX(-300%);
  }
  98% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* FIX: Keeps insta-snapping to groups from events on completing tostart */

@media (hover: hover) {
  /* .carousel-item {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  #People {
    animation-name: tostart, snap;
  } */
}

.carousel {
  animation-name: scroll;
  animation-timing-function: ease;
  animation-duration: 28s;
  animation-iteration-count: infinite;
}

.carousel:hover {
  animation-play-state: paused;
}

.carousel-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1;
  background-color: rgb(74, 80, 232);
  animation-name: progressBar;
  animation-timing-function: linear;
  animation-duration: 7s;
  animation-iteration-count: infinite;
}

.carousel-container:hover::before {
  animation-play-state: paused;
}

.carousel-container:hover::after {
  content: "\23F8";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  opacity: 0.3;
  font-size: 100px;
  width: 100px;
  height: 100px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
}

/*FIX: There is a small white boarder around each carousel item, 
ideally this would go away and the parent section would adopt each carousel item's background color  */
.carousel-container::-webkit-scrollbar,
.carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}

@media only screen and (min-width: 360px) and (max-width: 811px) {
  .carousel,
  .carousel-container::before {
    animation-name: unset;
  }

  .carousel-container:hover::after {
    content: unset;
  }

  .carousel-item > svg {
    display: none;
  }

  .carousel-item-text {
    width: 100%;
  }

  .sticky-carousel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* padding: 0 1.5rem; */
  }

  .sticky-carousel > h2 {
    font-size: 2.2rem;
    margin-top: -2rem;
    margin-bottom: -1rem;
  }

  .sticky-carousel > p {
    align-self: stretch;
    width: 100%;
    font-size: 1.3rem;
    font-weight: 525;
  }

  .carousel-container {
    margin: 0;
    padding: 0;
  }

  .carousel-item {
    height: calc(140rem + ((100vw - 360px) / 2) * 1.5);
    overflow-y: hidden;
  }

  .carousel-item-content-spacer {
    height: 0;
    min-height: 0;
    max-height: 0;
  }

  .carousel-item-content {
    margin-top: calc(50rem - ((100vw - 360px) / 5) * 4);
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    align-items: flex-start;
    height: auto;
  }

  .carousel-item-text {
    width: 100%;
    padding: 0 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .carousel-item-text > svg {
    margin-top: -5rem;
    /* padding-top: 1rem; */
    max-width: 8.5rem;
    max-height: 8.5rem;
    margin-bottom: 2.25rem;
  }

  .carousel-item-text > h2 {
    margin-bottom: 3rem;
  }

  .carousel-item-text > h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .carousel-item-text > p {
    display: block;
    align-self: stretch;
    margin-bottom: -1rem;
    font-size: 1.3rem;
    font-weight: 525;
  }

  .carousel-item-content > img {
    margin: 0 auto;
    padding-top: 3rem;
    max-width: 100%;
  }

  .carousel-item-content > a {
    display: none;
  }
}