/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* COLORS */
:root {
--white:#FFF;
--dark-grey:#181818;
--black:#000000;
--grey:#65677B;
--light-grey:#FCFAF8;
--light-blue-000:#BDDFFF;
--light-blue-100:#D1E9FFCC;
--light-blue-200:#D1E9FF;
--med-blue:#234E79;
--dark-blue-000:#1F2A7C;
--dark-blue-100:#1A2368;
--yellow:#ECB653;
--tan:#D5C7BD;
--light-tan:#F7F0EA;
--light-tan-100: #F7F0EACC;
}

/* General */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: auto;
}
body {
    font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: normal;
    color: var(--black);
    background-color: var(--white);
}
p {
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 165%;
	color: var(--black);
}
body p a {
	text-decoration: underline;
}
body p a:hover {
	text-decoration: none;
}
h1, .h1-title {
	font-size: 3.5rem;
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	line-height: 115%;
	margin-bottom: 1rem;
}
h2, .h2-title {
	font-size: 3rem;
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	line-height: 115%;
	margin-bottom: 1rem;
}
h3, .h3-title {
	font-size: 2rem;
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	line-height: 115%;
	margin-bottom: 1rem;
}
h4, .h4-title {
	font-size: 1.75rem;
	font-family: 'Playfair Display', sans-serif;
	font-weight: 400;
	line-height: 110%;
	font-style: italic;
	margin-bottom: 1rem;
}
h5, .h5-title {
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 1rem;
}
h6, .h6-title {
	font-size: 1.25rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 1rem;
}
.eyebrow {
	font-size: 0.875rem;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--med-blue);
	letter-spacing: 0.08rem;
	display: inline-block;
	position: relative;
}
section {
	padding: 120px 0px;
}
.border-box {
	outline: 1px solid var(--light-blue-100);
    outline-offset: -14px;
}
.navy-box {
	background: var(--dark-blue-100);
	color: var(--white);
	outline: 1px solid var(--light-blue-100);
    outline-offset: -12px;
}
.white-box {
	background: var(--white);
	color: var(--dark-gray);
	outline: 1px solid var(--tan);
    outline-offset: -12px;
	box-shadow: 0px 4px 10px 0px #0000004D;
}
.blue-box {
	background: var(--dark-blue-000);
	color: var(--white);
}
.navy-txt {
	color: var(--dark-blue-000);
	font-weight: 500;
}
.box ul li, .white-box ul li {
	padding-bottom: 16px;
}
.box ul li ul li:last-child, .white-box ul li ul li:last-child {
    padding-bottom: 0px;
}
.box ul li ul li:first-child, .white-box ul li ul li:first-child {
    padding-top: 16px;
}
.box ul li::marker {
	font-size: 12px;
}
.bold-txt {
	font-weight: 500;
}
.button {
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: .05rem;
	opacity: 1;
	display: inline-block;
	text-align: center;
	padding: 12px 40px;
	text-decoration: none;
	font-weight: 600;
	border:none;
}
.white-button {
	background: var(--white);
	color: var(--dark-blue-000);
	border: 1px solid var(--light-blue-100);
}
.blue-button {
	background: linear-gradient(to right, var(--yellow) 50%, var(--med-blue) 50%);
	color: var(--white);
	border-left: 6px solid var(--yellow);
	background-position: right bottom;
	transition: all .5s ease-out;
	background-size: 200% 100%;
}
.arrow-button {
	border: 1px solid var(--light-blue-100);
	color: var(--dark-blue-000);
	padding: 12px 60px 12px 40px;
	background: url('/wp-content/uploads/2025/04/secondary-button-arrows-%402x.png') no-repeat center right 40px var(--white);
	background-size: 14px;
	opacity: 1;
}
.button:hover {
	background-position: left bottom;
	text-decoration: none;
	color: var(--black);
}
.hidden{
    display: none;
}
#top-link-block {
    position: fixed;
    bottom: -82px; /* hidden below viewport */
    right: 30px;
    visibility: hidden;
    transition: bottom 300ms ease-in-out, visibility 300ms ease-in-out;
}
#top-link-block.show {
    bottom: 85px; /* slides up into view */
    right: 30px;
    visibility: visible;
    z-index: 35;
}
.back-top-button {
    display: block;
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/DBY-Law/img/back-to-top-white.png') no-repeat center center;
    background-size: contain;
}
.back-top-button:hover {
    background-image: url('/wp-content/themes/DBY-Law/img/back-to-top-blue.png');
}
.slick-slider .slick-autoplay-toggle-button .slick-play-icon:before, .slick-autoplay-toggle-button .slick-pause-icon:before {
	font-size: 12px;
}
.fade-up, .fade-box {
  opacity: 0;
  transform: translateY(20px); /* start slightly lower */
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  transition-delay: var(--delay, 0s);
}

