/* General reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #111111;
  color: white;
  padding-bottom: 80px;
}

.how-it-works {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  height: auto;
  background-color: #1d1d1d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-header {
  margin: 0 auto 60px;
  position: relative;
  width: 577px;
  height: 138px;
  gap: 75px;
}

.section-header h2 {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.highlighted-word {
  position: relative;
  color: #d919ff;
  z-index: 2;
}

/* Blur ellipse */
.blur-background {
  position: absolute;
  width: 217px;
  height: 108px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(217, 25, 255, 0.25);
  filter: blur(80px);
  z-index: 1;
  border-radius: 50%;
}

.section-header p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.icon-container {
  padding: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 24px;
  /* border: 4px solid white; */
}

.info-card {
  background: #13091d;
  border-radius: 16px;
  padding: 32px 24px;
  width: 320px;
  position: relative;
  text-align: left;
  max-width: 371px;
}

.info-card h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-top: 16px;
}

.info-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .how-it-works {
    max-width: 430px;
    margin: auto;
  }

  .section-header {
    position: relative;
    width: 250px;
    gap: 12px;
    margin: 25px 12px 52px 12px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }
}

.senses-section {
  background: #13091d;
  padding: 100px 40px;
  color: white;
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* height: 1559px; */
}

.senses-header h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 24px; /* Ask Dana maybe better without */
}

.main-sense.smell {
  position: relative;
  max-width: 600px;
  margin: 80px auto;
  width: 80%;
}

.smell-ellipse {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 842px;
  height: 477px;
  background: rgba(217, 25, 255, 0.1);
  filter: blur(80px);
  border-radius: 842px;
  z-index: 0;
}

.smell-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  z-index: 3;
}

.smell-icon img {
  height: 80px;
}

.badge {
  position: absolute;
  top: -16px;
  right: -40px;
  background: #d919ff;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 4px;
  border: solid 1px white;
}

.main-sense h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  z-index: 3;
  position: relative;
}

.main-sense p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.6;
  z-index: 3;
  position: relative;
}

/* Senses grid */
.senses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 200px;
  max-width: 1172px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  height: 612px;
}

.sense-card {
  text-align: center;
  padding: 0 20px;
  width: 370px;
}

.sense-card img {
  height: 92px;
  margin-bottom: 20px;
}

