:root {
  /* ---------- Brand: Primary (coral/orange — from hero gradient) ---------- */
  --primary:      #6a813a;
  --primary-300:  #6a813a;
  --primary-400:  #6a813a;
  --primary-500:  #6a813a;

  /* ---------- Brand: Secondary (deep navy — for headings) ---------- */
  --secondary:      #F6F7DF;
  --secondary-400:  #ebedb6;
  --secondary-500:  #a3a466;

  /* ---------- Brand: Success  ---------- */
  --success:      #6a813a;
  --success-10:   #EAF4EC; 
  --success-500:  #3FA24A;

  /* ---------- Neutrals ---------- */
  --neutral-100:  #fff;
  --neutral-200:  rgba(252,252,243,0.95);
  --neutral-500:  #393935;
  --neutral-600:  #6B7280;

  /* ---------- Text ---------- */
  --text:         #53534e;

  /* ---------- Typography ---------- */
  --ff-primary:   "Lato",sans-serif;
  --ff-secondary: "Lora",serif;
  --fs-body:      1rem;       /* 16px */
  --fs-h2:        1.75rem;    /* 28px */

  /* ---------- Spacing ---------- */
  --padding:                1.25rem;   /* 20px */
  --double-padding:         2.5rem;    /* 40px */
  --spacer:                 3rem;      /* 48px */
  --text-width-padding:     82rem;     /* max content width */
  --text-width-padding-size: 1.25rem;

  /* ---------- Layout helpers ---------- */
  --max-width-padding: calc(82rem + var(--double-padding));
  --logo:              12.5rem;        /* 200px */

  /* ---------- Effects ---------- */
  --bs: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* ---------- Component-specific ---------- */
  --cta-bg:   var(--primary-300);
  --cta-fg:   #FFFFFF;
  --icons:    var(--primary-500);
  --steps:    var(--secondary-500);
}

html {
  scroll-behavior: smooth;

}



body {
    background: var(--neutral-100);
    font-family: var(--ff-primary);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
    font-size: var(--fs-body);
    -webkit-font-smoothing: antialiased;
}

.freePatientsWrap {
    overflow-x: hidden;
    background: none;
    padding-top: 0 !important;
}

.freePatientsWrap .tymbrel-row {
    margin: 0 !important;
}

.RecallMaxBookButton,
#sticky {
    display: none !important;
}

.freePatients_lp--wrapper {
    padding: 0;   
}

.freePatients_lp--wrapper h1,
.freePatients_lp--wrapper h2,
.freePatients_lp--wrapper h3,
.freePatients_lp--wrapper h4 {
    color: var(--secondary-500);
    text-transform: capitalize;
    font-family: var(--ff-secondary);
}

@media (max-width: 768px) {
    .freePatients_lp--wrapper h1 {
        font-size: var(--fs-h2);
    }
    
    .freePatients_lp--wrapper p.leadin {
        font-size: var(--fs-body);
    }
    
    .freePatients-hero-section {
        padding: 1.5rem 0;
    }
    
    .freePatients-hero-section .form-vertical {
        padding: 1.25rem !important;
    }
    
    
}

.freePatients_lp--wrapper .freePatients_lp--wrapperCol {
    padding: 0 !important;
}

.dc-lp-logo {
    width: 100%;
    padding: 40px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.dc-lp-logo img {
    filter: brightness(0) invert(1);
    width: 100%;
    max-width: 200px;
}

.logo-fullWidth {
    padding: 0 !important;
    position: relative;
    background-color: var(--primary-300);
    width: 100%;
}

.logo-fullWidth .fa {
    border: 1px solid #fafafa;
    border-radius: 50%;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    color: var(--primary-500);
    justify-content: center;
    vertical-align: bottom;
    background: var(--neutral-100);
    display: flex;
    align-items: center;
}

.logo-fullWidth:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.15) 0,
      rgba(255,255,255,0.15) 1px,
      transparent 1px,
      transparent 12px
    );
    opacity: 0.2;
    pointer-events: none;
}