.fade-up.show, .fade-box.show {
  opacity: 1;
  transform: translateY(0); /* move to natural position */
}
.testimonials-carousel .slick-dots {
	bottom: -45px;
}
.testimonials-carousel .slick-dots li {
	border: 1px solid var(--light-blue-000);
	height: 14px;
	width: 14px;
	border-radius: 50%;
}
.testimonials-carousel .slick-dots li button .slick-dot-icon {
	color: transparent;
}
.testimonials-carousel .slick-dots .slick-active, .testimonials-carousel .slick-dots li.slick-active button .slick-dot-icon {
	background: var(--light-blue-000);
	color: var(--light-blue-000);
}
.slick-prev .slick-prev-icon:before, .slick-next .slick-next-icon:before {
	content:'';
}
.testimonials-carousel .slick-next.slick-arrow, .accolades-carousel .slick-next.slick-arrow {
	background: url("/wp-content/uploads/2025/08/right-arrow.png") no-repeat center center #fff;
	background-size: 51px;
	height: 50px;
	width: 50px;
	z-index: 1;
	position: absolute;
	top: inherit;
	bottom: 0px;
    left: 50%;
	border-radius: 50%;
	transform: translatex(8px);
}
.testimonials-carousel .slick-prev.slick-arrow, .accolades-carousel  .slick-prev.slick-arrow {
	background: url("/wp-content/uploads/2025/08/left-arrow.png") no-repeat center center #fff;
	background-size: 51px;
	height: 50px;
	width: 50px;
	z-index: 1;
	position: absolute;
	top: inherit;
    bottom: 0px;
    left: 50%;
	border-radius: 50%;
    transform: translatex(-58px);
}
.testimonials-carousel .slick-next.slick-arrow:hover, .accolades-carousel .slick-next.slick-arrow:hover {
	background: url("/wp-content/uploads/2025/08/right-arrow-hover.png") no-repeat center center #fff;
	background-size: 51px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}
.testimonials-carousel .slick-prev.slick-arrow:hover, .accolades-carousel .slick-prev.slick-arrow:hover {
	background: url("/wp-content/uploads/2025/08/left-arrow-hover.png") no-repeat center center #fff;
	background-size: 51px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}
.accolades-carousel .slick-next.slick-arrow {
	position: absolute;
	bottom: inherit;
	top: 160px;
    left: inherit;
	right: 0px;
}
.accolades-carousel  .slick-prev.slick-arrow {
    bottom: inherit;
	top: 160px;
    left: 48px;
}
button:focus {
	outline: none;
}
.cta-container {
	max-width: 1440px;
	padding: 0px !important;
}
.cta .blue-box {
	padding: 150px 50px 168px 50px;
	text-align: center;
}
.cta .navy-box p {
	margin: 16px 0px 32px 0px;
}
.cta .wpcf7-response-output {
	display: none;
}
.attorneys-page .cta .hide-txt {
    display: none;
}

