/**
 * Theme Name: Depasquale & Cole
 * Author: edwardluna.design
 * Version: 1.0
 **/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Libre Baskerville';
	font-weight: 400;
}

/* GENERAL STYLES - USED FOR COMMON STYLES ON FRONT PAGE */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-header small {
    text-transform: uppercase;
    font-size: 1em;
    display: block;
    font-family: 'Libre Baskervile';
}

.section-header h2 {
    font-family: 'Libre Baskervile';
    font-size: 2.25rem;
}

.section-header p {
    font-size: .8rem;
    line-height: 1.5rem;
}

.section-header button {
    padding: 1em 2em;
    background: #ffa555;
    border: none;
    color: #101820;
    font-size: 1em;
    max-width: 14em;
    margin: 0 auto;
}

.section-content p {
    font-size: .8rem;
    line-height: 1.5rem;
}

button {
    cursor: pointer;
}

/*
    GENERAL STYLES END
    NOTE: THE FOLLOWING STYLES ARE BASED ON THE ORDER
    OF SECTIONS ON THE FRONT PAGE
*/

/* HEADER - NAVIGATION */
.site-nav {
	height: 4.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease-in-out;
    padding: .5em 2em;
}

.site-nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-toggle {
    color: #fff;
}

.site-nav.scrolled .menu-toggle {
    color: #000;
}

.site-nav.scrolled .brand-name {
    color: #101820;
}

.about-page nav li a {
    color: #fff;
}

.services-page nav li a {
    color: #fff;
}

.contact-page a.brand-name {
    color: #101820;
}

.single nav li a {
	color: #fff;
}

a.brand-name {
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
}

.logo img {
	height: 100%;
	width: auto;
}

.desktop-nav {
	display: none;
}

.primary-menu {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.primary-menu a {
    text-decoration: none;
    color: #101820;
    font-size: 1rem;
}

/* Hamburger Icon (Mobile) */
.menu-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transform: rotate(180deg);
}

/* Slide-in Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    padding: 2rem 1rem;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
	font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.mobile-menu-items {
    padding: 3rem 0 0 0;
    margin: 0;
}

.mobile-menu-items li {
	list-style-type: none;
    margin-bottom: 1.5rem;
}

.mobile-menu-items a {
    text-decoration: none;
    color: #101820;
    font-size: 1.2rem;
}

/* Responsive Breakpoint */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .menu-toggle,
    .mobile-menu {
        display: none;
    }

    .primary-menu {
        gap: 1.65em;
    }

    .primary-menu a {
        color: #fff;
    }

    .site-nav.scrolled a {
        color: #101820;
    }
}

@media (max-width: 768px) {
    .about-page nav li a {
        color: #101820;
    }
    .services-page nav li a {
        color: #101820;
    }
    .mobile-menu-items a {
        color: #101820;
    }

    .contact-page .menu-toggle {
        color: #101820;
    }
}

@media (min-width: 992px) {
    .primary-menu a {
        color: #101820;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-content {
    display: flex;
    flex-direction: column;
    height: 100%
}

.hero-copy {
    flex: 1;
    background: #101820;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-copy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2em;
}

.hero-copy-wrapper button {
    padding: 1em 2em;
    background: #ffa555;
    border: none;
    color: #fff;
    font-size: 1em;
}

.hero-copy small {
    text-transform: uppercase;
    color: #bababa;
}

.hero-copy-wrapper h3 {
    font-size: .8rem;
    line-height: 1.75em;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .hero-copy-wrapper {

    }
}

@media (min-width: 992px) {
    .hero-copy small{
        text-align: left;
    }
    .hero-content {
        flex-direction: row;
    }

    .hero-copy-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        max-width: calc(100% / 1.25);
        text-align: left;
    }

    .hero-copy-wrapper h1 {
        font-size: 3rem;
    }

    .hero-copy-wrapper h3 {
        font-size: .9rem;
    }
}

/* SERVICE PAGES HERO STYLES */
.hero-service {
	height: 60vh;
}

.hero-service-content {
	background: #101820;
	color: #fff;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-service-copy h1 {
    font-size: 3em;
    margin: 1rem 0;
}