.logo-fullWidth [itemprop="address"] {
    color: #fff;
    text-align: center;
    font-size: small;
}



small {
  margin-top: 15px;
  font-size: 10px;
  color: #333;
  display: block;
  font-style: italic;
}

a {
  color: var(--primary);
  font-weight: 700;
}

.freePatients-main-intro img {
  margin-top: -30px;
  width: 400px !important;
  max-width: 400px !important;
}

.freePatients_clinicInfo {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    color: #fff;
    font-size: small;
    align-items: baseline;
    width: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-top: 2rem;
    border-radius: 20px;
}
.freePatients_clinicInfo--col.address span[itemprop="addressLocality"]:after,
.freePatients_clinicInfo--col.address span[itemprop="addressRegion"],
.freePatients_clinicInfo--col.address span[itemprop="postalCode"],
.freePatients_clinicInfo--col.address span[itemprop="addressCountry"] {
    display: none;
}

@media (max-width: 767px) {
    .freePatients_clinicInfo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 15px;
        max-width: none;
        width: auto;
    }
}


.freePatients_clinicInfo a {
    color: #fff;
    font-size: small;
}

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

.freePatients_clinicInfo .freePatients_clinicInfo--col {
    display: flex;
    align-items: baseline;
    flex-direction: row;
}

@media (max-width: 767px) {
    /* group last two items into a row */
    .freePatients_clinicInfo > .freePatients_clinicInfo--col:nth-last-child(-n + 2) {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* put phone + status on same line */
    .freePatients_clinicInfo {
        align-items: flex-start;
    }
    
    /* add spacing between phone & status */
    .freePatients_clinicInfo > .freePatients_clinicInfo--col.phone {
        margin-right: 1.5rem;
    }
}

.freePatients_clinicInfo .freePatients_clinicInfo--col p {
    margin: 0;
}

@media (max-width: 767px) {
    .freePatients_clinicInfo .freePatients_clinicInfo--col {
        border: none !important;
        padding: 5px 0 !important;
        margin: 0 !important;
    }
    
    .freePatients_clinicInfo .freePatients_clinicInfo--col.phone,
    .freePatients_clinicInfo .freePatients_clinicInfo--col.clock {
        display: none;
    }
    
}

.freePatients_clinicInfo .freePatients_clinicInfo--col.phone {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 10px;
    margin: 0 10px;
}



.freePatients-hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin: 0;
    background-color: var(--primary-300);
    opacity: 1;
    z-index: 1;
    position: relative;
    padding: 3rem 0;
}



.freePatients-hero-section small {
    color: #fff;
}

.freePatients-hero-section:focus {
    outline: none;
}