/* Header */
header .navbar {
	border: none;
	padding: 0px;
	background: var(--white);
	box-shadow: 0px 5px 10px 0px #0000001F;
}
.container-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: var(--white);
	padding: 20px 60px;
	max-width: 1440px;
	margin: auto;
}
header .icon-logo {
	max-width: 151px;
}
header .navbar-light .navbar-nav .nav-link {
	color: var(--dark-grey);
	font-weight: 400;
}
header .navbar-nav .menu-btn {
	background: var(--dark-blue-000);
	border-radius: 5px;
	padding: 0px 5px;
	text-align: center;
}
header .navbar-nav .menu-btn .nav-link {
	color: var(--white);
	font-weight: 500;
	padding: 8px 18px;
	opacity: 1;
}
header .navbar-nav .menu-btn .nav-link:hover {
	opacity: 0.8;
	color: var(--white);
}
header .navbar-nav .payment-btn {
    margin-left: 20px;
}
header .navbar-nav .payment-btn .nav-link, footer .payment-btn {
	padding: 0px;
}
.payment-btn img {
    border: 1px solid var(--light-blue-000);
    border-radius: 5px;
}
header .container-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    content: "";
    border: none;
    background: url(/wp-content/themes/DBY-Law/img/sub-nav-icon.png) no-repeat center center;
    background-size: contain;
    height: 12px;
    width: 11px;
    position: relative;
    top: 5px;
}
header .navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 12px;
    color: #000;
    box-shadow: 0px 4px 10px 0px #0000004D;
    padding-top: 16px;
    padding-bottom: 16px;
	border:none;
	outline: none;
}
header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    color: #000;
}
header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #EEE0D3;
}
.scroll-btn {
	position: fixed;
	bottom: 80px;
	right: 20px;
	left: inherit;
}
.scroll-btn:hover {
    background: url(/wp-content/themes/DBY-Law/img/back-to-top-blue.png);
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
}
footer {
	background: var(--med-blue);
}
footer p {
	color: var(--white);
	margin-bottom: 30px;
}
#inner-footer {
	background: var(--med-blue);
	padding: 50px 0px 15px 0px;
	color: var(--white);
}
footer .container-nav {
	padding: 0px;
	background: var(--med-blue);
	justify-content: end;
}
.menu-footer-menu-container {
	width: 100%;
}
footer #menu-footer-menu {
    list-style: none;
	display: flex;
	flex-direction: row;
	align-items: end;
	margin: 0px;
	padding: 0px;
	justify-content: space-between;
}
footer #menu-footer-menu a {
	color: var(--white);
}
footer #menu-footer-menu a:hover {
	text-decoration: none;
	opacity: 0.8;
}
footer .footer-nav {
    width: 100%;
}
footer .icon-logo {
	max-width: 150px;
}
footer .copy-row {
	padding: 35px 0px;
	color: var(--white);
	align-items: end;
}
footer .copy-row p a {
	text-decoration: underline;
	font-weight: 500;
	color: var(--white);
}
footer .copy-row a:hover {
	text-decoration: none;
}
footer .copy-row .copy {
	font-size: 0.875rem;
	margin: 0px;
}
footer .payment-btn {
	position: relative;
	top: 7px;
}

/* Homepage */
.homepage .homepage-banner {
	padding: 84px 0px 0px 0px;
}
.homepage .top-banner {
	height: 672px;
	width: 100%;
	margin: 0px auto;
	padding: 0px;
	position: relative;
}
.homepage .top-banner .background-banner {
	position: absolute;
	height: 100%;
	width: 100%;
}
.homepage .top-banner .box {
	margin-top: 170px;
}
.homepage .homepage-banner p {
	margin-bottom: 32px;
	font-size: 1.125rem;
}
.homepage .about-us {
	background: linear-gradient(104.95deg, #F7F0EA 6.8%, #EEE0D3 92.62%);

}
.homepage .about-us .cta-container {
    padding: 0px 60px 0px 140px;
}
.homepage .about-us .bold-txt {
	margin: 15px 0px 32px 0px;
}
.homepage .about-us .h2-title {
	margin-bottom: 15px;
}
.homepage .about-us p {
    padding-right: 50px;
}
.homepage .our-awards {
	background:var(--light-grey);
	overflow: hidden;
}
.homepage .our-awards .award-icon {
	max-width: 166px;
	margin: 0px 25px;
}
.homepage .our-awards .slick-dots {
	display: none !important;
}
.homepage .our-awards .slick-autoplay-toggle-button {
	color: #666779;
	left: inherit;
	right: 5px;
	position: absolute;
	z-index: 10;
}
.homepage .our-awards .slick-slider.slick-dotted{
	margin-bottom: 0px;
}
.homepage .our-awards .slick-autoplay-toggle-button:focus {
	color: var(--yellow);
}
.homepage .practice-areas {
	background: var(--light-blue-100);
	color: var(--black);
}
.homepage .practice-areas .eyebrow {
	color: var(--med-blue);
}
.homepage .practice-areas #title-box {
	padding: 40px 12px 0px 8px;
}
.homepage .practice-areas .col-12.col-md-6.col-lg-4 {
	padding-right: 12px;
	padding-left: 12px;
}
.homepage .practice-areas .h2-title {
	margin-bottom: 25px;
}
.homepage .practice-areas .h6-title {
	margin-bottom: 20px;
}
.homepage .practice-areas .white-box {
    padding: 40px 37px;
	margin-bottom: 24px;
	height: calc(100% - 25px);
}
.homepage .practice-areas .area-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--yellow);
	display: flex;
}
.homepage .practice-areas .area-icon img {
	width: 27px;
	height: 23px;
	margin: auto;
	align-items: center;
}
.homepage .practice-areas .areas {
	margin-bottom: 40px;
}
.lower-banner {
	height: 500px;
}
.contact-page .lower-banner, .thankyou-page .lower-banner, .legal-page .lower-banner {
	height: 600px;
}
.testimonials {
	background: var(--white);
	padding: 120px 0px 160px 0px;
}
.testimonials .h2-title {
	text-align:center;
}
.testimonials-carousel {
	position: relative;
}
.testimonials-carousel .item {
	color: var(--dark-grey);
	text-align: center;
	padding: 35px 115px 100px 115px;
	height: inherit;
}
.testimonials-carousel .quote{
	position: relative;
	padding-top: 75px;
	margin-bottom: 16px;
}
.testimonials-carousel .name{
	display: block;
	font-weight: 600;
	font-size: 1rem;
	color: var(--med-blue);
}
.testimonials-carousel .quote:before{
	content: '';
	background: url('/wp-content/uploads/2025/04/yellow-quote-marks-%402x.png') no-repeat top center transparent;
	background-size: 54px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -27px;
	width: 54px;
	height: 36px;
}

