body {
  font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    background-color: #ffffff;

    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #222E50;
    font-family: 'Exo 2', sans-serif;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 16px;
}

a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2CD72C;
  text-decoration: none;
}

a:hover {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #006d41 !important;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #006C41;
}

table, th, td {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #006C41;
}
ul, ol, li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #006C41;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    max-width: 100%;
    background-color: #006C41;
}
.logo {
    max-width: 300px;
}
.call {
    display: flex;
    align-items: center;
}

.main-text {
    color: #F6F6FD;
    line-height: 1.4;
    font-size: 18px;
}

.sub-text {
    font-size: 12px;
}

.highlight-text {
    color: #2CD72C;
    font-weight: 600;
    font-size: 20px;
}

.phone-number {
    color: #F6F6FD;
    font-weight: bold;
    font-size: 20px;
}

nav {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
}

.nav-container.active {
  display: block;
}

nav a {
    flex-grow: 1;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #006C41;
    float: left;
    display: block;
    padding: 14px 10px;
    text-decoration: none;
    border-radius: 0px;
    margin: 0 0px;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 25%, #c0c0c0 50%, #a0a0a0 100%);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

nav a.active {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
    color: #2b3a67;
}
nav a:hover {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
    color: #2b3a67 !important;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5) !important;
}





.hamburger-menu {
    align-self: flex-end;
    display: block;
    cursor: pointer;
    z-index: 3;
}
.bar {
    background-color: #efeff4;
    height: 3px;
    margin: 3px 0;
    width: 30px;
    transition: transform 0.2s ease;
}
.mobile-nav-container.active + .hamburger-menu .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-container.active + .hamburger-menu .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-container.active + .hamburger-menu .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}





.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
main {
    margin: 1in;
    background-color: #f6f6fd;
    padding: 1em;
}
.content img, .first-section img, .second-section img {
    max-width: 400px;
    height: auto;
    margin-top: 30px;
}
.first-section,
.second-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.second-section div,
.first-section img {
    flex: 1;
}
.first-section div,
.second-section img {
    flex: 2;
}

#custom-two-column-list {
    columns: 2;
    padding-left: 20px;
}

#custom-two-column-list li {
    margin-bottom: 0px;
}

table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 2px solid black;
}
th, td {
    padding: 8px;
    text-align: left;
}

.button {
    background-color: #222E50;
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2B3A67;
    color: #ffffff !important;
    font-weight: bold;
}

#video-embed {
  display: flex;
  justify-content: center;
  width: 100%;
}

#video-embed .video-container {
  width: 70%;
  position: relative;
  padding-top: 33.25%;
}

#video-embed .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo-link {
    max-width: 95%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 10px;
}

.about-image {
    margin-top: 50px;
    padding-left: 30px;
        text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-grid img {
  max-width: 25vw;
  width: 100%;
}

.contact-section {
  display: flex;  
  flex-wrap: wrap;
}

.contact-photo {
  flex: 1;
  width: 100%;
  margin-right: 35px;
}

.contact-photo img {
  width: 100%;
  height: auto;
}

.contact-info, 
.contact-map {
  flex: 1;
  padding: 20px;
}

.contact-button {
    background-color: #006d41;
    color: #574633;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    display: block;
    max-width: 60%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #d6821f;
    color: #ffffff !important;
    font-weight: bold;
}

.contact-address  {
    font-size: 9px;
}

#contact-instructions  {
    font-size: 14px;
    margin-top: -10px;
}

footer {
    background-color: #000000;
    color: #f2f2fa;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 20px;
    width: 100%;
}

.footer-bottom {
    max-width: 90%;
}

.footer-link {
    color: #F6F6FD;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex-basis: calc(25% - 10px);
    margin: 5px;
}

.footer-logo {
    width: 250px;
}

.map iframe {
    width: 250px;
    height: 150px;
}

#footer-menu,
#footer-resource-menu {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    max-width: 90%;
    margin-top: 20px;
}

footer, footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer p, footer li, footer ol, footer ul, footer tr, footer td, footer th {
  color: #F6F6FD;
}

footer a {
  color: #F6F6FD;
  text-decoration: none;
}

footer a:hover {
  color: #f2f2fa;
}

#footer-menu a {
  color: #2CD72C;
}

#footer-menu a:hover {
  color: #f2f2fa;
}

.call-now {
    color: #006d41;
    font-weight: 500;
    font-size: 20px;
}

.phone-number {
    font-weight: 600;
    font-size: 20px;
    color: inherit;
    line-height: normal; 
}

@media only screen and (max-width: 768px) {
    .profile-logo-container img {
        max-width: 60vw !important;
    }

    .profile-contact-item i {
        font-size: 4vw !important;
    }

    .profile-contact-item a {
        font-size: 4vw !important;
    }

    .profile-review-box {
        padding: 6vw;
        width: 90% !important;
    }

    .profile-star-rating {
    font-size: 22px !important;
    }
}

.profile-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.profile-logo-container img {
    max-width: 20vw;
    height: auto;
}

#profile-contact {
    padding-bottom: 2vw;
    margin-left: 1.8vw;
}

.profile-contact-item {
    margin-bottom: 10px;
    margin-left: 1.6vw;
}

.profile-contact-item i {
    margin-right: 10px;
}

.profile-contact-item a:hover {
    color: #006C41;
}

.profile-review-box {
    background-color: #ffffff;
    padding: 2vw;
    margin-bottom: 1vw;
    width: 18vw;
    margin-left: 1.7vw;
}

#profile-reviews {
    padding-bottom: 2vw;
    margin-left: 1.2vw;
}