.freePatients-hero-section::after {
background: 
  linear-gradient(to bottom, rgba(106, 129, 58, 1), rgba(106, 129, 58, 0.75)),
  url(/files/free-new-patients-exam.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-position-y: center;
}

#rc-anchor-container,
.recaptcha-checkbox-border {
    background: rgba(249,249,249,0.5);
}

@media (max-width: 768px) {
    .freePatients-hero-section::after {
        background: var(--primary-300);
    }
}

.freePatients-hero-section h1,
.freePatients-hero-section .leadin {
    color: var(--neutral-100);
    position: relative;
}

.freePatients-hero-section h1 span {
    display: inline-block;
}

.freePatients-hero-section > .tymbrel-col-6 {
  flex: 0 0 calc(1312px / 2); 
  max-width: 50%;             
}


.freePatients-hero-section > .tymbrel-col-6:first-child{
  margin-left:auto;
}
.freePatients-hero-section > .tymbrel-col-6:last-child{
  margin-right:auto;
}


@media (max-width:1312px){
  .freePatients-hero-section > .tymbrel-col-6{
    flex: 0 0 50%;
    max-width:50%;
  }
}
@media (max-width:768px){
    
    .freePatients-hero-section > .tymbrel-col-6:first-child {
        text-align: center;
        padding-bottom: 1rem;
    }
    
    .freePatients-hero-section > .tymbrel-col-6{
        flex: 0 0 100%;
        max-width:100%;
    }
}


@media (max-width: 767px) {
    .freePatients-hero-section h1 a:after {
        width: 15px;
        margin-top: 20px;
    }
}

.freePatients-hero-section h1 a:hover,
.freePatients-hero-section h1 a:hover::after {
    color: var(--secondary-400);
    border-color: var(--secondary-400);
    transition: all 0.2s ease-out;
}


.freePatients-hero-section>.tymbrel-col:last-child .form-vertical {
    padding: 2.5rem;
    border-radius: 1.25rem;
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical input[type="submit"],
.cms-button-success,
.cms-button-primary {
  background: var(--secondary-500);
  color: var(--neutral-500);
  text-shadow: none;
}

@media (max-width: 600px) {
    .freePatients-hero-section>.tymbrel-col:last-child .form-vertical input[type="submit"] {
        width: 100%;
    }
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical input[type="submit"]:hover,
.freePatients-cta .cms-button-success:hover,
.cms-button-success:hover,
.cms-button-primary:hover {
  background: var(--primary-400) !important;
  border-color: var(--primary-400) !important;
  color: #fff !important;
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical {
  background: rgba(238, 240, 240, 0.8);
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical input:not([type="submit"]),
.freePatients-hero-section>.tymbrel-col:last-child .form-vertical select {
  background: #ffffff !important;
  opacity: 0.5;
}

.freePatients-hero-section .form-vertical form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
}



.freePatients-hero-section .form-vertical h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: var(--secondary-500);
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical :nth-child(1 of .form-group) {
    width: 100%;
    margin: 0;
}

.freePatients-hero-section .form-group:not(.ifg-sort) {
    width: 100% !important;
    margin: 0;
}

.freePatients-hero-section .form-group:not(.ifg-sort) .paragraph-layout {
    font-size: 0.9em;
}

.freePatients-hero-section .form-vertical .form-group:nth-child(-n + 6) {
    width: calc(50% - .625rem);
}

.cms-button-primary[itemprop="telephone"]:before {
    font-weight: 900;
    content: "\f095";
    margin-right: 0.5em;
    height: 12px;
    font: normal normal normal 14px/1 FontAwesome;;
}



/* USP*/

.freePatients-usp-title,
.newPatients-usp {
    background: var(--success-10) !important;

}

.freePatients-usp-title h2 {
    color: var(--secondary-500);
}

.newPatients-usp {

    position: relative;
    text-align: center;
    padding: 0 0 2rem 0px;
}

.clinic-features {
  list-style: none;
  padding: 0 1.5rem 1.75rem;
  margin: 2rem auto;
  max-width: 1270px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}



@media (min-width: 901px) {
    /* The connecting line — sits behind the circles */
    .clinic-features::before {
      content: "";
      position: absolute;
      top: 38px;
      left: 15%;      /* starts at center of "Direct billing" */
      right: 15%;     /* ends at center of "New patients welcome" */
      height: 1px;
      background: var(--neutral-200);
      z-index: 0;
    }
}

/*.clinic-features:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: repeating-radial-gradient(circle at 0 100%, rgba(77, 115, 164, 0.45) 0 1px, transparent 1px 28px);*/
/*    opacity: 0.1;*/
/*    pointer-events: none;*/
/*    display: block !important;*/
/*}*/



.clinic-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.65rem;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    color: var(--neutral-600);
    flex: 1 1 0;
    min-width: 0;
    max-width: 210px;
    padding: 0.5rem 10px;
    position: relative;
}

.clinic-features .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--neutral-200);
    border: 1px solid var(--neutral-500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.clinic-features span {
    text-transform: capitalize;
}

.clinic-features svg {
    width: 28px;
    height: 28px;
    color: var(--neutral-600);
}

@media (max-width: 900px) {
  .clinic-features {
    max-width: 600px;
  }
  .clinic-features li {
    flex: 0 0 33.333%;
    max-width: none;
  }
  .clinic-features li:nth-child(3)::after,
  .clinic-features li:last-child::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .clinic-features {
    max-width: 400px;
  }
  .clinic-features li {
    flex: 0 0 50%;
  }
  .clinic-features li:nth-child(2n)::after,
  .clinic-features li:last-child::after {
    display: none;
  }
  .clinic-features li:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 420px) {
  .clinic-features {
    max-width: 100%;
  }
  .clinic-features li {
    flex: 0 0 50%;
    padding: 0.5rem;
  }
  .clinic-features .icon-circle {
    width: 56px;
    height: 56px;
  }
  .clinic-features svg {
    width: 22px;
    height: 22px;
  }
}

/* Reviews */

.freePatients-review {
    background: var(--neutral-100);
    padding: 3.75rem 0;
    width: 100%;
    color: var(--text);
}

.freePatients-review #image-slider {
    width: 100%;
}

@media (max-width: 768px) {
    .freePatients-review #image-slider {
        padding: 0 20px;
        margin: 0;
    }
}

.freePatients-review h2 {
    margin: 20px 0 40px 0 !important;
    color: var(--secondary-500);
}

.freePatients-review .review-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}