.sense-card h4 {
  /* margin-bottom: 12px; */ /* Ask Dana if she wants */
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.sense-card p {
  color: #dddddd;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 994px) {
  .sense-card {
    width: 264px;
  }
}

/* For mobile screens, display 1 item per row */
@media (max-width: 768px) {
  body {
    padding-bottom: 100px;
  }
  .senses-grid {
    grid-template-columns: 1fr; /* 1 item per row on smaller screens */
    gap: 45px 200px; /* Ask Dana what she thinks */
  }

  .senses-header h2 {
    font-size: 20px;
    margin-top: 0px;
  }

  .sense-card p {
    font-size: 14px;
  }

  .sense-card h4 {
    font-size: 20px;
  }

  .sense-card img {
    font-size: 65px;
  }

  .main-sense.smell {
    margin: 44px auto;
    width: auto;
  }

  .senses-section {
    height: 1734px;
	  padding-top: 24px
  }
}

.feature-carousel {
  display: flex;
  max-width: 100%;
  margin: auto;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.feature-carousel .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 225px;
  padding-right: 148px;
  padding-left: 148px;
  background: linear-gradient(180deg, #13091d 0%, rgba(29, 29, 29, 0) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .feature-carousel .shadow-overlay {
    height: 150px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 300ms ease-in;
  background-size: cover;
  background-position: center;
}

/* Update these selectors to match the new data-image values */
.carousel-image[data-image="first"] {
  background-image: url("assets/photo1.webp"); /* Adjust path as needed */
}

.carousel-image[data-image="second"] {
  background-image: url("assets/photo2.webp"); /* Adjust path as needed */
}

.carousel-image[data-image="third"] {
  background-image: url("assets/photo3.webp"); /* Adjust path as needed */
}

.carousel-image.active {
  opacity: 1;
}

.carousel-content {
  position: absolute;
  z-index: 2;
  text-align: left;
  top: 15%;
  left: 10%;
  width: 80%;
}

.carousel-heading {
  color: white;
  font-size: 3rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .carousel-heading {
    font-size: 28px;
    line-height: 150%;
  }

  .carousel-content {
    top: 12%;
    left: 5%;
    width: 90%;
  }

  .carousel-prefix {
    font-size: 28px;
  }

  .carousel-static-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .carousel-heading {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.carousel-prefix {
  display: block;
  color: #d919ff;
  margin-bottom: 0.5rem;
  transition: opacity 300ms ease-in;
  font-family: Poppins;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  /* text-align: center; */
}

.carousel-static-text {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
}

@media (max-width: 480px) {
  .carousel-static-text {
    font-size: 0.9rem;
  }

  .carousel-prefix {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }
}

.demo-form {
  position: relative;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.form-darkened {
  background-color: #000; /* solid black */
  color: white;
}

.form-darkened *:not(#form-response) {
  opacity: 0;
  pointer-events: none;
}

#form-response {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  text-align: center;
  z-index: 10;
  display: none;
}

.demo-request-section {
  position: relative;
  height: 1002px;
  background-image: url("assets/photo_Request_a_Demo.png");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.gradient-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102px;
  background: linear-gradient(180deg, #1d1d1d 0%, rgba(34, 34, 34, 0) 100%);
}

.demo-form-container {
  position: relative;
  width: 673px;
  /*height: 760px;*/
  top: 172px;
  left: 143px;
  border-radius: 8px;
  padding: 52px;
  box-shadow: 0px 0px 7.5px 0px rgba(0, 0, 0, 0.05);
  background: rgba(19, 9, 29, 0.85); /* #13091DD9 with alpha */
  color: white;
}

.demo-form-container h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #d919ff;
}

.demo-form-container p {
  margin-bottom: 42px;
  font-weight: 400;
  font-size: 16px;
  line-height: 127%;
  letter-spacing: 0%;
}

.demo-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  width: 266;
  height: 65;
  gap: 14px;
  border-radius: 8px;
  padding-top: 17px;
  padding-right: 12px;
  padding-bottom: 17px;
  padding-left: 18px;
  border-width: 1px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  padding: 0;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
}

.demo-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='none'%3E%3Cpath fill='white' d='M0 0h12L6 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 30px;
}

.demo-form textarea {
  resize: none;
  height: 150px;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder,
.demo-form select:invalid {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
}

.submit-container {
  display: flex;
  justify-content: flex-end;
}

.submit-button {
  background: #d919ff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 184px;
  height: 54px;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 100px;
  padding-top: 12px;
  padding-right: 40px;
  padding-bottom: 12px;
  padding-left: 40px;
}

.submit-button:hover {
  background: #e64dff;
}

/*fixing drop down color*/

select option {
  background-color: #333; /* Dark background for options */
  color: #fff; /* Light text for options */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .demo-request-section {
    width: 430px;
    height: 1034px;
    border-radius: 8px;
  }

  .demo-form-container {
    width: 369px;
    left: 5%;
    /*height: 804px;*/
    padding: 52px 30px;
    top: 0;
    padding-bottom: 52px;
  }

  .demo-form .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .demo-form-container h2 {
    font-size: 28px;
  }

  .demo-form-container p {
    font-size: 16px;
  }

  .submit-button {
    font-size: 18px;
    width: 369px;
    height: 51px;
  }
  .form-group.full-width {
    width: calc(100%);
    height: 204px;
  }
}

@media (max-width: 767px) {
  #form-response {
    top: 60%;
  }
  .demo-form-container {
    padding: 20px;
    top: 100px;
    width: calc(100%);
    left: 0;
    padding: 52px 24px;
  }

  .demo-form-container h2 {
    font-size: 2rem;
  }

  .submit-button {
    width: 100%;
  }
  section {
    max-width: 100% !important;
  }
}

.footer {
  background-color: #13091d;
  color: white;
  width: 100%;
  margin: auto;
  padding: 60px 0 30px;
  height: 348px;
}

.footer-container {
  margin: auto;
  padding: 0 20px;
  max-width: 1440px;
}

.footer-main {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  margin: 8px 0;
}

.phone,
.email a,
.locations {
  color: white;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

.social-media {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 36px;
  height: 36px;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.creator a {
  color: white;
  text-decoration: none;
}

.creator a:hover {
  text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 0;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-info {
    align-items: center;
  }

  .contact-info {
    text-align: center;
  }

  .footer-copyright {
    flex-direction: column;
    text-align: left;
    gap: 10px;
  }
}

section.form-section {
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

#main-header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94px;
}

.header-inner {
  max-width: 1176px;
  height: 41px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  width: 100%;
}

#main-header .sticky {
  background-color: black !important;
  padding: 0px 24px;
}

.logo {
  width: 215px;
  height: 41px;
  gap: 11px;
  z-index: 1003; /* logo appears above everything */
}

.book-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  padding: 8px 28px;
  background: #d919ff;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: transform 1.2s cubic-bezier(0.7, -0.4, 0.4, 1.4);
  font-size: 16px; /* Ask Dana if that's ok */
  width: 169px;
  height: 40px;
}

.book-demo-mobile-wrapper {
  display: none;
}

.second-section {
  height: 100vh;
  background: #ddd;
}

.hero-section {
  position: relative;
  width: 100%;
  /*max-width: 1444px;*/
  height: 600px;
  overflow: hidden;
  margin: auto;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 112px;
  text-align: center;
}

.word-row {
  display: flex;
  gap: 11px;
  align-items: center;
  padding-right: 14px;
}

.changing-word {
  width: 205px;
  font-size: 48px;
  font-weight: 700;
  color: #d919ff;
  animation: changeWord 10s infinite ease-in;
  text-transform: uppercase;
  text-align: right;
}

.static-brand-text {
  font-size: 48px;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .hero-section {
    height: 290px;
    width: 432px;
  }

  .header-inner {
    margin-top: 20px;
    justify-content: flex-start;
    padding-left: 49px;
  }

  .book-demo {
    display: none;
  }

  .book-demo-mobile-wrapper {
    background: black;
    width: 100%;
    height: 86px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .book-demo-mobile {
    width: calc(100% - 48px);
    height: 50px;
    padding: 12px 40px;
    border-radius: 100px;
    background: #d919ff;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-radius: 100px;
    padding: 12px 40px;
    gap: 8px;
    cursor: pointer;
    transition: transform 1.2s cubic-bezier(0.7, -0.4, 0.4, 1.4);
    font-weight: 600;
    font-size: 18px;
  }

  .changing-word {
    width: 103px;
    font-size: 32px;
  }

  .static-brand-text {
    font-size: 32px;
  }
}

/* Animation */
@keyframes changeWord {
  0%,
  20% {
    content: "TASTE";
  }
  20.01%,
  40% {
    content: "SEE";
  }
  40.01%,
  60% {
    content: "SMELL";
  }
  60.01%,
  80% {
    content: "TOUCH";
  }
  80.01%,
  100% {
    content: "HEAR";
  }
}

/* Watch It In Action Section */
#watch-it-in-action {
  max-width: 1440px;
  margin: auto;
  /* height: 100%;*/
  background: #13091d;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 32px 0;
}

.img-and-quote-container {
  height: 100%;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 124px 0px 90px 124px;
  justify-content: center;
  flex: 1;
}

.img-and-quote-container img {
  max-width: 50vw;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-and-quote-container p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
}

/* Content Container */
.content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 203px;
  flex: 1;
}