.hero-service-copy p {
    font-size: .8em;
    line-height: 1.75em;
}

.hero-service-copy small {
    text-transform: uppercase;
    color: #bababa;
}

@media (max-width: 992px) {
	.hero-service-copy {
		padding: 2em;
	}
}

@media (min-width: 992px) {
	.hero-service-copy {
		max-width: calc(100% / 2);
	}
}
/* SCROLLING BANNER */

.services-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-top: 1px solid #ffa555;
    border-bottom: 1px solid #ffa555;
}

.services-marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.services-marquee {
    display: flex;
    background: #101820;
}

.service-card {
    min-width: 150px;
    padding: 1rem;
    text-align: center;
    white-space: nowrap;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card h3 {
    margin-right: 2rem;
}

/* Animation */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ^^ SCROLLING BANNER END */

/* FRONT PAGE ABOUT SECTION */

.about {
    background: #101820;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about .section-header, .section-content {
    text-align: center;
}

.about-content p {
    text-align: center;
    font-size: .8rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cred-item {
    width: calc(100% / 2 - .5em);
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25em;
}

.cred-item span {
    font-size: 2.5rem;
}

@media (min-width: 992px) {
    .about {
        flex-direction: row;
        padding: 8em;
    }

    .about .section-header, .section-content {
        width: 50%;
        text-align: left;
        align-items: flex-start;
    }

    .about .section-header {
        display: flex;
        justify-content: center;
    }

/*    .about .section-header small, h2 {
        max-width: calc(100% / 1.25);
    }*/

    .about .section-header button {
        margin: 0;
    }

    .about .section-content {
        max-width: calc(100% / 2);
    }

    .credentials {
        flex-wrap: nowrap;
        margin-top: 2em;
    }
}

/* PRACTICE AREAS */

.practice-areas {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
}

.practice-areas-header small {
    text-transform: uppercase;
    font-size: 1em;
    display: block;
    font-family: 'Libre Baskervile';
}

.practice-areas-header h2 {
    font-size: 2.25rem;
}

.practice-areas-header .section-header p {
    font-size: .85rem;
    line-height: 1.5rem;
}

.practice-areas ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.practice-areas ul li {
    color: #fff;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(16, 24, 32, .2);
}

.practice-areas ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    color: #101820;
    width: 100%;
    padding: .8em 0;
}


.practice-areas ul li > span {
    font-size: .8rem;
    line-height: 1.125em;
    display: none;
}

.practice-areas ul li button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    color: #ffa555;
}

.practice-areas ul li button span{
    color: rgba(16, 24, 32, 1);
    font-weight: light;
    transform: rotate(-45deg);
}

.practice-image {
    width: 100%;
    background-size: 150%;
    background-position: center center;
}

.practice-areas .wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .practice-areas .practice-image {
        height: 20rem;
    }
}

@media (min-width: 992px) {
    .practice-areas {
        flex-direction: row;
        padding: 5rem 0;
        max-width: 1300px;
        margin: 0 auto;
    }

    .practice-areas .wrapper {
        flex: 1;
    }

    .practice-areas .practice-image {
        flex: 1;
    }
}

/* WHY US SECTION */
.why-us {
    background: #fff;
    color: #101820;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-content p {
    font-size: .8rem;
    line-height: 1.5rem;
}

.why-us ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.why-us ul li {
    color: #fff;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(16, 24, 32, .2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #101820;
    width: 100%;
    align-items: center;
}

.why-us ul li > span {
    font-size: .8rem;
    line-height: 1.125em;
}

.why-us ul li button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    color: #101820;
}

.why-us ul li button span{
    color: #101820;
    font-weight: lighter;
}

@media (min-width: 992px) {
    .why-us {
        flex-direction: row;
        padding: 5rem 0;
        max-width: 1300px;
        margin: 0 auto;
    }

    .why-us .section-header {
        flex: 1;
        justify-content: center;
    }

    .why-us .accordion {
        flex: 1;
    }
}