.freePatients-review .review-header h3 {
    margin: 0 10px 0 0;
    color: var(--secondary-500);
}

.freePatients-review .review-header .review-stars {
    margin-right: 20px;
}

.freePatients-review .review-header .fa-star {
    color: #F7DC4E;
}

    .splide__arrows .splide__arrow {
        background: transparent;
    }


.freePatients-review .splide__arrow--prev {
    left: -0.5rem;

}
.freePatients-review .splide__arrow--next {
    right: -0.5rem;
}


@media (min-width: 1500px) {
    .freePatients-review .splide__arrow--prev {
        left: -2.5rem;
    }
    
    .freePatients-review .splide__arrow--next {
        right: -2.5rem;
    }
    
    
    .splide__arrows .splide__arrow:focus {
        outline: none;
    }
    
    .splide__arrows svg {
        fill: var(--secondary-500);
    }
}


.freePatients-review .read-more-toggle {
    font-weight: 400;
    color: var(--primary-400);
}

.freePatients-review .read-more-toggle:focus {
    outline: none;
}


.freePatients-review .read-more input {
  display: none;
}

.freePatients-review .read-more .more {
  display: none;
}

.freePatients-review .read-more .toggle-label {
  cursor: pointer;
  color: var(--secondary-500);
  font-weight: 600;
}

/* default label text */
.freePatients-review .read-more .toggle-label::after {
  content: "Read more";
}

/* TOGGLE — this is the critical selector */
.freePatients-review .read-more input:checked ~ .text .more {
  display: inline;
}

.freePatients-review .read-more input:checked ~ .toggle-label::after {
  content: "Read less";
}


@media (max-width: 767px) {
    .freePatients-hero-section .form-vertical .form-group {
        width: 100% !important;
    }
}

.freePatients-hero-section>.tymbrel-col:last-child .form-vertical .form-group:not(:nth-child(-n + 6)) {
    width: calc(50% - .625rem);
}


.freePatients-faq-container {
    padding: 60px 0;
    border-top: 1px solid #f6f6f6;
}

.freePatients-main {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.freePatients-main .tymbrel-col-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
}

@media (max-width: 767px) {
    .freePatients-main {
        padding: 2rem 1.25rem;
        gap: 20px;
    }
    
    .freePatients-main .tymbrel-col,
    .freePatients-main .tymbrel-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        display: block;
    }
    
    .freePatients-main .freePatients_how--col {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

.freePatients-main .tymbrel-col {
    display: flex;
    justify-content: center;
}

.freePatients-main .tymbrel-col {
    padding: 0 !important;
}


.freePatients-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      circle at 0 100%,
      rgba(77,115,164,0.45) 0 1px,
      transparent 1px 28px
    );
  opacity: 0.15;
  pointer-events: none;
}

.freePatients-main > * {
  position: relative;
  z-index: 1;
}

.freePatients-main .tymbrel-col {
    display: flex;
    justify-content: center;

}


@media (max-width: 768px) {
    .freePatients-main .freePatients_how--col {
        min-height: auto;
    }
}