/* Practice Areas */
.practice-page .firm-overview {
	background: linear-gradient(104.95deg, #F7F0EA 6.8%, #EEE0D3 92.62%);
	padding: 205px 0px 120px 0px;
	text-align: center;
}
.practice-page .firm-overview img {
	margin-top: 50px;
	width: 100%;
	max-width: 954px;
}
.practice-page .firm-overview .overview-desc {
	max-width: 750px;
	margin: auto;
}
.practice-page .firm-overview h1 {
	max-width: 550px;
	margin: 0px auto 16px auto;
}
.practice-page .philosophy {
	background: var(--light-tan-100);
}
.practice-page .areas {
	background: var(--light-grey);
}
.practice-page .areas h2 {
    margin-bottom: 25px;
}
.practice-page .areas .areas-row {
	margin-top: 35px;
}
.practice-page .areas .white-box {
	margin-bottom: 20px;
	min-height: 122px;
	align-content: center;
	padding: 35px 0px;
}
.practice-page .areas .accordion-button {
    background: none;
    border: none;
	padding: 0px;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.practice-page .areas .title {
	width: calc(100% - 40px);
	text-align: left;
	max-width: 90%;
	padding-left: 15px;
	font-weight: 500;	
	color: var(--black);
}
.practice-page .areas .accordion-header {
    padding: 0px 0px 0px 50px;
	margin: 0px;
}
.practice-page .areas .icon-faq {
    min-width: 40px;
    height: 40px;
	margin-right: 60px;
}
.practice-page .areas .icon-faq.closed {
	background: url(/wp-content/themes/DBY-Law/img/down-arrow.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.practice-page .areas .icon-faq.opened {
	background: url(/wp-content/themes/DBY-Law/img/up-arrow.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.practice-page .areas .icon-faq.closed:hover {
	background: url(/wp-content/themes/DBY-Law/img/down-arrow-blue.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.practice-page .areas .icon-faq.opened:hover {
	background: url(/wp-content/themes/DBY-Law/img/up-arrow-blue.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.practice-page .areas .area-icon {
    height: 50px;
	min-width: 50px;
    border-radius: 50%;
	display: flex;
	align-items: center;
}
.practice-page .areas .area-icon img {
	height: 50px;
	width: 50px;
	margin: auto;
}
.practice-page .areas .white-box .accordion-body {
	padding: 0px 135px 0px 115px;
}
.practice-page .areas .white-box .accordion-body a {
	color: var(--med-blue);
}
.practice-page .accolades {
	background: var(--light-blue-200);
}
.practice-page .accolades .accolades-carousel {
	margin-top: 50px;
}
.practice-page .accolades .accolades-carousel .white-box{
	min-height: 370px;
	padding: 90px 20px 80px 20px;
}
.practice-page .accolades .accolades-carousel img {
	width: 100%;
	max-width: 165px;
	margin: auto;
}
.practice-page .accolades .accolades-carousel .plus-icon {
	width: 25px;
	height: 25px;
	margin-top: 50px;
	cursor: pointer;
}
.practice-page .accolades .btn-box {
	text-align: right;
	align-content: center;
}
.fancybox__content .white-box {
    padding: 30px;
    max-width: 370px;
	color: var(--black);
}
.fancybox__content .white-box .quote, .white-box .quote {
    font-size: 1.125rem;
	padding-bottom: 15px;
	padding-right: 50px;
	font-weight: 500;
	line-height: 150%;
}
.fancybox__content {
	background: none;
}
.fancybox__content .white-box a {
	color: var(--med-blue);
}
.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: 65px;
    right: 62px;
    color: var(--med-blue);
    width: 25px;
    height: 25px;
}
.carousel__button svg {
	filter: none;
}
.slide-box {
  position: relative;
  overflow: hidden;
}

.slide-box img {
  display: block;
  width: 100%;
}
.practice-page .accolades .item-content p {
	font-size: 0.938rem;
}
.item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1); /* white overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 10;
  padding: 90px 30px 80px 30px !important;
  box-sizing: border-box;
}

/* Attorneys Page */
.attorneys-page .homepage-banner {
	padding: 84px 0px 0px 0px;
}
.attorneys-page .top-banner {
	height: 435px;
	width: 100%;
	margin-top: 115px;
	margin: 0px auto;
	padding: 170px 0px 0px 0px;
}
.attorneys-page .eyebrow {
	margin-bottom: 0px;
}
.attorneys-page .attorneys {
	background: linear-gradient(104.95deg, #F7F0EA 6.8%, #EEE0D3 92.62%);
}
.attorneys-page .nav-pills .nav-link.pill-btn {
    background: var(--light-grey);
    border-radius: 5px;
	margin-bottom: 5px;
	color: var(--black);
	padding: 17px;
	font-size: 1.125rem;
}
.attorneys-page .attorneys .dropdown {
    position: absolute;
    top: 460px;
    width: 100%;
    left: 0px;
}
.attorneys-page .attorneys .dropdown.fixed-dropdown {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.attorneys-page .attorneys .dropdown-item {
	color: var(--black);
	padding: 0.5rem 1.5rem;
}
.attorneys-page .nav-link.pill-btn.active, 
.attorneys-page .nav-pills .nav-link.pill-btn:hover, 
.attorneys #dropdownMenuButton,
.attorneys-page .attorneys .dropdown-item:hover
{
	color: var(--white);
	border-left: 6px solid var(--yellow);
	background: var(--med-blue);
}
.attorneys-page #pills-tabContent {
    padding-left: 0px;
}
.attorneys-page .attorneys .col-3 {
    padding-right: 15px;
}
.attorneys-page .attorneys .nav-item {
	width: 100%;
	padding-bottom: 5px !important;
}
.attorneys-page #pills-tab{
    position: relative;
    z-index: 2;
	max-width: 240px;
}
.attorneys-page .attorneys .box {
	background: var(--light-grey);
	border-radius: 12px;
	box-shadow: 0px 4px 10px 0px #0000004D;
	padding: 70px 80px;
}
.attorneys-page .box .h6-title {
	font-weight: 500;
	margin-top: 30px;
}
.attorneys-page .attorneys .box img {
	border: 12px solid #EEE0D3;
	width: 100%;
	max-width: 180px;
}
.attorneys-page .attorneys .attorney-info {
	margin-left: 25px;
}
.attorneys-page .attorneys .attorney-info .h3-title{
	margin-bottom: 24px;
}
.attorneys-page .attorneys .attorney-info a{
	margin-bottom: 15px;
	display: block;
	color: var(--med-blue);
	text-decoration: underline;
}
.attorneys-page .attorneys .attorney-info a:hover{
	text-decoration: none;
}
.attorneys-page .attorneys .bio-row {
	margin-top: 30px;
	display: block;
}
.attorneys-page .attorneys .bio-row a {
	color: var(--med-blue);
}

.attorneys-page .attorneys #dropdownMenuButton {
    width: 100%;
    margin-bottom: 80px;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 10px 0px;
    text-transform: none;
	border-right: 0px;
	border-bottom: 0px;
	border-radius: 0px;
}
.attorneys-page .attorneys #dropdownMenuButton:hover {
	margin-top: 0px;
}
.attorneys-page .attorneys .dropdown-menu.show {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0px;
	text-align: center;
	font-size: 1rem;
	transform: translate3d(0px, 49px, 0px) !important;
	margin-top: -2px;
}
.attorneys-page .attorneys .dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    content: "";
    border: none;
    background: url(/wp-content/themes/DBY-Law/img/sub-nav-icon-white.png) no-repeat center center;
    background-size: contain;
    height: 12px;
    width: 11px;
    position: relative;
    top: 5px;
}
.attorneys-page .attorneys .anchor-link {
	scroll-margin-top: 130px;
	scroll-snap-margin-top: 130px;
}
.fancybox__backdrop {
	background: transparent !important;
}

/* FAQ Page */
.faq-page {
	background: var(--light-grey);
}
.faq-overview {
	padding: 205px 0px 90px 0px;
	text-align: center;
}
.faq-page .boxes-row {
	margin-top: 35px;
	text-align: center;
}
.faq-page .boxes-row .box {
	background: var(--light-blue-200);
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0px 4px 10px 0px #0000004D;
	height: calc(100% - 20px);
}
.faq-page .faq-overview a:hover{
	text-decoration: none;
}
.faq-page .faq-overview .faq-anchor {
	background:url('/wp-content/themes/DBY-Law/img/down-arrow-white.png') no-repeat center;
	background-size: cover;
	width: 40px;
	height: 40px;
	position: relative;
 	bottom: 6px;
	margin: auto;
	display: block;
}
.faq-page .faqs .anchor-link {
	scroll-margin-top: 130px;
	scroll-snap-margin-top: 130px;
}
.faq-page .faq-overview .faq-anchor:hover {
	background:url('/wp-content/themes/DBY-Law/img/down-arrow-yellow.png') no-repeat center;
	background-size: cover;
}
.faq-page .faqs .accordion .box:not(:last-of-type)::after {
    border-bottom: 1px solid var(--tan);
    width: 90%;
    content: "";
    display: block;
    margin: auto;
}
.faq-page .boxes-row .box p {
	font-size: 1.125rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.faq-page .boxes-row .box .faq-txt {
		padding: 0px 45px;
}
.faq-page .faqs {
	padding-top: 0px;
}
.faq-page .faqs .faq-row {
	margin-top: 120px;
}
.faq-page .faqs .top-row {
	margin-top: 0px;
}
.faq-page .faqs h2 {
	margin-bottom: 50px;
	text-align: center;
}
.faq-page .faqs .box {
	align-content: center;
	padding: 0px;
}
.faq-page .faqs .accordion {
	border-radius: 12px;
	background: #fff;
	box-shadow: 0px 4px 10px 0px #0000004D;
}
.faq-page .faqs .accordion-button {
    background: none;
    border: none;
	padding: 0px;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.faq-page .faqs .box .title {
	width: calc(100% - 40px);
	text-align: left;
	max-width: 85%;
	font-weight: 500;	
	color: var(--black);
}
.faq-page .faqs .accordion-header {
    padding: 32px 50px;
	margin: 0px;
}
.faq-page .faqs .box.active .accordion-header {
    padding-bottom: 17px;
}
.faq-page .faqs .icon-faq {
    min-width: 40px;
    height: 40px;
	margin-right: 10px;
}
.faq-page .faqs .icon-faq.closed {
	background: url(/wp-content/themes/DBY-Law/img/down-arrow.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.faq-page .faqs .icon-faq.opened {
	background: url(/wp-content/themes/DBY-Law/img/up-arrow.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.faq-page .faqs .icon-faq.closed:hover {
	background: url(/wp-content/themes/DBY-Law/img/down-arrow-blue.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.faq-page .faqs .icon-faq.opened:hover {
	background: url(/wp-content/themes/DBY-Law/img/up-arrow-blue.png);
	background-size: 40px;
	background-repeat: no-repeat;
}
.faq-page .faqs .box .accordion-body {
	padding: 0px 135px 25px 50px;
}
.faq-page .faqs .box .accordion-body a {
	color: var(--med-blue);
}
.faq-page .faqs .box .accordion-body p strong {
    font-weight: 500;
    font-size: 1.25rem;
}
.faq-page .faqs .box .accordion-body ul strong {
    font-weight: 500;
    font-size: 1.125rem;
}

/* Thank You Page */
.thankyou-page .main-content {
    text-align: center;
	padding: 280px 0px 180px 0px;
	background: var(--light-tan);
}

/* CTA */
.cta {
	padding: 90px 0px 90px 0px;
    background: var(--light-tan);
    height: 495px;
}
.cta-icon {
	max-width: 100px;
	position: absolute;
	top: -140px;
}
.cta .cta-desc a {
	color: var(--med-blue);
	text-decoration: underline;
}
.cta .cta-desc a:hover {
	text-decoration: none;
}
.cta .white-box {
    min-height: 613px;
    padding: 70px 70px;
    margin-top: -150px;
}
.cta .wpcf7 input, .cta .wpcf7 select, .cta .wpcf7 textarea {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--tan);
    outline: none;
    margin-top: .5rem;
    padding: 10px 16px;
}
.cta .wpcf7 input, .cta .wpcf7 select {
    height: 48px;
}
.cta .wpcf7 textarea {
	height: 130px;
}
.cta .wpcf7 input:focus-visible, .cta .wpcf7 textarea:focus-visible {
    outline: none;
    background: var(--light-grey) !important;
    border: 1px solid var(--tan) !important;
    opacity: 100% !important;
}
.cta .wpcf7-submit.has-spinner.button.blue-button {
	max-width: 145px;
	border: none;
	border-left: 6px solid var(--yellow);
	float: right;
}
.cta .wpcf7 label {
	width: 100%;
	display: block;
	padding-bottom: 10px;
}
.cta .wpcf7 .form-row p {
	padding: 0px 10px;
}
.cta .wpcf7-spinner {
	opacity: 1;
	background-color: var(--med-blue);
}

/* Contact Page */
.contact-page .contact-us {
	padding: 220px 0px;
	height: auto;
}
.contact-page .contact-us .white-box {
	margin-top: 0px;
}
.contact-page .contact-us .contact-info img {
    max-height: 23px;
    padding-right: 10px;
}
.contact-page .contact-us .contact-info a {
    color: var(--med-blue);
}
.contact-page .contact-us .cta-desc {
	padding-bottom: 15px;
}
.contact-page .contact-us .contact-info p {
    margin-left: 38px;
}
.contact-page .contact-us .contact-info span {
    font-weight: 500;
    color: var(--med-blue);
	font-size: 1.125rem;
}

/* Legal Page */
.legal-page .main-content {
	padding: 230px 0px 120px 0px;
}
.legal-page .main-content .main-title {
	margin-bottom: 25px;
}

.legal-page .page-404 {
	padding-top: 50px;
}
.legal-page .page-404 a {
	color: var(--med-blue);
	text-decoration: underline;
}

.legal-page .page-404 a:hover {
	text-decoration: none;
}

/* Mobile Styling */
@media (max-width: 1200px) {
	.cta {
		height: auto;
	}
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
}
@media (max-width: 991px) {
  /* Nav */
	.bottom-nav {
	   background: transparent;
	    bottom: 0;
	    height: 80px;
	    left: 50%;
	    position: fixed;
	    text-align: center;
	    transform: translateX(-50%);
	    -webkit-transform: translateX(-50%);
	    -moz-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    width: 50%;
	    z-index: 9999;
	}
	.bottom-nav .navbar-toggler {
	    background: var(--med-blue);
	    border-radius: 50%;
	    display: inline-block;
	    outline: 0;
	    padding: 17px 14px;
	    position: relative;
	    vertical-align: middle;
	    z-index: 1032;
	    box-shadow: 1px 5px 16px rgba(0, 0, 0, 0.25);
	}
	.bottom-nav .animated-icon {
        cursor: pointer;
        height: 24px;
        margin: 0;
        position: relative;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        width: 30px;
    }
    .bottom-nav .animated-icon,.animated-icon span {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    .bottom-nav .animated-icon span {
        background: #fff;
        border-radius: 9px;
        display: block;
        height: 3px;
        left: 0;
        opacity: 1;
        position: absolute;
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        width: 100%;
    }
	.bottom-nav .animated-icon span:nth-child(2),.animated-icon span:nth-child(3) {
        top: 10px;
    }
    .bottom-nav .animated-icon span:nth-child(4) {
        top: 20px;
    }
    .bottom-nav .animated-icon.open span:first-child {
        left: 50%;
        top: 11px;
        width: 0;
    }
    .bottom-nav .animated-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .bottom-nav .animated-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .bottom-nav .animated-icon.open span:nth-child(4) {
        left: 50%;
        top: 11px;
        width: 0;
    }
	 .navbar-collapse {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        background: #fff;
        position: fixed;
        bottom: 0px !important;
        left: 0px;
        padding: 12px 30px 12px 30px;
        min-height: 60px;
        max-height: 60px;
        overflow: auto;
        height: auto;
        text-align: left;
        transition: all 0.25s ease-out;
          -webkit-transition: all 0.25s ease-out;
          -moz-transition: all 0.25s ease-out;
          -o-transition: all 0.25s ease-out;
        z-index: 11000;
    }
    .navbar-collapse.show {
        min-height: 100%;
        max-height: 100%;
    }
	.no-scroll{
         overflow: hidden;
         position: fixed;
         width: 100%;
  	}
	header .navbar-nav .payment-btn {
    	margin: 0px 0px 20px 0px;
    }
	header .container-nav {
		padding: 5px 20px;
	}
	header .icon-logo {
    	max-width: 125px;
	}
	header .navbar-light .navbar-nav .nav-link {
		font-size: 1.25rem;
		padding: 10px 1rem;
	}
	header .navbar-expand-lg .navbar-nav .dropdown-menu {
		border-radius: 0px;
		box-shadow: none;
		padding-top: 0px;
	}
	.navbar-nav {
		margin-top: 20px;
	}
	footer #inner-footer {
		padding: 0px 0px 75px 0px;
	}
	footer .copy-row {
		text-align: center;
	}
	footer .copy-row .contact-icons {
		text-align: center;
		margin-bottom: 15px;
	}
	footer .container-nav {
		justify-content: center;
		padding-bottom: 35px;
	}
	.homepage .about-us .arrow-button {
		margin-bottom: 35px;
	}
	.testimonials-carousel .item {
		padding: 65px 5px 100px 5px;
	}
	.homepage .homepage-banner {
    	padding: 29px 0px 0px 0px;
	}
	.homepage .top-banner {
		height: 850px;
	}
	.homepage .top-banner .box {
	    margin-top: 155px;
}
	.homepage .about-us img {
		margin-top: 60px;
	}
	.homepage .about-us p {
		padding-right: 0px;
	}
	.practice-page .firm-overview, 
	.faq-page .faq-overview, 
	.contact-page .contact-us {
		padding: 180px 0px 120px 0px;
	}
	.practice-page .philosophy .left-box {
		margin-top: 0px;
	}
	.practice-page .accolades .btn-box {
		text-align: left;
		margin-top: 15px;
	}
	.attorneys-page .homepage-banner {
		padding: 25px 0px 0px 0px;
	}
	.attorneys-page .attorneys .box {
		padding: 60px;
		margin-bottom: 30px;
	}
	.attorneys-page .attorneys .attorney-info {
		display: block;
		width: 100%;
		margin-top: 20px;
		margin-left: 0px;
	}
	.attorneys-page .item-content {
		padding: 90px 35px 80px 35px !important
	}
	.faq-page .faq-overview .boxes-row .col-12 {
		margin-bottom: 20px;
	}
	.cta .white-box {
		height: auto;
		margin-top: 40px;
	}
	.faq-page .boxes-row .box {
		padding: 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: auto;
	}
	.faq-page .boxes-row .box p {
		display: block;
		margin: 0px;
		width: 90%;
		text-align: left;
	}
	.faq-page .boxes-row .box .faq-txt {
		padding: 0px;
	}
	.faq-page .faq-overview a {
		position: inherit;
		margin: auto;
		display: block;
		width: 100%;
	}
	.contact-page .contact-us .white-box {
    	margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	section {
		padding: 85px 0px;
	}
	h1, .h1-title {
		font-size: 3rem;
	}
	.h2-title {
		line-height: 120%;
		font-size: 2.5rem;
	}
	.homepage .top-banner .box{
		margin-top: 125px;
	}
	.homepage .banner {
		height: 475px;
		width: 100%;
		margin-top: 60px;
	} 
	.homepage .practice-areas #title-box {
		padding: 0px 15px 60px 15px;
	}
	.homepage .practice-areas .slash:before {
		bottom: -10px;
	}
	.lower-banner {
    	height: 250px;
	}
	.contact-page .lower-banner, .thankyou-page .lower-banner, .legal-page .lower-banner {
		height: 350px;
	}
	.practice-page .areas .icon-faq {
		width: 45px;
	}
	.practice-page .areas .white-box .accordion-body, .faq-page .faqs .box .accordion-body {
		padding: 20px 50px 0px 50px;
	}
	.attorneys-page .attorneys {
		padding: 135px 0px 120px 0px;
	}

	footer .navbar-brand {
    	display: block;
    	margin: 0px auto 20px auto;
    	text-align: center;
	}
	footer .container-nav {
		display: block;
	}
	footer #menu-footer-menu {
		text-align: center;
		padding: 0px;
		justify-content: space-evenly;
		flex-wrap: wrap;
	}
	footer .copy-row .phone-link {
    	padding: 0px;
	}
	footer .payment-btn {
		top: 10px;
	}
	.slash:before {
		bottom: -14px;
	}
	.cta .white-box {
    	padding: 45px 30px;
	}
	.cta {
		padding: 85px 0px;
	}
	.thankyou-page .main-content, .legal-page .main-content {
		padding: 180px 0px 100px 0px;
	}
}

@media screen and (max-width: 576px) {
	.homepage .homepage-banner .blue-box {
		padding: 70px 20px 88px 20px;
   }
	.testimonials-carousel .quote {
		font-size: 1rem;
	}
	.attorneys-page .attorneys .box {
		padding: 40px 50px;
	}
	.practice-page .white-box .quote {
		padding-bottom: 10px;
		padding-right: 0px;
	}
	footer #menu-footer-menu .menu-item, footer .payment-btn {
		padding: 6px 0px;
		text-align: left;
		top: 7px;
	}
	#inner-footer {
		padding: 0px 15px;
	}
	footer #menu-footer-menu {
		display: block;
	}
	footer #menu-footer-menu a {
		padding: 0px;
	}
	footer .copy-row a {
    	margin-bottom: 12px;
		display: block;
	}	
	.cta-container, .homepage .about-us .cta-container {
		padding: 0px 15px;
	}
	footer p {
		text-align: left;
	}
	.fancybox__content>.carousel__button.is-close {
    	top: 35px;
		right: 32px;
	}
	.fancybox__content {
		padding: 5px;
	}
}

@keyframes fadetxt {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}