/* ACCORDION - PART OF WHY US*/
.accordion-toggle {
    cursor: pointer;
    margin-bottom: .5rem;
    padding: 0.5em 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.accordion-content {
    height: 0;
    transition: height .15s ease-in-out;
    overflow: hidden;
}

.accordion-content.toggled {
    height: 5rem;
}

/* END WHY US */

/* TEAM SECTION */

.our-team {
    background: #fff;
    color: #101820;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-members .team-overlay {
    background: #fff;
    padding: 1.25rem 1rem;
    align-self: flex-end;
    width: calc(100% - 1.5em);
    margin-bottom: .5rem;
    text-decoration: none;
}

.team-members .team-overlay h3{
    color: #101820;
    text-decoration: none;
}

.team-members-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #101820;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.team-members-contact p {
    font-size: .8rem;
    line-height: 1.25rem;
}

.team-members-contact button {
    background: #ffa555;
    border: none;
    padding: 1rem 2rem;
    color: #fff;
}

@media (max-width: 991px) {
    .team-members span {
        height: 22rem;
        width: auto;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .our-team {
        flex-direction: row;
        padding: 5rem 0;
        max-width: 1300px;
        margin: 0 auto;
    }

    .our-team > * {
        width: calc(100% / 3 - .5rem);
    }

    .our-team > .section-header {
        justify-content: center;
    }

    .team-members {
        display: flex;
        flex-direction: row;
        flex: 2;
    }

    .team-members > span {
        flex: 1;
    }

    .team-members-contact {
        max-width: 15em;
        align-items: center;
        justify-content: center;
    }

    .team-members span {
        width: auto;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
    }

    .team-members span:nth-of-type(2) {
        background-position: 22%;
        background-size: ;
    }

}

/* LOCATION */
.location-section {
    padding: 2rem;
}

.location-section-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    gap: 2rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-info small {
    text-transform: uppercase;
}

.location-info > h2 {
    font-family: 'Libre Baskervile';
    font-size: 2.25rem;
}

.location-info p {
    font-size: .8rem;
}

.location-address {
    background: #101820;
    padding: 1rem;
    color: #fff;
    font-family: 'Libre Baskervile';
}

.map {
    height: 20rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .location-section {
        padding: 8rem 0;
    }

    .location-section-wrapper {
        margin: 0 auto;
        flex-direction: row;
        gap: 0;
    }

    .location-section-wrapper > * {
        flex: 0 0 50%;
    }

    .location-info {
        justify-content: center;
        padding-right: 2rem;
        gap: 1rem;
    }
}

/* FOOTER CTA */

.footer-cta {
    background: #101820;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer-cta h2{
    font-size: 2.25rem;
}

.footer-cta .team-members-contact-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta .team-members-contact-footer button {
    background: #ffa555;
    border: none;
    padding: 1rem 2rem;
    color: #fff;
    width: 15rem;
}

/* FOOTER */

.footer-wrapper {
    background: #101820;
}

.footer {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #fff;
    padding: 2em;
}

.footer .brand {
    font-size: 2.25rem;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.footer-menu {
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 1em;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
}

.footer > span {
    margin-bottom: 1em
}

.footer .brand span {
    font-size: 1rem;
}

@media (min-width: 992px) {
    .footer-cta {
        border-bottom: 1px solid #fff;
    }

    .footer-cta .section-header {
        padding: 5rem 0;
        align-items: center;
    }

   .footer-cta .section-header p{
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.25rem;
        line-height: 1.8rem;
    }

    .footer-cta .section-header h2 {
        font-size: 4rem;
    }

    .footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        max-width: 1300px;
        margin: 0 auto;

    }

    .footer > * {
        height: 100%;
        width: calc(100% / 3 - .5em);
    }

    .footer .brand {
        justify-content: center;
        flex-shrink: 0;
    }

    .footer .brand span {
        font-size: 1rem;
    }
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact h3 {
    margin-bottom: 1em;
}

hr {
    width: 100%;
    height: 1px;
    background: white;
    margin: 1em 0;
}

.phone, .email {
    display: flex;
    align-items: center;
}

.phone > span, .email > span {
    margin-right: 1rem;
}

/* ABOUT PAGE STYLES */

.about-pg-services > li {
    flex-direction: column;
    border: 1px solid rgba(16, 24, 32, .2);
    padding: 2rem !important;
    height: 12rem;
    justify-content: center !important;
}

.about-pg-services > li p {
    font-size: .7em;
}

@media (min-width: 992px) {
    .about-practice {
        flex-direction: column !important;
    }

    .about-pg-services {
        flex-direction: row !important;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .about-pg-services li {
        width: calc(100% / 4 - 1em) !important;
        height: 15rem;
    }
}

/* CONTACT PAGE STYLES */
.contact-header {
    height: 100vh;
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-wrapper {
    min-height: 10rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    flex-shrink: 0;
    justify-content: space-evenly;
    padding: 1rem;
}

.contact-form {
    flex: 1;
    flex-shrink: 0;
}

.methods-header {
    display: flex;
    flex-direction: column;
}

.methods-header small {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.methods-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.methods-footer span {
    font-size: .8rem;
}

@media (min-width: 992px) {
    .contact-header {
        height: 85vh;
    }
    .contact-wrapper {
        flex-direction: row;
    }   
}

/* CONTACT FORM STYLES */

.contact-form-field input, textarea {
    border: 1px solid #e1e1e1;
    padding: 1em;
}

.contact-form-btn {
    background: #101820;
    width: 100%;
    color: #fff;
    padding: 1em;
    border: none;
}

.contact-form-field label {
    font-family: 'Libre Baskervile' !important;
    font-size: 1.2em !important;
    font-weight: normal !important;
}

/* TESTIMONIAL SECTION */
.testimonials {
    background: #101820;
    padding: 2rem;
}

.testimonials .section-header {
    margin-bottom: 2rem;
}

.testimonials .section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials .section-wrapper .section-header {
    color: #fff;
}

.testimonial-carousel {
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-slides {
    display: flex;
    gap: 1em;
    transition: transform 0.3s ease;
}

.testimonial-card {
    width: 100%;
    max-width: 24em;
    height: 20em;
    flex-shrink: 0;
    background: #fff;
    color: #101820;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card span {
    font-size: .8rem;
    line-height: 1.5em;
}

.testimonial-card small {
    font-size: .7rem;
}

.testimonial-controls {
    display: flex;
    gap: .5rem;
}

.testimonial-controls button {
    height: 4em;
    width: 3.5em;
    background: #ffa555;
    border: none;
    color: #101820;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (min-width: 992px) {
    .testimonials {
        padding: 5rem 0;
    }
    .testimonials .section-header {
        width: calc(100% / 2);
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 2rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-section-information {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-section-information > .header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-section-information > .header > small {
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-section-information > .header  h2 {
    font-family: 'Libre Baskervile';
    font-size: 2.25rem;
}

.contact-section-information {
    flex: 0 0 50%;
}

.contact-section-form {
    flex: 0 0 50%;
}

.contact-footer {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact-footer span {
    font-size: .8rem;
}

@media (min-width: 992px) {
    .contact-section {
        flex-direction: row;
    }

    .contact-section-information {
        justify-content: space-between;
    }
}

/* ABOUT EXCERPT */

.about-section {
    background: #101820;
    padding: 2rem;
}

.about-section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-excerpt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
    text-align: center;
}

.about-excerpt small {
    text-transform: uppercase;
}

.about-excerpt h2 {
    font-family: 'Libre Baskervile';
    font-size: 2.25rem;
}

.about-excerpt-cta {
    padding: 1rem 2rem;
    background: #ffa555;
    border: none;
    color: #101820;
    font-size: 1.25rem;
    font-family: 'Libre Baskervile';
    max-width: 16rem;
}

.about-section-credentials {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section-credentials p {
    text-align: center;
    font-size: .8rem;
    line-height: 1.25rem;
}

.about-credentials {
    display: flex;
}

.about-credentials > * {
    flex: 1;
    display: flex;
    align-items: center;
}

.credential-item {
    display: flex;
    flex-direction: column;
}

.credential-item span {
    font-size: 1.7rem;
}

.credential-item small {
    font-size: .7rem;
    text-align: center;
}

@media (max-width: 991px) {
    .about-excerpt-cta {
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .about-section-wrapper {
        flex-direction: row;
        padding: 10rem 0;
    }

    .about-section-wrapper > * {
        flex: 0 0 50%;
    }

    .about-excerpt {
        text-align: left;
    }

    .about-excerpt h2 {
        font-size: 3rem;
    }

    .about-section-credentials p {
        text-align: left;
    }

    .credential-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .credential-item span {
        font-size: 2.2rem;
    }

    .credential-item small {
        font-size: .8rem;
    }
}

/* SERVICES PAGE STYLES */
.services-overview {
    padding: 2rem;
}

.services-overview .section-header {
    margin-bottom: 2rem;
}

.service-section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.services-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.services-list a {
	text-decoration: none;
	color: #101820;
	border: 1px solid #dcdcdc;
	padding: .75em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.services-list > a h4 {
    font-size: 1.25rem;
    margin-bottom: .5em;
}

.services-list > a button {
    text-align: left;
}

.services-list > a p {
    font-size: .8rem;
}

.services-list > a > button {
    border: none;
    background: none;
    color: #101820;
    margin-top: .5rem;
}

@media (min-width: 992px) {
    .services-overview {
        padding: 5rem;
    }

    .services-overview .section-header {
        width: calc(100% / 2);
    }

    .services-list {
        gap: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .services-list > a {
        width: calc(100% / 4 - .5rem);
        margin-bottom: 1rem
    }
}

/* SERVICE PAGE STYLES */

.service-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-body {
	max-width: 850px;
	display: flex;
	flex-direction: column;
}

.service-body .wp-block-columns {
	display: flex;
	flex-direction: column;
}

.matters-description {
	text-align: center;
	font-size: 1.15em;
	margin: 6em 0;
}

.matters {
	display: flex;
	flex-direction: column;
	margin: 4em 0 !important;
}

.matters h3 {
	font-size: 1.5em;
}

.matters h5 {
	margin: 2em 0;
}

.matters .wp-block-columns {
	flex-direction: column;
	margin-top: 1em;
}

.matters .service-block {
	gap: .5em;
	display: flex;
	flex-direction: column;
}

.matters .service-block h4 {
	font-size: 1.125em;
}

.matters .service-block p {
	font-size: .9em;
	margin-top: .5em;	
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 2em;
}

.service-approach-block {
	text-align: center;
	margin: 6em 0 !important;
}

.service-approach-block  h2{
	font-size: 2em;
	margin-bottom: 1em;
}

@media (max-width: 992px) {
	.service-body {
		padding: 1.5em;
	}
}

@media (min-width: 992px) {
	.location-section {
		padding: 2em;
	}

	.our-team {
		padding: 2em;
	}

	.practice-areas {
		padding: 2em;
	}

	.testimonials {
		padding: 2em;
	}

	.why-us {
		padding: 2em;
	}
}

/* SINGLE TEAM MEMBER PAGE STYLES */
.team-member-hero {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.team-member-cta {
	flex: 1;
	background: #101820;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	padding: 2em;
}

.team-member-cta h1 {
	font-size: 3rem;
	margin: .35em 0;
}

.team-member-cta p {
	font-size: .8em;
	line-height: 1.65em;
}

.team-member-cta a {
	padding: 1em 2em;
	background: #ffa555;
	border: none;
	color: #fff;
	font-size: 1em;
	width: 16em;
	text-decoration: none;
	margin-top: 2rem;
	text-align: center;
}

.team-member-cta small {
	text-transform: uppercase;
	color: #bababa;
	font-weight: 400;
}

.team-member-photo {
	flex: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
}

.team-member-content-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6em 2em;
}

.team-member-main-content {
	max-width: 1200px;
	font-size: 1.75em;
	line-height: 1.5em;
	text-align: center;
}

@media (max-width: 992px) {
	.team-member-cta {
		text-align: center;
		align-items: center;
	}
}

@media (min-width: 992px) {
	.team-member-hero {
		flex-direction: row;
	}
}