.freePatients-main .freePatients_how--col h3 {
    color: #fff;
}

.freePatients_how--ctaWrapper {
    position: relative;
}

.freePatients_how--ctaWrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    repeating-radial-gradient(
    circle at 0 0,
    rgba(77,115,164,0.45) 0 1px,
    transparent 1px 28px
    );
    opacity: 0.15;
    pointer-events: none;
}

.freePatients_how--CTA {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.freePatients-main .tymbrel-col {
    padding: 0 !important;
}


.freePatients-main .freePatients_how--col {
    background-color: var(--secondary-500);
    padding: 0;
    color: #fff;
    width: 100%;
    transition:
    transform 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out;
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}


.freePatients_how--col:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.freePatients-main .tymbrel-col:nth-child(3) .freePatients_how--col {
    background-color: var(--secondary-500);
}

.freePatients-main .tymbrel-col:nth-child(2) .freePatients_how--col {
    background-color: var(--success);
}


.accordion-faq .accordion {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 20px auto;
    list-style: none;
    width: 100%;
    max-width: 1267px;

}

.accordion-faq .accordion .accordion-item {
    width: 50%;       /* Make each list item take up half the container */
    padding: 5px;    /* Optional: space inside each item */
    box-sizing: border-box;
}

.accordion-faq .accordion .accordion-item .accordion-content {
    text-align: left;
}


@media (max-width: 767px) {
        
    .accordion-faq .accordion {
        max-width: 100%;
    }    
    
    .accordion-faq .accordion .accordion-item {
        width: 100%;
    }
    
    .accordion-faq .accordion .accordion-item a {
        text-align: left;
    }
}

.map-row__details .seo-hours .contactDetails {
    width: 100%;
}

.map-row__details .seo-hours .contactDetails li {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}


/*.map-row-freePatients {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*    max-width: none;*/
/*    margin: 0;*/
/*    background-color: var(--primary-300);*/
/*    padding-block: 4.375rem;*/
/*    opacity: 1;*/
/*    z-index: 1;*/
/*    position: relative;*/
/*}*/

/*.map-row-freePatients > .tymbrel-col-6 {*/
/*  flex: 0 0 calc(1312px / 2); */
/*  max-width: 50%;             */
/*}*/

.map-row-freePatients {
    justify-content: flex-end !important;
    background-color: var(--neutral-200);
    margin-inline:-1.25rem !important;
    width: 100% !important;
}

@media (max-width: 767px) {
    .map-row-freePatients {
        padding: 0 30px;
    }
}

.map-row-freePatients>.tymbrel-col:first-child {
    padding-right: 3.75rem !important;
    padding-block:5.625rem !important}

@media screen and (min-width: 768px) {
    .map-row-freePatients>.tymbrel-col:first-child {
        max-width: 43rem !important;
    }
}

@media screen and (max-width: 1024px) {
    .map-row-freePatients>.tymbrel-col:first-child {
        padding-right:2.5rem !important
    }
}

@media screen and (max-width: 767px) {
    .map-row-freePatients>.tymbrel-col:first-child {
        padding-right:1.25rem !important
    }
}

@media screen and (max-width: 1024px) {
    .map-row-freePatients>.tymbrel-col:first-child {
        padding-block:3.75rem !important
    }
}

@media screen and (max-width: 40rem) {
    .map-row-freePatients>.tymbrel-col:first-child {
        padding-block:3.75rem 1.875rem !important
    }
}

.map-row-freePatients>.tymbrel-col:last-child {
    padding: 0 0 0 1.25rem !important;
    max-width: 60.781rem !important;
}

@media screen and (max-width: 767px) {
    .map-row-freePatients>.tymbrel-col:last-child {
        padding:0 !important
    }
}

.map-row-freePatients iframe {
    width: 100%;
    height: 100%;
    min-height: 18.75rem
}

.map-row-freePatients .leadin {
    margin-bottom: 1.25rem
}

.map-row-freePatients .map-row__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.875rem
}

.map-row-freePatients .map-row__details>div {
    flex-grow: 1
}

