#speak-with-team .hero-section {
  background: url("/v1/assets/images/serviceHerobg.png") no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 240px 40px 80px 40px;
  text-align: center;
  border-radius: 0 0 80px 80px;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .hero-section {
    padding: 180px 20px 60px 20px;
    border-radius: 0 0 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  #speak-with-team .hero-section {
    padding: 100px 20px 30px 20px;
    border-radius: 0 0 16px 16px;
  }
}
#speak-with-team .hero-section .hero-content {
  max-width: 1185px;
  margin: 0 auto;
}
#speak-with-team .hero-section .hero-content h1 {
  font-family: "outfit", sans-serif;
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 72px;
  color: white;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .hero-section .hero-content h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (max-width: 768px) {
  #speak-with-team .hero-section .hero-content h1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 14px;
    text-align: center;
  }
}
#speak-with-team .hero-section .hero-content p {
  font-family: "outfit", sans-serif;
  font-size: 32px;
  line-height: 38px;
  color: #dedede;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .hero-section .hero-content p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  #speak-with-team .hero-section .hero-content p {
    font-size: 14px;
    line-height: 18px;
  }
}
#speak-with-team .cv-section {
  max-width: 1450px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  gap: 50px;
}
@media (max-width: 1024px) {
  #speak-with-team .cv-section {
    padding: 60px 20px;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #speak-with-team .cv-section {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}
#speak-with-team .cv-section .left-content {
  flex: 1;
  max-width: 550px;
}
@media (max-width: 768px) {
  #speak-with-team .cv-section .left-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#speak-with-team .cv-section .left-content .tag {
  font-family: "outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
  text-transform: uppercase;
  border: 1px solid #DCDCDC;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 12px;
}
#speak-with-team .cv-section .left-content .img_blk {
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
}
#speak-with-team .cv-section .left-content .img_blk img {
  width: 100%;
  height: auto;
  display: block;
}
#speak-with-team .cv-section .left-content .main-heading {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #speak-with-team .cv-section .left-content .main-heading {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  #speak-with-team .cv-section .left-content .main-heading {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 12px;
  }
}
#speak-with-team .cv-section .left-content .description {
  font-family: "SF Pro Display", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #777777;
  font-weight: 400;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #speak-with-team .cv-section .left-content .description {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
    text-align: center;
  }
}
#speak-with-team .cv-section .right-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  #speak-with-team .cv-section .right-features {
    grid-template-columns: 1fr;
  }
}
#speak-with-team .cv-section .right-features .feature-card {
  background-color: #F8F8F8;
  border-radius: 24px;
  border: 1px solid #DCDCDC;
  padding: 24px 44px 24px 24px;
  transition: all 0.3s ease;
}
#speak-with-team .cv-section .right-features .feature-card .card_body {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
#speak-with-team .cv-section .right-features .feature-card .learn_more {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#speak-with-team .cv-section .right-features .feature-card .learn_more span {
  font-family: "outfit", sans-serif;
  color: #4EA62F;
  font-size: 16px;
  font-weight: 400;
}
#speak-with-team .cv-section .right-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  #speak-with-team .cv-section .right-features .feature-card {
    padding: 20px;
  }
}
#speak-with-team .cv-section .right-features .feature-card .icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
#speak-with-team .cv-section .right-features .feature-card .feature-title {
  font-family: "outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
  line-height: 30px;
}
#speak-with-team .cv-section .right-features .feature-card .feature-description {
  font-family: "outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.4);
}
#speak-with-team .essay-pricing-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .essay-pricing-section {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section {
    padding: 24px;
  }
}
#speak-with-team .essay-pricing-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .section-header {
    margin-bottom: 24px;
  }
}
#speak-with-team .essay-pricing-section .section-header .label {
  font-family: "outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #dcdcdc;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .section-header .label {
    font-size: 12px;
  }
}
#speak-with-team .essay-pricing-section .section-header .main-title {
  font-family: "outfit", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 74px;
  color: #000000;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  #speak-with-team .essay-pricing-section .section-header .main-title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .section-header .main-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
  }
}
#speak-with-team .essay-pricing-section .section-header .subtitle {
  font-family: "outfit", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #777777;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .section-header .subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: start;
  position: relative;
}
@media (max-width: 1024px) {
  #speak-with-team .essay-pricing-section .pricing-cards {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards {
    grid-template-columns: 1fr !important;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#speak-with-team .essay-pricing-section .pricing-cards .star-icon {
  transform: translateX(-50%);
  font-size: 40px;
  color: #ffc107;
  z-index: 1;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .star-icon {
    font-size: 28px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 42px;
  padding-top: 100px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.0784313725);
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .badge {
  font-family: "outfit", sans-serif;
  display: inline-block;
  background-color: #f57354;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 24px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: absolute;
  right: 0;
  top: 40px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price .currency {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-right: 3px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price .amount {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  line-height: 1;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price .amount {
    font-size: 32px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price .unit {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #7c818f;
  margin-left: 5px;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price .unit {
    font-size: 32px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price-description {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700 !important;
  color: #7c818f;
  margin-bottom: 24px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price-description strong {
  font-weight: 700 !important;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .price-description {
    font-size: 14px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .section-title {
  font-family: "outfit", sans-serif;
  font-size: 18px;
  color: #7c818f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 400;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-short-description {
  font-family: "SF Pro Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #7C818F;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-short-description {
    font-size: 15px;
    line-height: 20px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-description {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #7C818F;
  margin-bottom: 25px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-description strong {
  font-weight: 700;
  color: #000000;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-description {
    font-size: 14px;
    line-height: 18px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-detail-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 42px;
  padding-right: 42px;
  margin-left: -40px;
  margin-right: -40px;
  opacity: 1;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-detail-section {
    padding-left: 28px;
    padding-right: 28px;
    margin-left: -28px;
    margin-right: -28px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-detail-section .card-description {
  margin-bottom: 0;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-detail-section .features-list {
  margin-bottom: 0;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-detail-section .cta-button {
  margin-top: 24px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .card-divider {
  width: 276px;
  height: 0;
  border: 1px solid #DCDCDC;
  margin-top: 0;
  margin-bottom: 12px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list {
  list-style: none;
  margin-bottom: 30px;
  width: 276px;
  opacity: 1;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list li {
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #454545;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list li:last-child {
  margin-bottom: 0;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list li .check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .features-list li .check-icon img {
  width: 18px;
  height: 18px;
  display: block;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .question {
  font-size: 13px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .question {
    font-size: 12px;
  }
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .cta-button {
  font-family: "SF Pro Display", sans-serif;
  width: 100%;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  background-color: #147187;
  color: #ffffff;
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .cta-button:hover {
  background-color: #156070;
  box-shadow: 0 6px 20px rgba(26, 123, 142, 0.3);
  transform: translateY(-2px);
}
#speak-with-team .essay-pricing-section .pricing-cards .pricing-card .cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #speak-with-team .essay-pricing-section .pricing-cards .pricing-card .cta-button {
    padding: 12px 18px;
    font-size: 14px;
  }
}
#speak-with-team .testimonials-section {
  background-color: #f7f7f7;
}
#speak-with-team .testimonials-section .testimonial-container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .testimonials-section .testimonial-container {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  #speak-with-team .testimonials-section .testimonial-container {
    padding: 24px;
  }
}
#speak-with-team .testimonials-section .section-title {
  font-family: "outfit", sans-serif;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  #speak-with-team .testimonials-section .section-title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  #speak-with-team .testimonials-section .section-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
  }
}
#speak-with-team .testimonials-section .slider-container {
  position: relative;
  padding: 0 60px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper {
  overflow: hidden;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
  min-width: 100%;
  padding: 0 15px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content {
  background: white;
  border-radius: 16px;
  padding: 40px 30px 21px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 24px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .student-name {
  font-family: "SF Pro Display", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .university {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #676767;
  margin-bottom: 12px;
  line-height: 22px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .stars .star {
  color: #fbaa1b;
  font-size: 24px;
}
#speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .testimonial-text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #2e2e2e;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .testimonial-text {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
}
#speak-with-team .testimonials-section .slider-container .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #speak-with-team .testimonials-section .slider-container .slider-nav {
    display: none;
  }
}
#speak-with-team .testimonials-section .slider-container .slider-nav:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}
#speak-with-team .testimonials-section .slider-container .slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
#speak-with-team .testimonials-section .slider-container .slider-nav.prev {
  left: 10px;
}
#speak-with-team .testimonials-section .slider-container .slider-nav.next {
  right: 10px;
}
#speak-with-team .testimonials-section .slider-container .slider-nav svg {
  width: 32px;
  height: 32px;
  fill: #000;
}
@media (min-width: 768px) {
  #speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  #speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
    min-width: 33.333%;
  }
}
@media (max-width: 767px) {
  #speak-with-team .testimonials-section .section-title {
    font-size: 1.875rem;
  }
  #speak-with-team .testimonials-section .slider-container {
    padding: 0 0px;
  }
  #speak-with-team .testimonials-section .slider-container .slider-nav {
    width: 36px;
    height: 36px;
  }
  #speak-with-team .testimonials-section .slider-container .slider-nav svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  #speak-with-team .testimonials-section {
    padding: 24px 0 0;
  }
  #speak-with-team .testimonials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  #speak-with-team .testimonials-section .slider-container {
    padding: 0 0px;
  }
  #speak-with-team .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content {
    padding: 20px 20px;
  }
}
#speak-with-team .cta-section {
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  #speak-with-team .cta-section {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  #speak-with-team .cta-section {
    padding: 30px 20px;
  }
}
#speak-with-team .cta-section .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
#speak-with-team .cta-section .inner {
  display: flex;
  align-items: center;
  gap: 86px;
}
@media screen and (max-width: 767px) {
  #speak-with-team .cta-section .inner {
    flex-direction: column;
    text-align: center;
  }
}
#speak-with-team .cta-section .content {
  max-width: 670px;
}
@media (max-width: 768px) {
  #speak-with-team .cta-section .content {
    max-width: 100%;
  }
}
#speak-with-team .cta-section .content .heading {
  font-family: "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #speak-with-team .cta-section .content .heading {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  #speak-with-team .cta-section .content .heading {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 480px) {
  #speak-with-team .cta-section .content .heading {
    font-size: 28px;
    line-height: 36px;
  }
}
#speak-with-team .cta-section .content .heading .highlight {
  color: #ff3b30;
}
#speak-with-team .cta-section .content .description {
  font-family: "SF Pro Display", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #616161;
  margin-bottom: 32px;
  max-width: 637px;
}
@media (max-width: 768px) {
  #speak-with-team .cta-section .content .description {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 100%;
  }
}
#speak-with-team .cta-section .content .cta-button {
  font-family: "SF Pro Display", sans-serif;
  display: inline-block;
  background-color: #147187;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#speak-with-team .cta-section .content .cta-button:hover {
  background-color: #156070;
}
#speak-with-team .cta-section .content .cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #speak-with-team .cta-section .content .cta-button {
    padding: 13px 22px;
    font-size: 14px;
  }
}
#speak-with-team #advisors-section {
  padding: 80px 20px;
  background-color: #191818;
}
@media (max-width: 768px) {
  #speak-with-team #advisors-section {
    padding: 24px;
  }
}
#speak-with-team #advisors-section .container {
  max-width: 1180px;
  margin: 0 auto;
}
#speak-with-team #advisors-section .section-subtitle {
  font-family: "outfit", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
