/* ==========================================
   Font Family
========================================== */
/* ==========================================
   Color Codes
========================================== */
/* ==========================================
   BREAKPOINTS
========================================== */
/* ==========================================
   SPACING
========================================== */
.common-margin {
  margin-block: clamp(60px, 8vw, 140px);
}
.inner-padding {
  padding-block: clamp(40px, 8vw, 80px);
}
.m-40 {
  margin-block: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-56 {
  margin-bottom: 56px;
}
.pb-40 {
  padding-bottom: 40px;
}
.mt-80 {
  margin-top: clamp(40px, 5vw, 80px);
}
.w-lg-auto {
  width: auto;
}
/* ==========================================
   TYPOGRAPHY
========================================== */
body {
  font-family: "Outfit", sans-serif;
  padding-top: 150px;
}
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 0;
  }
  body.admin-bar {
    padding-top: 70px;
  }
}
a {
  color: #D86B28;
  text-decoration: none;
  font-weight: 500;
}
.hero-heading {
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 500;
  line-height: 1.2;
}
.primary-heading {
  font-size: clamp(22px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}
.custom-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}
.sub-heading {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}
.sub-heading-sm {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.3;
}
.primary-description {
  color: #263946;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0px;
}
.primary-description p {
  margin-bottom: 0;
}
.primary-description-sm {
  color: #263946;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0px;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nowrap {
  white-space: nowrap;
}
/* ==========================================
   Colors
========================================== */
.custom-orange {
  color: #D86B28 !important;
}
.custom-blue {
  color: #1A5579;
}
.bg-custom-blue {
  background: #1A5579;
}
.bg-custom-blue-light {
  background: #EDF3F8;
}
.custom-white {
  color: rgba(255, 255, 255, 0.7);
}
.custom-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.custom-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.primary-color {
  color: #001625 !important;
}
.secondary-color {
  color: #263946;
}
/* ==========================================
   Kajabi Form
========================================== */
/* Kajabi Form */
.kajabi-form--inline {
  background: transparent !important;
  padding-block: 0px !important;
}
.kajabi-form--inline .kajabi-form__content {
  width: 100% !important;
  max-width: 100% !important;
}
.kajabi-form--inline .kajabi-form__content fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.kajabi-form--inline .kajabi-form__content fieldset .kajabi-form__form-item {
  flex-basis: 100%;
  margin-bottom: 0px !important;
}
.kajabi-form--inline .kajabi-form__content fieldset .email-field {
  flex-basis: 49.5%;
}
.kajabi-form--inline .kajabi-form__content fieldset .text-field {
  flex-basis: 49.5%;
}
.kajabi-form--inline .kajabi-form__content fieldset input, .kajabi-form--inline .kajabi-form__content fieldset textarea {
  background: #fff !important;
  border: 1px solid #e1e1e1 !important;
}
.kajabi-form--inline .kajabi-form__content fieldset input:hover, .kajabi-form--inline .kajabi-form__content fieldset input:focus, .kajabi-form--inline .kajabi-form__content fieldset textarea:hover, .kajabi-form--inline .kajabi-form__content fieldset textarea:focus {
  border: 1px solid #D86B28 !important;
}
.kajabi-form--inline .kajabi-form__content fieldset .kajabi-form__btn {
  color: #fff !important;
  background-color: #D86B28 !important;
  margin: auto !important;
  font-size: 16px !important;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 70px !important;
  padding: 16px 40px !important;
  border: 1px solid #D86B28 !important;
  font-family: "Outfit", sans-serif !important;
}
/* ==========================================
  Buttons 
========================================== */
.custom-btn {
  border-radius: 108px;
  background: linear-gradient(90deg, #D86B28 0%, #F8975C 100%);
  display: inline-flex;
  height: 46px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.custom-btn-outline {
  border-radius: 108px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  height: 46px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.custom-btn-text {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
}
.w-lg-auto {
  width: auto;
}
.icon-wrapper {
  top: -1px;
}
.anchor-hover {
  transition: color 0.3s ease;
}
.anchor-hover:hover {
  color: #D86B28;
}
.custom-btn-text .icon-wrapper img, .custom-btn-text .icon-wrapper svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.custom-btn-text:hover .icon-wrapper img, .custom-btn-text:hover .icon-wrapper svg {
  transform: translateX(4px);
  opacity: 0.9;
}
.custom-pagination .pagination-left-arrow-wrapper, .custom-pagination .pagination-right-arrow-wrapper, .custom-pagination .page-numbers {
  border-radius: 4px;
  background: rgba(160, 203, 58, 0.1);
  padding: 4px 10px;
}
.custom-pagination .pagination-item.active .page-numbers {
  background: #D86B28;
}
/* ==========================================
  Header
========================================== */
.top-bar .divider {
  width: 1px;
  height: 14px;
  background: #fff;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease;
  will-change: transform;
}
.site-header.hide-header {
  transform: translateY(-100%);
}
.site-header .header-main .navbar-nav {
  gap: clamp(20px, 2vw, 40px);
  padding-block: 30px;
}
.site-header .header-main .navbar {
  gap: 40px;
}
.site-header .header-main .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .header-main .navbar .nav-link {
  color: #263946;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0px;
  padding: 0;
}
.site-header .header-main .navbar .nav-link.active, .site-header .header-main .navbar .nav-link.show {
  color: #001625;
}
.site-header .header-main .navbar .nav-link:focus, .site-header .header-main .navbar .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
/* ==========================================
  Homepage
========================================== */
.accreditations-affiliations .image-wrapper {
  border: 1px solid rgba(42, 50, 22, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 136px;
}
.rated-best .image-gallery {
  border-radius: 8px;
  border: 1px solid #D3DAE1;
  background: #FFF;
}
.rated-best .image-gallery .image-wrapper {
  padding: 28px 16px;
  border-right: 1px solid #D3DAE1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rated-best .image-gallery .row > div:last-child .image-wrapper {
  border-right: 0;
}
@media (min-width: 575px) and (max-width: 767px) {
  .rated-best .image-wrapper {
    border-right: 1px solid #D3DAE1;
    border-bottom: 1px solid #D3DAE1;
  }
  .rated-best .row > div:nth-child(3) .image-wrapper, .rated-best .row > div:nth-child(4) .image-wrapper {
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .rated-best .sliderCol {
    flex: 0 0 calc(80% - 40px) !important;
  }
}
.faq-section .accordion-item {
  border-bottom: 1px solid #2A32161A !important;
  padding-bottom: 27px;
  background: transparent;
}
.faq-section .accordion-item .accordion-button {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.faq-section .accordion-item .accordion-button::after {
  margin-left: 0;
  background-image: url('https://blacklistedagency.com/projects/expressurgent/wp-content/uploads/2026/05/faq-plus-icon.svg');
  width: 32px;
  height: 32px;
  background-size: cover;
  position: relative;
  top: 3px;
  transform: none;
}
.faq-section .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url('https://blacklistedagency.com/projects/expressurgent/wp-content/uploads/2026/05/faq-minus-icon.svg');
  transform: none;
}
.faq-section .accordion-item:last-child {
  border-bottom: none !important;
}
.urgent-treatment-center .image-wrapper img {
  height: 240px;
  object-fit: cover;
}
.pagination-numbers .icon-wrapper {
  border: 1px solid #D86B28;
  border-radius: 100px;
  padding: 8px 10px 10px 10px;
  display: block;
}
.pagination-numbers .page-numbers {
  color: #263946B2;
  font-weight: 800 !important;
}
.pagination-numbers .page-numbers.current {
  color: #D86B28;
}
.what-patient-says .separator {
  background: #1A5579;
  width: 1px;
  height: 67px;
}
.what-patient-says .review-wrapper {
  border-radius: 8px;
  border: 1px solid rgba(0, 22, 37, 0.11);
  height: 100%;
  border-top: 2px solid #1A5579;
}
.what-patient-says .review-wrapper .review-column {
  gap: clamp(20px, 3vw, 32px);
}
.what-patient-says .review-wrapper .custom-separator {
  background: #1A5579;
  width: 12px;
  height: 2px;
}
/* ==========================================
  Common Banner
========================================== */
.contact-banner {
  position: relative;
}
.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.contact-banner .contact-banner-overlay {
  position: relative;
}
.contact-banner .contact-banner-overlay .underline {
  border: 2px solid #D86B28;
  width: 60px;
}
.certifications-section .certifications-card {
  border-radius: 8px;
  padding: 24px;
  background: #F6F9FC;
}
.certifications-section .certifications-card .card-image {
  padding: 25px;
  background: #D86B28;
  margin-bottom: 24px;
  border-radius: 100%;
}
.certifications-section .certifications-card .border-bottom {
  border-radius: 40px;
  background: #D86B28;
  width: 54px;
  height: 3px;
}
.certifications-section .certifications-card .contact-certification-card {
  width: 30px;
  height: 30px;
}
/* ==========================================
  Footer
========================================== */
.main-footer .social-icons-footer {
  max-width: 220px;
  margin-left: auto;
}
.main-footer .custom-btn-text {
  font-size: clamp(12px, 1.2vw, 14px);
}
@media (max-width: 1200px) {
  .main-footer .social-icons-footer {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .main-footer .social-icons-footer img {
    width: 32px;
  }
}
.recent-posts .image-wrapper img {
  height: clamp(220px, 14vw, 260px);
  object-fit: cover;
  border-radius: 6px;
}
.our-services .box-wrapper {
  border-radius: 6px;
  border: 1px solid rgba(42, 50, 22, 0.16);
  padding: clamp(24px, 3vw, 40px) clamp(14px, 3vw, 20px);
  padding: 0px !important;
}
.our-services .box-wrapper-content {
  padding: clamp(24px, 3vw, 40px) clamp(12px, 3vw, 20px);
}
.our-services .primary-description p {
  margin-bottom: 0px;
}
/* ==========================================
  Single Blog
========================================== */
.blog-content h2 {
  font-size: clamp(22px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-block: 24px;
}
.blog-content h3 {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  margin-block: 24px;
}
.blog-content p, .blog-content li {
  color: #263946;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.5;
}
.blog-content strong, .blog-content b {
  font-weight: 600 !important;
}
.blog-content li {
  margin-bottom: 16px;
}
/* ==========================================
  Single Service
========================================== */
.single-service-banner img {
  height: 60vh;
}
.single-service-multi .card-image {
  padding: 0px !important;
  background: none !important;
}
.single-service-multi .card-image img {
  width: 100px !important;
  height: 100px !important;
}
.content-banner-bg {
  background: #D86B28;
  border-radius: 8px;
  padding: 20px;
}
.content-banner-bg .primary-description {
  max-width: 600px;
}
@media (max-width: 991px) {
  .content-banner-bg .border-custom {
    border-right: 0px !important;
  }
}
@media (max-width: 767px) {
  .content-banner-bg .image-content {
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
  }
}
.content-section-single-service .primary-description p {
  margin-bottom: 8px;
}
/* ==========================================
  Screening Service
========================================== */
.screening-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.screening-banner .primary-description {
  max-width: 800px;
  margin: auto;
}
.screening-banner .container, .screening-banner .main-wrapper {
  z-index: 2;
}
.popular-screenings {
  background-color: #F7F5F2;
}
.popular-screenings .col-pricing:nth-child(1) .pricing-card {
  animation-delay: 0s;
}
.popular-screenings .col-pricing:nth-child(2) .pricing-card {
  animation-delay: 0.13s;
}
.popular-screenings .col-pricing:nth-child(3) .pricing-card {
  animation-delay: 0.26s;
}
.popular-screenings .pricing-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateY(28px);
  animation: ps-fade-up 0.55s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.popular-screenings .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}
.popular-screenings .pricing-card--featured {
  border-color: #D86B28;
  box-shadow: 0 0 0 3px rgba(216, 107, 40, 0.18), 0 4px 24px rgba(0, 0, 0, 0.07);
}
.popular-screenings .pricing-card--featured:hover {
  box-shadow: 0 0 0 3px rgba(216, 107, 40, 0.18), 0 16px 48px rgba(0, 0, 0, 0.13);
}
.popular-screenings .pricing-card--featured .card-header-zone {
  background: linear-gradient(90deg, #D86B28 0%, #F8975C 100%);
  border-bottom-color: transparent;
}
.popular-screenings .pricing-card--featured .package-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.popular-screenings .pricing-card--featured .package-name, .popular-screenings .pricing-card--featured .sub-heading {
  color: #fff;
}
.popular-screenings .pricing-card--featured .package-tagline {
  color: rgba(255, 255, 255, 0.8);
}
.popular-screenings .card-header-zone {
  border-bottom: 1px solid #E8E4DF;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.popular-screenings .best-value-ribbon {
  top: 14px;
  right: -28px;
  background: #fff;
  color: #D86B28;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 2.4rem;
  transform: rotate(42deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.popular-screenings .package-badge {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 108px;
  background: rgba(216, 107, 40, 0.08);
  color: #D86B28;
  margin-bottom: 0.75rem;
}
.popular-screenings .price-currency {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 0.55rem;
}
.popular-screenings .card-divider {
  border: none;
  border-top: 1px solid #E8E4DF;
  opacity: 1;
}
.popular-screenings .features-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #263946;
}
.popular-screenings .feature-item {
  border-bottom: 1px solid #E8E4DF;
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: #001625;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.popular-screenings .feature-item:last-child {
  border-bottom: none;
}
.popular-screenings .feature-item:hover {
  color: #D86B28;
}
.popular-screenings .feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(216, 107, 40, 0.08);
}
.popular-screenings .feature-icon svg {
  width: 11px;
  height: 11px;
}
.popular-screenings .feature-icon svg path {
  stroke: #D86B28;
}
.popular-screenings .btn-book {
  height: 46px;
  padding: 10px 24px;
  border-radius: 108px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}
.popular-screenings .btn-book--outline {
  background: transparent;
  color: #D86B28;
  border: 1px solid #D86B28;
}
.popular-screenings .btn-book--outline:hover {
  background: #D86B28;
  color: #fff;
  box-shadow: 0 6px 20px rgba(216, 107, 40, 0.35);
  transform: translateY(-1px);
}
.popular-screenings .btn-book--fill {
  background: linear-gradient(90deg, #D86B28 0%, #F8975C 100%);
  color: #fff;
  border: 1px solid transparent;
}
.popular-screenings .btn-book--fill:hover {
  background: linear-gradient(90deg, #B84D1F 0%, #D86B28 100%);
  box-shadow: 0 8px 24px rgba(216, 107, 40, 0.45);
  transform: translateY(-1px);
}
@keyframes ps-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================
  Screening Modal
========================================== */
.screening-modal .modal-header {
  background: #e67e22;
}
.screening-modal #kajabi-form .kajabi-form__btn {
  max-width: 100%;
}
.screening-modal .kajabi-form--inline .kajabi-form__content fieldset .text-field, .screening-modal .kajabi-form--inline .kajabi-form__content fieldset .email-field {
  flex-basis: 100%;
}
/* ==========================================
  Responsive Design
========================================== */
@media (max-width: 1200px) {
  .kajabi-form--inline .kajabi-form__content fieldset .email-field {
    flex-basis: 49%;
  }
  .kajabi-form--inline .kajabi-form__content fieldset .text-field {
    flex-basis: 49.4%;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 120px;
  }
  .kajabi-form--inline .kajabi-form__content fieldset .email-field, .kajabi-form--inline .kajabi-form__content fieldset .text-field {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .tab-slider {
    position: relative;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
  }
  .sliderColTab {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }
}
@media (max-width: 575px) {
  .mobile-slider {
    position: relative;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
  }
  .sliderCol {
    flex: 0 0 calc(100% - 40px) !important;
    scroll-snap-align: start;
    padding-right: 16px;
  }
  .w-lg-auto {
    width: 100%;
  }
}