.map-row-freePatients .map-row__details>div:first-child {
    width: calc(53% - .9375rem)
}

@media screen and (min-width: 501px) {
    .map-row-freePatients .map-row__details>div:first-child {
        min-width:15rem
    }
}

.map-row-freePatients .map-row__details>div:nth-child(2) {
    width: calc(47% - .9375rem)
}

.map-row-freePatients .map-row__details>div:last-child {
    width: 100%;
    margin-top: .3125rem
}

@media screen and (max-width: 500px) {
    .map-row-freePatients .map-row__details>div {
        width:100% !important
    }
}

.map-row-freePatients .map-row__details h3 {
    margin-bottom: .625rem !important
}

.map-row-freePatients .map-row__details h3:first-child {
    margin-top: 0 !important
}

.map-row-freePatients .map-row__details p {
    margin-top: 0 !important
}

.map-row-freePatients span[itemprop="streetAddress"] {
    display: block
}

.map-row-freePatients .contactDetails {
    margin-bottom: 0 !important
}

.map-row-freePatients .contactDetails strong {
    width: 6.5625rem !important
}



@media screen and (max-width: 500px) {
  .freePatients-main-intro img {
    max-width: 250px !important;
  }
}

#sticky.dc-sticky-lp-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sticky.dc-sticky-lp-cta p {
    margin: 0;
    height: 35px;
}

#sticky.dc-sticky-lp-cta .phone a {
    padding: 10px;
    height: auto;
    background: var(--primary);
    border: none;
    box-shadow: none;
}

#sticky.dc-sticky-lp-cta .cms-button-secondary {
    height: auto;
    padding: 10px;
    border: none;
    box-shadow: none;
    background: var(--success);
    color: #fff;
    font-weight: 400;
}

#sticky.dc-sticky-lp-cta .cms-button-secondary:focus {
    color: #fff;
}


.full-width-img:not(.cmsi-layout-container) {
  max-width: none !important;
  margin: 0;
  -webkit-justify-content: center;
  justify-content: center
}

.full-width-img:not(.cmsi-layout-container) .tymbrel-col-6 {
  max-width: 60rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0
}

@media screen and (max-width: 48rem) {
  .full-width-img:not(.cmsi-layout-container) .tymbrel-col-6+.tymbrel-col-6 {
    padding-top: 0
  }
}

.full-width-img:not(.cmsi-layout-container) img:not(.freePatients-logo) {
  -webkit-transform: scale(1.02);
  transform: scale(1.02)
}

.full-width__text {
  width: 100%;
  max-width: 1312px;
  padding-top: var(--spacer);
  padding-bottom: var(--spacer)
}

@media screen and (min-width: 48.0625rem) {
  .full-width__text {
    max-width: var(--text-width-padding)
  }
}

.full-width-img--left .tymbrel-col:first-child {
  overflow: hidden
}

.full-width-img--left .tymbrel-col:first-child p {
  height: 100%
}

.full-width-img--left .tymbrel-col:first-child img:not(.freePatients-logo) {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover
}

@media screen and (min-width: 48.0625rem) {
  .full-width-img--left .tymbrel-col:first-child {
    padding-right: 0
  }
}

.full-width-img--left .full-width__text {
  margin-right: auto;
  padding-right: var(--padding);
  padding-left: var(--text-width-padding-size)
}

.full-width-img--right .tymbrel-col:last-child {
  overflow: hidden;
  padding-right: 0
}

.home .full-width-img--right .tymbrel-col:last-child {
  padding-left: 0
}

.full-width-img--right .tymbrel-col:last-child p {
  height: 100%
}

.full-width-img--right .tymbrel-col:last-child img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover
}

@media screen and (min-width: 48.0625rem) {
  .full-width-img--right .tymbrel-col:last-child {
    padding-left: 0;
    -webkit-order: -1;
    order: -1
  }
}

.full-width-img--right .full-width__text {
  margin-left: auto;
  padding-left: var(--padding);
  padding-right: var(--text-width-padding-size)
}

.centre,
.center {
  text-align: center
}