#speak-with-team #advisors-section .section-title {
  font-family: "outfit", sans-serif;
  text-align: center;
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #fff;
  opacity: 1;
  transform: none;
}
@media (max-width: 768px) {
  #speak-with-team #advisors-section .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
#speak-with-team #advisors-section .advisors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  #speak-with-team #advisors-section .advisors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  #speak-with-team #advisors-section .advisors-grid {
    grid-template-columns: 1fr;
  }
}
#speak-with-team #advisors-section .advisor-card {
  transition: transform 0.3s ease;
}
#speak-with-team #advisors-section .advisor-card:hover {
  transform: translateY(-6px);
}
#speak-with-team #advisors-section .advisor-card:hover .advisor-image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
#speak-with-team #advisors-section .advisor-image {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.0784313725);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#speak-with-team #advisors-section .advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.5s ease;
}
#speak-with-team #advisors-section .advisor-content {
  padding: 24px 0 0;
}
#speak-with-team #advisors-section .advisor-bio {
  font-family: "outfit", sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  font-weight: 400;
}
#speak-with-team #advisors-section .cta-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
#speak-with-team #advisors-section .contact-btn {
  font-family: "SF Pro Display", sans-serif;
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 500;
  color: white;
  background: transparent;
  border: 2px solid #C5C5C5;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