/* Icon */
.icon {
  width: 76px;
  height: 76px;
  margin-bottom: 40px;
}

/* Heading Styles */
.heading-purple {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0;
  color: #d919ff;
  /* margin-bottom: 5px; */
}

.heading-white {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0;
  color: #fff;
  /* margin-bottom: 20px; */
}

.description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #dddddd;
  margin-top: 18px;
}

@media (max-width: 992px) {
  .cards-container {
    gap: 144px;
  }

  #watch-it-in-action {
    flex-direction: column-reverse;
    height: auto;
    gap: 52px;
    padding: 72px 0px;
  }

  .img-and-quote-container {
    padding: 0;
  }

  .img-and-quote-container img {
    max-width: 90vw;
    height: auto;
  }

  .content-container {
    padding-right: 0;
    align-items: center;
    text-align: center;
    justify-content: left;
    align-items: flex-start;
    padding: 0px 38px;
  }

  .content-container img {
    align-self: center;
  }

  .heading-purple {
    font-size: 20px;
  }

  .heading-white {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
    text-align: left;
  }
  .header-row {
    display: flex;
    align-items: center; /* vertically align if needed */
    gap: 12px; /* spacing between headers */
    flex-wrap: wrap; /* optional: wrap on small screens */
  }
}

.story-sensing-section {
  max-width: 1440px;
  margin: auto;
  height: 656px;
  position: relative;
  background-image: url("assets/hero_photo.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 105px;
}

.small-header {
  font-weight: 300;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: #ffffff;
}

.big-header {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: 0;
  color: #d919ff;
}

@media (max-width: 768px) {
  .story-sensing-section {
    width: calc(100% - 48px);
    height: 569px;
    background-size: 280%;
    background-repeat: no-repeat;
  }

  .big-header {
    font-size: 28px;
  }

  .small-header {
    font-size: 20px;
  }
}

/*
Team Section
*/
.team-section {
  /*max-width: 1440px;*/
  margin: 0 auto;
  background-color: #1d1d1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-bottom: 34px;
}

.team-section .header h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 80px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  max-width: 1440px;
  padding: 24px 40px;
}

.card {
  width: 30%;
  border-radius: 8px;
  background: #13091d;
  box-shadow: 0px 0px 7.5px 0px #0000000d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 20px;
}

.card-img {
  position: relative;
  height: 100px;
  width: 160px;
  overflow: hidden;
  border-radius: 50%;
  top: -60px;
}

.card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-info {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: -40px;
}

.card-info h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin: 0;
}

.card-info .role {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  margin-top: 8px;
}

.card-info .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #dddddd;
  padding: 0px 10px 24px;
  text-align: left;
}

@media (max-width: 992px) {
  .team-section .header h1 {
    font-size: 28px;
  }

  .card {
    max-width: 350px;
  }

  .info-card {
    max-width: 371px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .team-section {
    width: 100%;
  }

  .team-section .header h1 {
    font-size: 20px;
    padding: 52px 122px;
  }

  .cards-container {
    flex-direction: column;
    gap: 84px;
  }

  .card {
    width: 100%;
    max-width: 371px;
  }

  .card-img {
    height: 140px;
    width: 140px;
    top: -80px;
  }

  .card-info h2 {
    font-weight: 700;
    font-size: 20px;
  }
  .card-info {
    margin-top: -80px;
  }

  .card-info .role {
    font-weight: 700;
    font-size: 16px;
  }

  .card-info .description {
    font-weight: 400;
    font-size: 14px;
  }

  .info-card {
    max-width: 371px;
  }
}