.freePatients-logo {
  width: 15.625rem;
  max-width: 100%
}

@media screen and (min-width: 31.3125rem) {
  .freePatients-logo {
    width: 20rem;
    max-width: 20rem
  }
}

.freePatients-top {
  background: var(--secondary);
  text-align: center;
  color: #fff;
  font-weight: 600;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
  font-size: .91875rem
}

@media screen and (min-width: 48.0625rem) {
  .freePatients-top {
    font-size: 1.05rem
  }
}

@media screen and (min-width: 80.0625rem) {
  .freePatients-top {
    font-size: 1.3125rem
  }
}

@supports (font-size: clamp(.7875rem, calc(2vw + 0.5rem), 1.3125rem)) {
  .freePatients-top {
    font-size: clamp(.7875rem, calc(2vw + 0.5rem), 1.3125rem)
  }
}

.freePatients-hero>.tymbrel-col {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  text-align: center
}

@media screen and (max-width: 48rem) {
  .freePatients-hero>.tymbrel-col {
    -webkit-flex-direction: column;
    flex-direction: column
  }
}

@media screen and (min-width: 48.0625rem) {
  .freePatients-hero>.tymbrel-col {
    text-align: left;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center
  }
}

.freePatients-hero>.tymbrel-col .tymbrel-col:first-child {
  display: none
}

@media screen and (min-width: 31.3125rem) {
  .freePatients-hero>.tymbrel-col .tymbrel-col:first-child {
    display: block
  }
}

@media screen and (min-width: 48.0625rem) {
  .freePatients-hero>.tymbrel-col .tymbrel-col:first-child {
    height: 100%
  }
}

.freePatients-hero>.tymbrel-col p.leadin {
  color: #666;
  margin-top: 1.5rem;
  margin-bottom: 2.375rem
}

.freePatients-hero>.tymbrel-col p:last-child a {
  margin-bottom: 0
}

.freePatients-hero-color>.tymbrel-col .tymbrel-col:last-child {
  background: var(--primary-300)
}

.freePatients-main {
  --max-width-padding: calc(87.25rem + var(--double-padding));
  padding-top: 2.8125rem;
  padding-bottom: 3.4375rem
}

.freePatients-main-intro {
    padding: 2.875rem 0;
    position: relative;
    width: 100%;
    background: var(--neutral-200);
}


@media screen and (min-width: 64.0625rem) {
  .freePatients-main-intro {
    padding-top: 4.125rem
  }
}

.freePatients-main-intro img {
  width: var(--logo);
  max-width: var(--logo)
}

@media screen and (max-width: 31.25rem) {
  .freePatients-main-intro img {
    max-width: 100%
  }
}

.freePatients-main-intro p.leadin {
  max-width: 75ch;
  margin-left: auto !important;
  margin-right: auto !important;
  color: var(--text)
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-main {
    padding-top: 4.0625rem;
    padding-bottom: 4.6875rem
  }
}

.freePatients-main-outro {
  padding-bottom: 2.25rem
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-main-outro {
    padding-bottom: 2.875rem
  }
}

.freePatients-main svg {
  width: 6.25rem
}

.freePatients-main svg .st0,
.freePatients-main svg .st1 {
  fill: var(--icons)
}

.freePatients-cta {
  background: var(--cta-bg);
  color: var(--cta-fg);
  padding: 3.0625rem 0 3.375rem
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-cta {
    padding: 4.3125rem 0 4.625rem
  }
}

.freePatients-cta h2 {
  color: inherit;
  margin-bottom: 1.875rem
}

.freePatients-process-container {
  position: relative;
  z-index: 0;
  padding: 3rem 0 5.375rem;
  box-shadow: .1875rem 0 1.25rem 0 rgba(0, 0, 0, 0.16)
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-process-container {
    padding: 4.25rem 0 7.25rem
  }
}

.freePatients-process-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://d2l4d0j7rmjb0n.cloudfront.net/agency/19/files/freePatients-texture-blue-1.svg") center no-repeat;
  background-size: cover;
  opacity: 0.2;
  z-index: -1
}