#profile-complaints {
    margin-left: 1.5vw;
}

.profile-star-rating {
    color: #FFD700;
}

.contact-profile-h2 {
    line-height: 1.2;
}

.accreditation-scores {
    list-style-type: none;
    padding-left: 3vw;
    padding-bottom: 2vw;
}

.accreditation-scores li {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.green-row {
    background-color: #006C41;
    color: #ffffff;
    padding-top: 2.5vw;
    padding-bottom: 1vw;
    padding-left: .5vw;
}

.leadership-section {
  margin-bottom: 30px;
}

.team-bios {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.team-bios li {
  display: flex;
  margin-bottom: 20px;
}

.team-member-img {
  max-width: 150px;
  border-radius: 50%;
  margin-right: 20px;
}

.team-member-info {
  flex-grow: 1;
}

.team-member-info h3 {
  margin-top: 0;
}

.team-member-info p {
  margin-bottom: 0;
}



#blog-entries {
  display: flex;
  flex-wrap: wrap;  
}

#blog-left-column,
#blog-middle-column, 
#blog-right-column {
  width: 33.33%; 
  box-sizing: border-box;
  padding: 10px;
}

#blog-left-column img,
#blog-middle-column img,
#blog-right-column img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #blog-left-column,
  #blog-middle-column,
  #blog-right-column  {
    width: 100%;
  }  
}

@media (max-width: 1250px) {
    h1 {
        font-size: 24px !important;
    }
    h4 {
        font-size: 16px !important;
    }
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        width: 80%;
    }

.mobile-banner {
    width: 100%;
    height: auto;
    background-color: white;
    padding-top: 3px;
}

.mobile-banner img {
    width: 100%;
    height: auto;
}

    .call p {
        font-size: 14px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        display: none;
    }
    nav a {
        font-size: 14px;
        padding: 10px 5px;
  	color: #006C41;
    }
    .nav-container.active {
        display: flex;
        flex-direction: column;
    }

  .hamburger-menu {
    z-index: 3;
  }

  .mobile-nav-container.active {
    display: flex;
  }

.mobile-nav-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #efeff4;
    z-index: 2;
}
.mobile-nav-container.active {
  display: flex;
}
.mobile-nav-item {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 25%, #c0c0c0 50%, #a0a0a0 100%);
    color: #006C41;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0px;
    margin: 0 0px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

.mobile-nav-item a {
  text-decoration: none;
  color: #006C41;
}

.mobile-nav-item:hover {
    background: #006C41;
    color: #F6F6FD !important;
}

    .banner {
        display: none;
    }

    main {
        margin: 16px;
    }

    .first-section,
    .second-section {
        flex-direction: column;
    }

.first-section {
    margin-top: 50px;
}

    .first-section img,
    .second-section img {
        width: 80%;
        margin: auto;
        display: block;
	margin-top: -30px;
    }
    .second-section img:nth-child(2) {
        margin-top: 20px;
    }
    table, th, td {
        font-size: 14px;
    }
    .first-section,
    .second-section {
        padding-bottom: 20px;
    }
    .first-section div,
    .second-section div {
        max-width: 100%;
        padding: 0 10px;
    }

    #list1, #list2 {
        columns: 2;
	line-height: .9;
    }
  #video-embed .video-container {
    width: 80%;
    padding-top: 45%;
  }

.logo-link {
    margin-top: 55px;
    text-align: left;
}
  .review-grid {
    grid-template-columns: 1fr; 
  }

  .review-grid img {
    max-width: 80vw;
    width: 100%;
    padding-bottom: 15px;
  }
  .contact-section {
    flex-direction: column;
  }

  .contact-photo,
  .contact-info,
  .contact-map { 
    flex-basis: auto;
    width: 100%;
  }

.footer-col {
        flex-basis: 100%;
}
 
}





@media (min-width: 1250px) {
    .mobile-banner {
        display: none;
    }
    .hamburger-menu {
        display: none;
    }
  .mobile-nav-container {
    display: none;
  }
    main {
        padding-left: 90px;
        padding-right: 90px;
    }
    .first-section,
    .second-section {
        padding-bottom: 50px;
        padding-right: 30px;
    }
    .second-section {
        margin-top: 30px;
    }
    .image1-desktop-padding {
        padding-right: 30px;
    }
    .image2-desktop-padding {
        padding-left: 30px;
    }

    #video-embed {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #list1, #list2 {
        columns: 3;
	line-height: .9;
    }

.provider-button {
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: .6vw;
  padding-top: .6vw;
  margin-bottom: 2.2vw;
  font-size: 1.1vw;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  text-align: center;
  background-color: #006C41;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  line-height: .9;
}

.provider-button:hover {
  background-color: #005d37;
  font-weight: bold !important;
  color: #ffffff !important;
  transform: scale(1.05);
}

.stars-container {
  color: #ffd700;
}

@media only screen and (max-width: 768px) {
  .stars-container {
    display: none !important;
  }
}

#providersList {
  margin-top: 2.2vw;
}

.provider-container {
  display: flex;
  align-items: center;
}

.provider-number {
  color: #006C41;
  font-weight: bold;
  font-size: 1.5vw;
  margin-right: 10px;
  margin-bottom: 2.2vw;
}


.contact-photo img {
  margin-top: 50px;
}

.contact-info {
  margin-top: -3px;
}

.contact-map {
  margin-top: 0px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}
    .footer-bottom {
        min-width: 100%;
        border-top-width: 1px;
        border-bottom-width: 0px;
        border-left-width: 0px;
        border-right-width: 0px;
        border-color: #F6F6FD;
        border-style: solid;
       }
}