.freePatients-process-intro h2 {
  margin-bottom: 1.5625rem
}

.freePatients-process {
  --max-width-padding: calc(78.5rem + var(--double-padding));
  padding-top: 3.0625rem
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-process {
    padding-top: 4.3125rem
  }
}

.freePatients-process__wrapper {
  height: 100%;
  box-shadow: var(--bs);
  background: #fff;
  padding: 20px;
}

.freePatients-process__wrapper.dc-vertical {  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.freePatients-process .tymbrel-col {
  width: 100%
}

.freePatients-process__wrapper svg .st0 {
    fill: var(--primary);
}

.freePatients-process__wrapper h6 {
    color: var(--primary);
}

@media screen and (min-width: 40.0625rem) {
  .freePatients-process .tymbrel-col {
    width: 50%
  }

  .freePatients-process .tymbrel-col:nth-child(2) {
    padding-top: 0 !important
  }
}

@media screen and (max-width: 64rem) and (min-width: 48.0625rem) {
  .freePatients-process .tymbrel-col:last-child {
    padding-top: var(--double-padding) !important
  }
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-process .tymbrel-col {
    width: 33.333%
  }
}

.freePatients-process__text {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 2rem 0;
}

.freePatients-process__step {
  color: var(--steps);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 0;
  margin-bottom: .625rem
}

.freePatients-process__step+h3 {
  margin-top: 0
}

.freePatients-process img {
  display: block;
  width: 100%
}

.freePatients-form {
  padding: 4.3125rem 0 5.125rem
}

@media screen and (min-width: 64.0625rem) {
  .freePatients-form {
    padding: 5.5625rem 0 7.625rem
  }
}

.freePatients-form .cms-button-primary:before,
.freePatients-form .cms-button-primary:after,
.freePatients-form .cms-button-secondary:before,
.freePatients-form .cms-button-secondary:after,
.freePatients-form .cms-button-success:before,
.freePatients-form .cms-button-success:after,
.freePatients-form .cms-button-alert:before,
.freePatients-form .cms-button-alert:after {
  display: none
}

.freePatients-form h2 {
  margin-bottom: 1.875rem
}

.form-vertical {
  max-width: 62.5rem;
  margin: var(--padding) auto 0
}

  .mobile-sticky-phone {display: none}

@media (max-width: 768px) {
  .mobile-sticky-phone {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    z-index: 9999;
    margin-bottom: -5px;
    display: block;
  }

  .mobile-sticky-phone a {
    display: block;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-sticky-phone a:after {
      display: none;
  }
  .mobile-sticky-phone a:before {
    content: "\f095";
    font-weight: 900;
    margin-left: 8px;
    font-family: FontAwesome;
    font-weight: normal;
    padding-right: 0.5rem;
  }
}

footer {
    background: var(--success-10);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.875rem var(--padding) 2.875rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 64.0625rem) {
  footer {
    padding: 4.25rem var(--padding) 4.25rem;
  }
}

footer img {
  width: 100%;
  max-width: 200px;
}

footer [itemprop="address"] {
  margin: 0;
  text-align: center;
}

/*# sourceMappingURL=style-service-landing-page.css.map */


.freePatients-logo {
  width: 17.526rem;
}

[itemprop="address"] {
  color: #333;
}

.full-width-img:not(.cmsi-layout-container),
.freePatients-cta.tymbrel-row:not(.cmsi-layout-container),
.freePatients-process-container,
.freePatients-faq-container {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}


.freePatients-hero .tymbrel-col-6:first-child img {
  display: block;
}

footer img {
  display: inline-block;
}

@media only screen and (min-width: 109.375rem) {
  .freePatients-hero .tymbrel-col .tymbrel-col-6:last-child {
    padding-top: var(--double-padding);
    padding-bottom: var(--double-padding);
  }
}

@media only screen and (max-width: 48rem) {
  .freePatients-logo {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 31.25rem) {
  footer img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  footer img {
    max-width: 150px;
    width: 100%;
  }
}

.freePatients-form>.tymbrel-col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  