:root {
  --site-header-font-family: "Cinzel", Georgia, "Times New Roman", serif;
  --site-body-font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
  color: #1b2430;
  line-height: 1.55;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--site-header-font-family, "Cinzel", Georgia, "Times New Roman", serif);
}

p {
  margin: 0 0 1.25rem;
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: 0 !important;
}

b, strong {
  font-weight: bold;
}

body {
  max-width: 1950px !important;
  width: 100%;
  margin: 0 auto !important;
}

.container--wide {
  max-width: 1480px;
  width: calc(100% - 48px);
}

@media (max-width: 767px) {
  .container--wide {
    width: calc(100% - 32px);
  }
}
.template-accordion {
  padding: 80px 0;
}

.accordion-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #333;
  border-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: 1px solid #333;
}

.accordion-header {
  width: 100%;
  padding: 24px 58px 24px 24px;
  background: #fafbfc;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  transition: 0.3s ease;
  position: relative;
}

.accordion-header:hover,
.accordion-header:focus-visible {
  background: #d5dbe3;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-icon img {
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}

.icon-minus {
  display: none;
}

.accordion-item.active .icon-plus {
  display: none;
}

.accordion-item.active .icon-minus {
  display: block;
}

.accordion-content {
  display: none;
  padding: 24px 24px 10px;
}

.accordion-body {
  line-height: 1.5;
  color: #797979;
}

.template-accordion h2 {
  margin-bottom: 25px;
  font-size: 36px;
}

.template-accordion h2 span {
  line-height: 24px;
  display: block;
  margin-top: 10px;
}

span.accordion-title {
  width: 95%;
}

@media (max-width: 1200px) {
  .accordion-icon {
    right: 17px;
  }
}
@media (max-width: 991px) {
  .accordion-header {
    padding: 20px 52px 20px 20px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .template-accordion {
    padding: 50px 20px;
  }
  .accordion-header {
    padding: 18px 46px 18px 18px;
    font-size: 16px;
  }
  .accordion-content {
    padding: 18px 18px 8px;
  }
}
@media (max-width: 480px) {
  .accordion-header {
    padding: 16px 42px 16px 16px;
    font-size: 15px;
  }
  .accordion-icon {
    right: 14px;
    width: 18px;
    height: 18px;
  }
  .accordion-icon img {
    width: 18px;
    height: 18px;
  }
}
.hero-home {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  overflow: hidden;
  background-color: #0f172b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 43, 0.9) 0%, rgba(15, 23, 43, 0.72) 52%, rgba(15, 23, 43, 0.4) 100%), linear-gradient(180deg, rgba(11, 15, 23, 0.08) 0%, rgba(11, 15, 23, 0.35) 100%);
  z-index: 1;
}

.hero-home__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero-home__content {
  max-width: 760px;
}

.hero-home__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e6c77a;
}

.hero-home__heading {
  margin: 0 0 1rem;
  font-family: var(--site-header-font-family, "Cinzel", Georgia, "Times New Roman", serif);
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-home__subtext {
  max-width: 640px;
  margin: 0;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-home__video-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(11, 15, 23, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-home__video-toggle:hover {
  background: rgba(11, 15, 23, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-home__video-toggle:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.hero-home__video-toggle-icon {
  display: block;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
}

.hero-home__video-toggle.is-paused .hero-home__video-toggle-icon {
  transform: translateX(1px);
}

.hero-home__video-toggle.is-paused {
  color: #ffffff;
}

.hero-home__video-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background-clip: padding-box;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-home__button--primary {
  background-color: #e6c77a;
  background: linear-gradient(135deg, #e6c77a 0%, #c6923e 55%, #9b6d25 100%);
  color: #0b0f17;
}

.hero-home__button--primary:hover {
  color: #142a4a;
  background: #ffffff;
  border-color: #142a4a;
}

.hero-home__button--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-home__button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

@media (max-width: 991px) {
  .hero-home {
    min-height: 62vh;
  }
  .hero-home__inner {
    padding: 4rem 0;
  }
  .hero-home__content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero-home__inner {
    padding: 3.25rem 0;
  }
  .hero-home__heading {
    line-height: 1.02;
  }
  .hero-home__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-home__button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-home__video-toggle,
  .hero-home__button {
    transition: none;
  }
  .hero-home__video-toggle:hover,
  .hero-home__button:hover {
    transform: none;
  }
}
#personalinjury_popup {
  display: none;
}

#personalinjury_popup .es_subscription_message.success {
  color: #1b2430;
  font-size: 19px;
  font-weight: 300;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
}

.postid-3161 #personalinjury_popup {
  display: block;
}

#personalinjury_popup .modal-dialog {
  max-width: 1061px;
  margin: 171px auto 1.75rem;
}

#personalinjury_popup .modal-header {
  border: none;
  padding: 0;
}

#personalinjury_popup .modal-header .close {
  padding: 15px;
  margin: 0 0 0 auto;
  position: relative;
  opacity: 1;
  color: #1b2430;
  z-index: 1;
}

#personalinjury_popup .modal-content {
  background-color: #faf8f3;
}

#personalinjury_popup .modal-content::after {
  content: "";
  display: inline-block;
  background-image: url("../images/popup-after.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 284px;
  height: 330px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#personalinjury_popup .modal-body {
  padding: 0 1rem 57px;
  text-align: center;
  z-index: 1;
}

#personalinjury_popup h3 {
  color: #1b2430;
  font-size: 42.61px;
  font-weight: 300;
  letter-spacing: 0.08px;
  margin: 0 0 4px 0;
}

#personalinjury_popup strong {
  color: #1b2430;
  font-size: 33.88px;
  font-weight: 600;
  letter-spacing: 0.08px;
  display: block;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
}

#personalinjury_popup span.call-us-popup {
  color: #142a4a;
  font-size: 38.88px;
  font-weight: 300;
  display: block;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
  margin: 0 0 35px 0;
}

#personalinjury_popup span.call-us-popup a {
  color: #142a4a;
  font-weight: 700;
}

#personalinjury_popup span.call-us-popup a:hover,
#personalinjury_popup input.es_submit_button:hover {
  color: #1b2430;
  transition: all 0.4s ease;
}

#personalinjury_popup span#spinner-image {
  float: none;
  position: absolute;
  right: -50px;
  top: 20px;
}

#personalinjury_popup p {
  color: #1b2430;
  font-size: 20px;
  font-weight: 300;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
  margin: 0;
}

#personalinjury_popup .newsletter-popup label {
  width: 100%;
}

#personalinjury_popup input.es_txt_email {
  color: #6b7280;
  font-size: 17.33px;
  font-weight: 300;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
  background-color: #ffffff;
  border: 1px solid #d8d2c5;
  border-radius: 100px;
  width: 100%;
  height: 75px;
  line-height: 75px;
  padding-left: 30px;
}

#personalinjury_popup input.es_txt_email::placeholder {
  color: #6b7280;
  font-size: 17.33px;
  font-weight: 300;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
}

#personalinjury_popup .newsletter-popup {
  position: relative;
  width: 70%;
  margin: 72px auto 42px;
}

#personalinjury_popup input.es_submit_button {
  color: #1b2430;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif) !important;
  text-transform: uppercase;
  width: 162px;
  height: 75px;
  line-height: 73px;
  text-align: center;
  background-color: #c6923e;
  border: 1px solid #c6923e;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* Homepage practice area grid */
.banner-home {
  overflow: hidden;
}

.banner-home .slider-banner {
  display: grid;
  grid-template-columns: 1fr;
}

.banner-home .slider-banner > div,
.banner-home .pa-slider-link {
  min-width: 0;
}

.pa-slider-link {
  cursor: pointer;
}

.banner-home .pa-slider-link {
  display: block;
  height: 100%;
}

.banner-inner {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 400px;
  position: relative;
}

.banner-home .banner-inner {
  aspect-ratio: 16/10;
  height: auto;
}

.banner-inner::after {
  content: "";
  width: 100%;
  background: url(../images/Layer-5-copy.png);
  background-repeat: no-repeat;
  display: block;
  bottom: 0;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: bottom center;
  position: absolute;
}

.inner-contnslider {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 0 15px 40px;
  z-index: 9;
}

.banner-home .inner-contnslider {
  padding: 0 22px 24px;
}

.inner-contnslider h2 {
  color: #ffffff;
  font-size: 25px;
  display: inline-block;
  width: 90%;
  float: left;
}

.banner-home .inner-contnslider h2 {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.2;
}

.inner-contnslider a {
  width: 10%;
  display: inline-block;
  float: left;
  position: relative;
  top: -12px;
}

.banner-home .border-img {
  display: block;
  width: 84px;
  margin-top: 12px;
}

.banner-home .border-img img {
  display: block;
  max-width: 100%;
}

.banner-home .slick-prev {
  left: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #c6923e;
  border-radius: 100%;
}

.banner-home .slick-next {
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #c6923e;
  border-radius: 100%;
}

.banner-home .slick-next:hover,
.banner-home .slick-next:focus,
.banner-home .slick-prev:hover,
.banner-home .slick-prev:focus {
  opacity: 0.7;
  background: #c6923e;
  border-radius: 100%;
}

.banner-home .slick-prev::before {
  font-family: FontAwesome !important;
  content: "\f104" !important;
  color: #fff;
  font-size: 30px;
  opacity: 1;
}

.banner-home .slick-next::before {
  font-family: FontAwesome !important;
  content: "\f105" !important;
  color: #fff;
  font-size: 30px;
  opacity: 1;
  line-height: 50px;
}

@media (min-width: 375px) {
  .banner-home .slider-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 985px) {
  .banner-home .slider-banner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 984px) {
  .banner-home .inner-contnslider {
    padding: 0 20px 22px;
  }
}
@media (max-width: 768px) {
  .inner-contnslider h2 {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .banner-inner {
    height: 350px;
  }
  .inner-contnslider::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(11, 18, 34, 0.42);
    width: 100%;
    height: 100%;
  }
  .inner-contnslider h2 {
    position: relative;
  }
  .inner-contnslider {
    padding: 30px 20px 40px;
  }
}
/* Homepage results sections */
.icon-text {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 60px 0;
}

.icon-text__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.icon-text__header--center {
  text-align: center;
}

.icon-text--secondary .icon-text__header {
  justify-content: space-between;
}

.icon-text__heading-group {
  min-width: 0;
}

.icon-results-grid__stat {
  color: #f2cc76;
  font-size: clamp(24px, 2.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

#more-results-carousel .icon-results-grid__stat {
  font-size: clamp(18px, 1.8vw, 46px);
}

.icon-div {
  width: 10%;
  float: left;
}

.contnet-div {
  color: #fff;
  border: 1px solid #142a4a;
  height: 100%;
  background: #0f172b;
  padding: 1.2rem 1rem;
}

.contnet-div h3 {
  color: #fff;
}

.contnet-div p {
  color: #ffffff;
  padding-right: 10px;
  margin-bottom: 0;
}

.icon-text .col-lg-4.col-md-4.col-sm-12:nth-child(2) {
  padding-left: 55px;
}

.icon-text .col-lg-4.col-md-4.col-sm-12:nth-child(3) {
  padding-left: 95px;
}

.icon-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.icon-results-grid__content {
  display: block;
  height: 100%;
}

.icon-results-grid .icon-div {
  min-width: 0;
  height: auto;
  margin: 0 0 14px;
  text-align: left;
}

.icon-results-grid .icon-div img {
  display: block;
  max-width: 48px;
  height: auto;
}

.icon-results-grid .contnet-div {
  margin-bottom: 0;
}

.icon-results-grid .contnet-div h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
}

.icon-results-grid .contnet-div p {
  padding-right: 0;
  font-size: 15px;
  line-height: 1.55;
  overflow: hidden;
}

#icon_txt_slider_off > div:nth-child(n+9) {
  display: none;
}

.icon-results-grid--carousel.slick-initialized {
  display: block;
}

.icon-results-grid--carousel .slick-list {
  margin: 0 -12px;
}

.icon-results-grid--carousel .slick-track {
  align-items: stretch;
  display: flex;
}

#more-results-carousel.icon-results-grid--carousel .slick-track::before,
#more-results-carousel.icon-results-grid--carousel .slick-track::after {
  display: none;
}

#more-results-carousel.icon-results-grid--carousel .slick-slide {
  align-self: stretch;
  display: flex;
  height: auto !important;
  padding: 0 12px;
}

#more-results-carousel.icon-results-grid--carousel .slick-slide > div,
#more-results-carousel.icon-results-grid--carousel .icon-results-grid__item,
#more-results-carousel.icon-results-grid--carousel .icon-results-grid__content {
  display: flex;
  width: 100%;
  height: 100%;
}

#more-results-carousel.icon-results-grid--carousel .icon-results-grid__content {
  flex-direction: column;
}

#more-results-carousel.icon-results-grid--carousel .contnet-div {
  flex: 1 1 auto;
}

@media (min-width: 640px) {
  .icon-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
  }
}
@media (min-width: 860px) and (max-width: 1023px) {
  .icon-results-grid--carousel:not(.slick-initialized) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .icon-results-grid {
    gap: 44px 36px;
  }
  .icon-results-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .icon-results-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .icon-results-grid--five .icon-div img {
    max-width: 42px;
  }
}
@media (max-width: 1023px) {
  .icon-results-grid--carousel .slick-list {
    margin: 0 -10px;
  }
  #more-results-carousel.icon-results-grid--carousel .slick-slide {
    padding: 0 10px;
  }
}
@media (max-width: 1023px) {
  .icon-results-grid .icon-div {
    text-align: center;
  }
  .icon-results-grid .icon-div img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .icon-text h2 {
    font-size: 32px;
  }
  .icon-text .col-lg-4.col-md-4.col-sm-12:nth-child(2),
  .icon-text .col-lg-4.col-md-4.col-sm-12:nth-child(3) {
    padding-left: 15px;
  }
  .icon-div {
    float: none;
    text-align: center;
    margin: auto;
    height: 64px;
  }
  .contnet-div {
    width: 100%;
    float: none;
    text-align: center;
  }
  .contnet-div p {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .icon-text {
    padding: 60px 0 30px;
  }
  .icon-text__header,
  .icon-text--secondary .icon-text__header {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }
  .icon-text__header .testimonial-controls {
    justify-content: center;
    width: auto;
  }
  .icon-results-grid {
    gap: 22px;
  }
}
@media (max-width: 485px) {
  .icon-text h2 {
    font-size: 28px;
  }
}
/* Homepage testimonials */
.home-section-heading {
  font-family: var(--site-header-font-family, "Cinzel", Georgia, "Times New Roman", serif);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

.news {
  background: #0f172b;
  padding: 50px 0;
}

.news--testimonials {
  padding: 70px 0;
}

.news--testimonials .news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.news--testimonials .slider-left {
  max-width: 720px;
}

.slider-left h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .slider-left h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .slider-left h3 {
    font-size: 22px;
  }
}
.news--testimonials .slider-left h2 {
  color: #fff;
}

.news--testimonials .slider-left img {
  display: block;
}

.news--testimonials .slider-news:not(.slick-initialized) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.news--testimonials .slick-list {
  margin: 0 -12px;
}

.news--testimonials .slick-track {
  display: flex;
}

.news--testimonials .slick-slide {
  height: auto;
  padding: 0 12px;
}

.news--testimonials .slick-slide > div,
.news--testimonials .slick-slide .inner-news {
  height: 100%;
}

.inner-news {
  background: #142a4a;
  padding: 32px 24px;
  min-height: 280px;
}

.testimonial-stars {
  color: #f2cc76;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.inner-news h3,
.inner-news h5 {
  color: #f2cc76;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.inner-news p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(242, 204, 118, 0.72);
  border-radius: 50%;
  background: transparent;
  color: #f2cc76;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.testimonial-nav .fa {
  line-height: 1;
}

.testimonial-nav--prev .fa {
  transform: translateX(-1px);
}

.testimonial-nav--next .fa {
  transform: translateX(2px);
}

.testimonial-nav::before {
  display: none;
}

.testimonial-nav:hover,
.testimonial-nav:focus {
  background: #f2cc76;
  border-color: #f2cc76;
  color: #0f172b;
}

.testimonial-nav:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.testimonial-nav.slick-disabled,
.testimonial-nav[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.45;
}

.testimonial-nav.slick-disabled:hover,
.testimonial-nav.slick-disabled:focus,
.testimonial-nav[aria-disabled=true]:hover,
.testimonial-nav[aria-disabled=true]:focus {
  background: transparent;
  color: #f2cc76;
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-cta--with-heading {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonial-cta__heading {
  color: #ffffff;
  font-family: var(--site-header-font-family, "Cinzel", Georgia, "Times New Roman", serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  max-width: 720px;
}

.testimonial-cta__button {
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .news--testimonials .slider-news:not(.slick-initialized) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .slider-left {
    text-align: center;
    margin-bottom: 0;
  }
  .news--testimonials .news__header {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .testimonial-controls {
    justify-content: center;
    width: auto;
  }
  .testimonial-cta--with-heading {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
/* Homepage services grid */
.services-grid-section {
  background: #ffffff;
  padding: clamp(64px, 7vw, 104px) 0;
}

.services-grid-section__header {
  margin: 0 auto clamp(38px, 5vw, 58px);
  max-width: 960px;
  text-align: center;
}

.services-grid-section__header h2 {
  color: #142a4a;
}

.services-grid-section__intro {
  color: #1b2430;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 780px;
}

.services-grid-section__intro p:last-child,
.services-grid__copy p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 100%;
}

.services-grid__item {
  border-top: 1px solid #d8dee7;
  display: grid;
  gap: 20px;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: clamp(30px, 4vw, 46px) 0;
}

.services-grid__icon {
  align-items: flex-start;
  color: #142a4a;
  display: flex;
  justify-content: center;
}

.services-grid__icon img {
  display: block;
  height: auto;
  max-height: 68px;
  max-width: 68px;
  object-fit: contain;
  width: 100%;
}

.services-grid__content h3 {
  color: #142a4a;
  font-family: var(--site-header-font-family, "Cinzel", Georgia, "Times New Roman", serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  margin: 0 0 14px;
}

.services-grid__copy {
  color: #1b2430;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.5;
}

.services-grid__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6c77a 0%, #c6923e 55%, #9b6d25 100%);
  color: #0b0f17;
  font-family: var(--site-body-font-family, "Open Sans", Helvetica, Arial, sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.services-grid__button:hover {
  background: #142a4a;
  color: #ffffff;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid__item {
    padding-left: clamp(22px, 3.5vw, 52px);
    padding-right: clamp(22px, 3.5vw, 52px);
  }
  .services-grid__item:nth-child(odd) {
    padding-left: 0;
  }
  .services-grid__item:nth-child(odd):last-child {
    border-bottom: 1px solid #d8dee7;
  }
  .services-grid__item:nth-child(even) {
    border-left: 1px solid #d8dee7;
  }
  .services-grid__item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .services-grid-section {
    padding: 54px 0;
  }
  .services-grid__item:last-child {
    border-bottom: 1px solid #d8dee7;
  }
  .services-grid__item {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .services-grid__icon img {
    max-height: 52px;
    max-width: 52px;
  }
}
@media (max-width: 575px) {
  .services-grid__item {
    gap: 16px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services-grid__icon {
    justify-content: center;
  }
}
/* Homepage awards */
.home-awards {
  background: #e9edf2;
  margin-top: 0;
  padding: 36px 0;
}
.home-awards ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 24px 18px;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
}
.home-awards ul li {
  width: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  min-width: 0;
}
.home-awards ul li .slbadge {
  transform: scale(0.6);
}
@media (min-width: 992px) {
  .home-awards ul li {
    width: 160px;
  }
  .home-awards ul li .slbadge {
    transform: scale(0.7);
  }
}
.home-awards ul a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-awards ul img {
  display: block;
  height: auto;
  width: auto;
  max-width: 180px;
  max-height: 180px;
}
@media (min-width: 992px) {
  .home-awards ul {
    padding: 42px 0;
  }
}

/* Homepage end CTA */
.experience.hero-home {
  min-height: 0;
  padding: 0;
  text-align: left;
  border-bottom: 1px solid #dfdfdf;
}
.experience.hero-home::before {
  background: linear-gradient(90deg, rgba(15, 23, 43, 0.9) 0%, rgba(15, 23, 43, 0.72) 58%, rgba(15, 23, 43, 0.42) 100%), linear-gradient(180deg, rgba(11, 15, 23, 0.08) 0%, rgba(11, 15, 23, 0.35) 100%);
}
.experience.hero-home .hero-home__inner {
  padding: clamp(4rem, 6vw, 6.5rem) 0;
}
.experience.hero-home .hero-home__content {
  max-width: 720px;
}
.experience.hero-home .hero-home__heading {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.04;
}
.experience.hero-home .hero-home__actions {
  margin-top: 1.5rem;
}
.experience.hero-home .hero-home__button {
  min-height: 52px;
  padding: 0.85rem 1.35rem;
}
@media (max-width: 575px) {
  .experience.hero-home .hero-home__inner {
    padding: 3.25rem 0;
  }
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s;
}

p {
  margin: 0 0 20px;
}

img {
  height: auto;
  max-width: 100%;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: 0 !important;
}

input[type=checkbox],
input[type=radio] {
  width: auto !important;
}

.searchform {
  position: relative;
}

.searchform input {
  border-radius: 30px;
  border: 1px solid #ccc;
  padding: 14px 20px;
  width: 100%;
}

.searchform button {
  border: 0px;
  background-color: transparent;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.not-found {
  margin: 100px 0;
}

.not-found p {
  margin-bottom: 30px;
}

/* Navbar */
.site-logo {
  float: left;
  width: 25%;
}

.site-logo img {
  width: 200px;
}

.nav-bar {
  float: right;
  /* width: 73%;*/
  padding-top: 10px;
  font-size: 0.875rem;
}

.search-icon {
  width: 2%;
  float: left;
  padding-top: 22px;
  text-align: right;
  display: none;
}

.search-icon span {
  cursor: pointer;
}

.main-navigation {
  clear: both;
  position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
  margin: 0 0 0 25px;
  position: relative;
}

.nav-menu li a {
  color: #0b0f17;
  display: block;
  line-height: 1;
  padding: 15px 0 6px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.03em;
}

.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
  color: #0e1d38;
}

.nav-menu .sub-menu,
.nav-menu .children {
  background-color: #ffffff;
  border: 0px;
  border-top: 0;
  padding: 34px 0 0 0;
  position: absolute;
  left: -2px;
  z-index: 99999;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

ul.sub-menu li {
  border-left: 1px solid #0e1d38;
  border-right: 1px solid #0e1d38;
  padding: 0 0 3px;
  margin: 0;
}

ul.sub-menu li:last-child {
  border-bottom: 1px solid #0e1d38;
}

ul.sub-menu li a {
  color: #000000 !important;
  padding: 15px;
  text-align: left;
}

ul.sub-menu li a:hover {
  background: #0f172b;
  color: #ffffff !important;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
  border-left: 0;
  left: 100%;
  top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
  color: #ffffff;
  margin: 0;
  width: 328px;
  padding: 15px;
}

.nav-menu .sub-menu ul #menu-item-317 .sub-menu {
  padding-top: 0;
}

.nav-menu .sub-menu .sub-menu {
  padding-top: 0;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover,
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
  background-color: #142a4a;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
  clip: inherit;
  overflow: inherit;
  height: inherit;
  width: inherit;
}

ul.sub-menu li.current_page_item > a,
ul.sub-menu li.current_page_ancestor > a,
ul.sub-menu li.current-menu-item > a,
ul.sub-menu li.current-menu-ancestor > a {
  border-bottom: 0px;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
  color: #0e1d38;
  border-bottom: 1px solid #0e1d38;
}

.closebtn,
.openmenu,
.menuToggle,
.mobilesubmenu {
  display: none;
}

/*  Alignment  */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.slick-list.draggable {
  padding: 0px !important;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.nopd {
  padding: 0 !important;
}

.fw-container-fluid.nopd .fw-row {
  margin: 0;
}

/* Pagination  */
.pagination {
  display: inline-block;
  margin: 30px 0 0;
  width: 100%;
}

.sub-pagenation-div li {
  display: inline-block;
  border-radius: 4px;
  width: auto;
  margin-right: 10px;
}

.sub-pagenation-div li a {
  border-radius: 1px;
  color: #0b3f71;
  display: block;
  padding: 8px 17px;
  border: 1px solid #0b3f71;
}

.sub-pagenation-div li.current a,
.sub-pagenation-div li:hover a {
  background: #142a4a;
  color: #ffffff;
}

.background-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* MAIN CSS  */
.container::after,
.blogdetail::after,
.fw-container::after,
.entry-content::after {
  content: "";
  clear: both;
  display: block;
}

.blogdetail {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.page-template-latest-law #sidebar aside#text-5,
.single-format-standard #sidebar aside#archives-2 {
  display: none !important;
}

.tagss-linkss .recent-inner {
  width: 100%;
}

.taggsidebar aside#text-5 {
  display: none !important;
}

#sidebar aside#text-5 ul {
  padding: 0;
}

.top-header {
  background: -moz-linear-gradient(6deg, rgb(14, 29, 56) 0%, rgb(11, 65, 117) 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(14, 29, 56)), color-stop(100%, rgb(11, 65, 117)));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(6deg, rgb(14, 29, 56) 0%, rgb(11, 65, 117) 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(6deg, rgb(14, 29, 56) 0%, rgb(11, 65, 117) 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(6deg, rgb(14, 29, 56) 0%, rgb(11, 65, 117) 100%);
  /* ie10+ */
  background: linear-gradient(120deg, #0b1222 0%, #142a4a 58%, #142a4a 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e1d38", endColorstr="#0b4175", GradientType=1);
  padding: 10px 0;
}

.left_div {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .left_div {
    justify-content: right;
  }
}

.header-txt span {
  color: #f6cf79;
}

.social-icons {
  border-right: none;
  display: inline-block;
}

.hd_phone {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .hd_phone {
    font-size: 20px;
  }
}

.social-icons a {
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  border: 1px solid #fff;
  background: #ffffff;
  color: #0e1d38;
  transition: all 0.3s;
  line-height: 30px;
  margin: 0 1px;
}

.social-icons a:hover {
  background: transparent;
  color: #fff;
  transition: all 0.3s;
}

.social-icons a .fa.tiktok,
.social-icons a .fa.twitter,
.contact-social-icons a .fa.tiktok,
.contact-social-icons a .fa.twitter {
  background-color: currentColor;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 15px;
  margin-bottom: -2px;
  width: 15px;
}

.social-icons a .fa.tiktok,
.contact-social-icons a .fa.tiktok {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448.5 209.9c-44 .1-87-13.6-122.8-39.2l0 178.7c0 33.1-10.1 65.4-29 92.6s-45.6 48-76.6 59.6-64.8 13.5-96.9 5.3-60.9-25.9-82.7-50.8-35.3-56-39-88.9 2.9-66.1 18.6-95.2 40-52.7 69.6-67.7 62.9-20.5 95.7-16l0 89.9c-15-4.7-31.1-4.6-46 .4s-27.9 14.6-37 27.3-14 28.1-13.9 43.9 5.2 31 14.5 43.7 22.4 22.1 37.4 26.9 31.1 4.8 46-.1 28-14.4 37.2-27.1 14.2-28.1 14.2-43.8l0-349.4 88 0c-.1 7.4 .6 14.9 1.9 22.2 3.1 16.3 9.4 31.9 18.7 45.7s21.3 25.6 35.2 34.6c19.9 13.1 43.2 20.1 67 20.1l0 87.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448.5 209.9c-44 .1-87-13.6-122.8-39.2l0 178.7c0 33.1-10.1 65.4-29 92.6s-45.6 48-76.6 59.6-64.8 13.5-96.9 5.3-60.9-25.9-82.7-50.8-35.3-56-39-88.9 2.9-66.1 18.6-95.2 40-52.7 69.6-67.7 62.9-20.5 95.7-16l0 89.9c-15-4.7-31.1-4.6-46 .4s-27.9 14.6-37 27.3-14 28.1-13.9 43.9 5.2 31 14.5 43.7 22.4 22.1 37.4 26.9 31.1 4.8 46-.1 28-14.4 37.2-27.1 14.2-28.1 14.2-43.8l0-349.4 88 0c-.1 7.4 .6 14.9 1.9 22.2 3.1 16.3 9.4 31.9 18.7 45.7s21.3 25.6 35.2 34.6c19.9 13.1 43.2 20.1 67 20.1l0 87.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-icons a .fa.twitter,
.contact-social-icons a .fa.twitter {
  mask: url("data:image/svg+xml,%3Csvg width='300' height='271' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='300' height='271' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.site-header.fixed {
  border-bottom: 1px solid #6b7280;
}

.site-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  padding: 15px 0;
}

.site-header .container {
  position: relative;
}

.search-main {
  width: 30%;
  position: absolute;
  right: 0;
  bottom: -50px;
  display: none;
  right: -100%;
  transition: all 0.3s;
}

.searchshow {
  right: 0;
  display: block;
  transition: all 0.3s;
  z-index: 99;
}

.site-footer {
  border-top: 2px solid #cacaca;
  padding-top: 50px;
}

.ft-logo img {
  height: 63px;
  width: auto;
}

.site-footer h3 {
  color: #0b0f17;
  font-size: 1.125rem;
  padding-bottom: 35px;
}

.page-id-492 .page-header {
  margin-bottom: 30px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ft-menu a {
  color: #606060;
  display: block;
  margin-bottom: 12px;
}

.ft-detail h4 {
  color: #0b0f17;
  font-size: 1.125rem;
  padding-left: 30px;
  position: relative;
}

.ft-detail address {
  color: #606060;
  padding-left: 30px;
  position: relative;
  margin-bottom: 4px;
}

.ft-detail .fa {
  color: #095494;
}

.ft-detail address br {
  display: none;
}

.ft-detail li span {
  position: absolute;
  color: #606060;
  margin-top: 3px;
}

.ft-detail li {
  margin-bottom: 20px;
}

.ft-detail li a {
  color: #606060;
  padding-left: 30px;
  position: relative;
}

.social-icons.ft-icons a {
  border: 1px solid #303d54;
  color: #0e1d38;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.site-footer .social-icons a {
  margin: 0 2px 10px;
}

.social-icons.ft-icons {
  text-align: left;
  margin: 40px 0 0;
}

.social-icons.ft-icons h3 {
  padding-bottom: 20px;
}

.social-icons.ft-icons .site-footer h3 {
  padding-bottom: 20px;
}

.social-icons.ft-icons a:hover {
  background: #315b82;
  color: #fff;
}

.copyright {
  margin-top: 50px;
  border-top: 1px solid #cacaca;
  padding: 15px 0;
  color: #606060;
}

.v-h {
  visibility: hidden;
}

section.as-featured-in {
  background: #142a4a;
  padding: 60px 20px 40px;
}

section.as-featured-in .container-fluid {
  text-align: center;
}

section.as-featured-in ul.logo-list {
  max-width: 1100px;
  width: 100%;
  margin: 30px auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

section.as-featured-in ul.logo-list li {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

@media (max-width: 1100px) {
  section.as-featured-in ul.logo-list li {
    padding: 20px 15px;
  }
  section.as-featured-in ul.logo-list li img {
    max-width: 80%;
  }
}
@media (max-width: 900px) {
  section.as-featured-in ul.logo-list li {
    flex-shrink: unset;
    padding: 20px 15px;
  }
  section.as-featured-in ul.logo-list li img {
    max-width: 195px;
    max-height: 45px;
    width: auto;
    height: auto;
  }
}
@media (max-width: 600px) {
  section.as-featured-in ul.logo-list li {
    flex-shrink: unset;
    padding: 20px 10px;
  }
  section.as-featured-in ul.logo-list li img {
    max-width: 130px;
    max-height: 30px;
    width: auto;
    height: auto;
  }
}
.main-ser {
  padding: 50px 0 80px;
}

.ser-img::before {
  background: #0f172b;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10px;
  bottom: -10px;
  z-index: -1;
}

.main-serbg {
  background: #e9edf2;
  padding: 50px 0 80px;
}

.ser-img {
  position: relative;
  z-index: 9;
}

.main-serbg .ser-img::before {
  left: auto;
  right: -10px;
  bottom: -10px;
  z-index: -1;
}

.abput-span {
  position: relative;
  font-weight: 300;
  color: #666666;
}

.abput-span img {
  padding-right: 20px;
}

.main-ser h4 {
  color: #0b0f17;
  font-size: 32px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.main-ser p {
  color: #606060;
  line-height: 28px;
}

.ser-contnet {
  padding-top: 30px;
}

.border-img {
  position: relative;
  bottom: 10px;
}

.read-more {
  color: #0b0f17;
  display: inline-block;
  padding: 13px 40px;
  border-radius: 30px;
  border: 1px solid #000;
  text-transform: uppercase;
  margin-top: 40px;
}

.read-more:hover {
  background: #0b0f17;
  color: #fff;
}

.questions {
  position: relative;
  overflow: hidden;
  background-color: #0f172b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
}

.questions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.72);
  z-index: 0;
}

.questions .container {
  position: relative;
  z-index: 1;
}

.questions h1 {
  color: #ffffff;
  font-size: 32px;
}

.questions a {
  background-color: #e6c77a;
  background: linear-gradient(135deg, #e6c77a 0%, #c6923e 55%, #9b6d25 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc975", endColorstr="#c3a05b", GradientType=0);
  /* ie6-9 */
  padding: 14px 40px;
  color: #0b0f17;
  border: 1px solid #e6c77a;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 30px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.questions a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #142a4a;
}

.page-header,
.content-headersingletagg {
  padding: 120px 0;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
}

.page-header h5 {
  color: #f7c75d;
  font-size: 26px;
}

.content-headersingletagg {
  margin-bottom: 50px;
}

.page-header h1,
.content-headersingletagg h1 {
  padding: 15px 0;
  color: #fff;
  margin-bottom: 0;
  font-size: 42px;
  text-transform: uppercase;
}

.page-header .container,
.content-headersingletagg .container {
  background-color: rgba(11, 18, 34, 0.62);
}

.attorney-main {
  position: relative;
  background: #0b1222;
  color: #ffffff;
  padding: 90px 0 0;
}

.attorney-main a {
  color: #e6c77a;
}

.attorney-main h2,
.attorney-main h3,
.attorney-main h4 {
  color: #e6c77a;
}

.attorney-main.staff-main {
  padding: 0 0 60px;
}

.attorney-main .team-post-title {
  top: 45px;
  position: absolute;
  left: 40%;
}

.attorney-main.staff-main .team-post-title {
  position: initial;
}

.detail-attorny {
  padding-top: 30px;
}

.detail-attorny h3 {
  font-size: 29px;
  margin-bottom: 0;
}

.detail-attorny p {
  font-size: 41px;
  font-weight: 300;
}

.inner-attorney {
  position: relative;
  margin-bottom: 30px;
}

.inner-attorney::after {
  content: "";
  background: url(../images/SSS.png);
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 520px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.atrony-title {
  text-align: center;
  background: #142a4a;
  border: 5px solid #caced1;
  color: #fff;
  padding: 15px;
  position: absolute;
  bottom: 27px;
  width: 85%;
  left: 27px;
  z-index: 9;
}

.atrony-title h4 {
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.atrony-title span {
  color: #ffffff;
}

.breadcurms ul {
  padding: 0 0 16px;
  margin: 0;
  list-style: none;
}

.breadcurms li {
  display: inline-block;
}

.breadcurms li,
.breadcurms li strong,
.breadcurms a {
  color: #ffffff;
  font-weight: 400;
}

.breadcurms a:hover {
  color: #eac473;
}

.separator {
  margin: 0 8px;
  color: #d1ac62;
}

.main-singlepost {
  background: #fafbfc;
  padding: 70px 0 70px;
  border-bottom: 2px solid #cacaca;
}

.main-singlepost .col-lg-8.col-md-12.col-sm-12 {
  background: #ffffff;
  border: 1px solid #b8b8b8;
  padding: 50px 51px 50px 120px;
}

.content-singleatorney h3 {
  color: #0b0f17;
  font-size: 30px;
  margin-bottom: 35px;
}

.content-singleatorney a,
.content-singleatorney span {
  color: #0e1118;
  font-weight: 600;
  display: block;
}

.content-singleatorney .email {
  margin-top: 7px;
  display: inline-block;
}

.content-singleatorney .fa,
.content-singleatorney a img {
  color: #095494;
  margin-right: 12px;
  width: 15px;
}

.fax {
  display: block;
  margin-top: 8px;
}

.contnt-single {
  margin-top: 40px;
}

.contnt-single.pa-contnt-single {
  margin-top: 0;
}

.contnt-single.pa-contnt-single ul {
  padding-left: 17px;
}

.contnt-single p,
.accom-page-content .content p {
  text-align: justify;
}

.contnt-single li {
  color: #797979;
  line-height: 25px;
}

.img-single {
  border: 1px solid #b8b8b8;
  padding: 7px;
  position: relative;
  margin-top: 110px;
  left: 35px;
  z-index: 9;
  width: 393px;
}

.main-contat-us {
  background: #fafbfc;
}

.main-contat-us {
  padding: 70px 0;
}

.contact-from h2 {
  text-transform: uppercase;
  color: #0b0f17;
  font-size: 28px;
}

.contact-from {
  padding: 30px 20px;
}

.col-lg-6.col-md-12.col-sm-12.bg-white {
  left: 15px;
  margin-top: 40px;
  height: 600px;
  padding-top: 10px;
}

.contact-from p {
  color: #606060;
  margin-bottom: 30px;
}

#newsletter_form_5646523 input:not([type=submit]),
.contact-from input:not([type=submit]),
.contact-from select {
  width: 100%;
  padding-left: 15px;
  border: 1px solid #cbcbcb;
  color: #606060;
  height: 45px;
  margin-bottom: 15px;
}

#newsletter_form_5646523 input,
.contact-from input::placeholder {
  color: #606060;
}

.contact-from textarea {
  width: 100%;
  padding-left: 15px;
  padding-top: 10px;
  border: 1px solid #cbcbcb;
  color: #606060;
  height: 130px;
}

.wpcf7-submit {
  background-color: #e6c77a;
  background: linear-gradient(135deg, #e6c77a 0%, #c6923e 55%, #9b6d25 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc975", endColorstr="#c3a05b", GradientType=0);
  /* ie6-9 */
  padding: 14px 40px;
  color: #0b0f17;
  border: 1px solid #e6c77a;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 15px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
  width: 210px;
}

#newsletter_form_5646523 input {
  width: 300px;
}

.wpcf7-submit:hover {
  background: transparent;
  color: #e6c77a;
}

.contact-usdetail {
  background: -moz-linear-gradient(290deg, rgb(14, 30, 56) 0%, rgb(15, 32, 62) 27%, rgb(13, 39, 72) 49%, rgb(13, 52, 95) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(14, 30, 56)), color-stop(27%, rgb(15, 32, 62)), color-stop(49%, rgb(13, 39, 72)), color-stop(100%, rgb(13, 52, 95)));
  background: -webkit-linear-gradient(290deg, rgb(14, 30, 56) 0%, rgb(15, 32, 62) 27%, rgb(13, 39, 72) 49%, rgb(13, 52, 95) 100%);
  background: -o-linear-gradient(290deg, rgb(14, 30, 56) 0%, rgb(15, 32, 62) 27%, rgb(13, 39, 72) 49%, rgb(13, 52, 95) 100%);
  background: -ms-linear-gradient(290deg, rgb(14, 30, 56) 0%, rgb(15, 32, 62) 27%, rgb(13, 39, 72) 49%, rgb(13, 52, 95) 100%);
  background: linear-gradient(135deg, #0b1222 0%, #0f172b 52%, #142a4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e1e38", endColorstr="#0d345f", GradientType=0);
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  width: 88%;
  float: left;
}

.icon {
  color: #e6c77a;
  font-size: 60px;
}

.contact-usdetail h5 {
  text-transform: uppercase;
}

.contact-usdetail address {
  margin-bottom: 50px;
  line-height: 25px;
}

.contact-usdetail ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-usdetail li {
  margin-bottom: 10px;
}

.contact-usdetail li a {
  color: #fff;
}

.contact-social-icons {
  width: 12%;
  float: left;
  background: #142a4a;
  margin-top: 50px;
  text-align: center;
  display: table;
  height: 555px;
}

.contact-social-icons div {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
}

.contact-social-icons a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #000;
  border-radius: 100%;
  border: 1px solid #fff;
  clear: both;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  margin-bottom: 15px;
}

.contact-social-icons a:hover {
  background: transparent;
  color: #fff;
}

.practice_area_main ul::after {
  display: block;
  content: "";
  clear: both;
}

.practice_area_main ul li {
  float: left;
  width: 50%;
  padding-right: 15px;
}

.main-logos {
  background: #0b1222;
  color: #ffffff;
  padding: 70px 0 70px;
}

.page-template-clients .main-logos a,
.page-template-accomplishments .main-logos a {
  color: #e6c77a;
}

.page-template-clients .main-logos h2,
.page-template-clients .main-logos h3,
.page-template-clients .main-logos h4,
.page-template-accomplishments .main-logos h2,
.page-template-accomplishments .main-logos h3,
.page-template-accomplishments .main-logos h4 {
  color: #e6c77a;
}

.main-logos .col-lg-3:nth-child(12) .logo-attorney img {
  max-width: 200px;
}

/*.accom-detail::before{
    display: block;
    content: '';
    margin-top: -120px;
    padding-top: 120px;
}*/
.accom-page-content .content {
  background: #0f172b;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #142a4a;
  height: 100%;
}

.accom-page-content .content .icon span {
  display: inline-block;
  width: 150px;
  line-height: 150px;
  height: 150px;
  background-color: #0b1222;
  border-radius: 100%;
}

.accom-page-content .content .icon {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.accom-page-content .content h3 {
  font-size: 20px;
}

/*
.content.cont-no_1 {
    height: 558px;
}
.content.cont-no_7 {
    height: 409px;
}
.content.cont-no_3 {
    height: 532px;
}
.content.cont-no_5 {
    height: 459px;
}
.content.cont-no_11 {
    height: 385px;
}
*/
.page-template-testimonials .accom-detail,
.page-template-clients .accom-detail,
.page-template-accomplishments .accom-detail {
  margin-bottom: 30px;
}

.logo-attorney {
  width: 100%;
  height: 200px;
  display: table;
  background: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-attorney span {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

.logo-attorney span img {
  max-width: 235px;
}

.main-logos h2 {
  width: 75%;
  margin: auto;
  margin-bottom: 15px;
  font-size: 24px;
}

.title-attroney {
  margin-bottom: 50px;
}

.latest-blog {
  padding: 70px 0;
}

.blog-postcontnt h3 {
  color: #000;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-postcontnt p {
  margin: 20px 0 35px;
  font-weight: 300;
  color: #606060;
}

.blog-postcontnt h4 {
  color: #0b0f17;
  font-size: 21px;
  margin-bottom: 20px;
}

.post-date,
.post-comntcount {
  color: #606060;
  margin-right: 15px;
  font-weight: 300;
}

.post-comntcount {
  margin-right: 0;
}

.post-comntcount a {
  color: #606060;
  margin-right: 15px;
  font-weight: 300;
}

.blog-postcontnt .fa {
  color: #4d83b1;
  margin-right: 5px;
}

.blog-postcontnt {
  margin-bottom: 40px;
  background: #ffffff;
  padding: 25px;
}

.read-morebtn {
  border: 1px solid #142a4a;
  display: inline-block;
  padding: 13px 40px;
  color: #142a4a;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.read-morebtn:hover {
  background: #142a4a;
  color: #fff;
}

.sub-pagenation-div {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.sidebar-blog ul {
  padding: 0;
}

.sidebar-blog aside ul {
  padding: 25px 30px;
  margin: 0;
  list-style: none;
}

.sidebar-blog li {
  width: 100%;
  color: #606060;
  text-transform: uppercase;
  border-bottom: 1px solid #797979;
  margin-bottom: 10px;
  padding-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.sidebar-blog li::before {
  font-family: FontAwesome !important;
  content: "\f105" !important;
  margin-right: 10px;
  height: 50px;
  position: absolute;
  left: 0;
}

.sidebar-blog li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-blog li a {
  color: #606060;
  margin-right: 8px;
}

.sidebar-blog h3.widget-title,
.sidebar-blog .widget-title {
  background: #142a4a;
  color: #fff;
  padding: 14px;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding-left: 30px;
}

.sidebar-blog aside {
  background: #ffffff;
  margin-bottom: 40px;
}

.pa-sidebar.sidebar-blog aside ul {
  padding: 15px;
}

.pa-sidebar.sidebar-blog li {
  text-transform: capitalize;
}

/*
.recent-posts {
    padding: 25px;
}
*/
.thumb {
  width: 30%;
  float: left;
}

.recent-inner {
  width: 70%;
  float: left;
  padding-right: 10px;
}

.recent-inner h4 {
  color: #797979;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.recent-inner p {
  color: #0b0f17;
  font-weight: 300;
  margin-bottom: 0;
}

.recentpost {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.recentpost:last-child {
  margin-bottom: 0;
}

.search-icon.ms_mobile {
  display: none;
}

.addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
  clear: none;
  width: 50%;
  float: right;
  text-align: right;
  margin-top: 40px;
  margin-bottom: 0;
}

.addtoany_share_save_container.addtoany_content.addtoany_content_bottom a {
  border: 1px solid #c4c3c3;
  border-radius: 100%;
  padding-top: 6px;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.text-share {
  width: 50%;
  float: left;
  margin-top: 28px;
}

.text-share h6 {
  color: #0b0f17;
  text-transform: uppercase;
}

.full-border {
  border-bottom: 1px solid #dedede;
  margin: 50px -25px 10px -25px;
}

.comment-main h3 {
  background: -moz-linear-gradient(9deg, rgb(14, 31, 59) 0%, rgb(13, 37, 71) 48%, rgb(13, 52, 95) 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(14, 31, 59)), color-stop(48%, rgb(13, 37, 71)), color-stop(100%, rgb(13, 52, 95)));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(9deg, rgb(14, 31, 59) 0%, rgb(13, 37, 71) 48%, rgb(13, 52, 95) 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(9deg, rgb(14, 31, 59) 0%, rgb(13, 37, 71) 48%, rgb(13, 52, 95) 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(9deg, rgb(14, 31, 59) 0%, rgb(13, 37, 71) 48%, rgb(13, 52, 95) 100%);
  /* ie10+ */
  background: linear-gradient(120deg, #0b1222 0%, #142a4a 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e1f3b", endColorstr="#0d345f", GradientType=1);
  /* ie6-9 */
  color: #fff;
  text-transform: uppercase;
  padding: 25px 30px;
  display: block;
}

h3.comment-reply-title,
.comment-notes,
.comment-form-cookies-consent,
.comment-form-author label,
.comment-form-email label,
.comment-form-comment label,
h3.comments-title {
  display: none;
}

.comment-body {
  overflow: hidden;
}

.comment-form-author,
.comment-form-email {
  width: 50%;
  float: left;
  margin-bottom: 0;
  margin-top: 40px;
}

.comment-form-author input,
.comment-form-email input {
  width: 98%;
  padding-left: 15px;
  border: 1px solid #cbcbcb;
  color: #606060;
  height: 45px;
  margin-bottom: 15px;
}

.comment-form-email {
  text-align: right;
}

.comment-form-comment {
  width: 100%;
  clear: both;
  margin-bottom: 0;
}

.comment-form-comment textarea {
  width: 100%;
  padding-left: 15px;
  border: 1px solid #cbcbcb;
  color: #606060;
  height: 145px;
  margin-bottom: 15px;
  padding-top: 10px;
}

.comment-main {
  background: #ffffff;
  padding-bottom: 30px;
}

.comment-main #comments {
  padding: 0 30px;
  padding-top: 30px;
}

.comment-main .submit {
  width: auto;
  height: auto;
  background: #e6c77a;
  padding: 14px 40px;
  color: #0b0f17;
  border: 1px solid #e6c77a;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0px;
  cursor: pointer;
  transition: all 0.3s;
  cursor: pointer;
}

.comment-main .submit:hover {
  background: transparent;
  color: #e6c77a;
}

.comment-main ul {
  list-style: none;
}

.practice-areas-main {
  padding: 40px 0 60px;
  border-bottom: 1px solid #dfdfdf;
}

.practice-image {
  width: 280px;
  height: 280px;
  border-radius: 100%;
  background: #0f172b;
  text-align: center;
  padding: 50px;
  line-height: 180px;
}

.practice-contnt h2 {
  font-size: 30px;
}

.practice-contnt__learn-more {
  display: inline-block;
  margin-top: 10px;
  color: #142a4a;
  font-weight: bold;
  text-transform: uppercase;
}

.practice-contnt__learn-more:hover {
  color: #0b0f17;
}

.practice-contnt {
  width: 100%;
  height: 280px;
  display: table;
}

.practice-contnt div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.same-borderclass {
  padding-bottom: 50px;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 50px;
}

.same-borderclass::before {
  display: block;
  content: "";
  padding-top: 120px;
  margin-top: -120px;
}

.same-borderclass.second-div:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}

.blog-thumb img {
  object-fit: cover;
  height: 400px;
  width: 100%;
}

.latestlaw-class {
  box-shadow: 0 0 20px #6b7280;
}

.avatar {
  margin-right: 15px;
  position: relative;
  top: 5px;
  width: 70px;
  height: 70px;
  border-radius: 5px;
}

.comment-awaiting-moderation {
  padding-left: 50px;
  display: inline-block;
}

.comment-meta.commentmetadata {
  padding-left: 50px;
  color: #0b0f17;
  margin-bottom: 10px;
}

.comment-meta.commentmetadata a {
  color: #0b0f17;
}

.comment-body p {
  padding-left: 50px;
}

.reply {
  padding-left: 50px;
}

.reply a {
  width: auto;
  height: auto;
  background: #e6c77a;
  padding: 10px 30px;
  color: #0b0f17;
  border: 1px solid #e6c77a;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  position: relative;
  bottom: 8px;
}

.dis767,
.m570-dis {
  display: none !important;
}

.hide767,
.m570-hide {
  display: block !important;
}

.single-menu {
  background: #c6923e;
  padding: 20px 0;
}

.single-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-menu li {
  display: inline-block;
  margin-right: 42px;
  padding-right: 42px;
  border-right: 1px solid #0e1d38;
}

.single-menu a {
  color: #0e1d38;
  font-weight: 600;
}

.single-menu li:last-child {
  margin: 0;
  border: 0;
  padding: 0;
}

.single-practice-areas .single-menu li {
  margin: 0;
  border: 0;
  padding: 0;
}

.single-practice-areas .single-menu li > span {
  display: block;
}

@media (min-width: 512px) {
  .single-practice-areas .single-menu ul {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
  }
  .single-practice-areas .single-menu li {
    flex: 1;
    border-right: 1px solid currentColor;
    padding-right: 15px;
  }
  .single-practice-areas .single-menu li:last-child {
    border: none;
  }
}
.page-headerpractice {
  background: #0f172b;
  padding-top: 50px;
  color: #fff;
}

.first-columnpratice {
  max-width: 450px;
}

.first-columnpratice h3,
.first-columnpratice h1 {
  font-size: 28px;
  text-align: center;
}

.practice-form {
  position: relative;
  max-width: 525px;
  float: right;
}

.area-subheading {
  color: #ffffff;
  font-size: 20px;
}

.practice-form h1,
.practice-form h2 {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 20px;
}

.practice-form input {
  width: 100%;
  color: #ffffff;
  padding: 0 40px;
  border: 1px solid #fff;
  height: 52px;
  background: transparent;
  border-radius: 30px;
  margin-bottom: 15px;
}

.practice-form .wpcf7-form-control.wpcf7-submit {
  background: #ffffff;
  color: #0c2a4f;
  float: left;
  text-transform: uppercase;
  width: 140px;
  text-align: center;
  padding: 0;
  margin-top: 15px;
  cursor: pointer;
}

.practice-form .wpcf7-form-control.wpcf7-submit:hover {
  background: #c6923e;
}

.practice-form br {
  display: none;
}

.image-and-phonenumber {
  position: relative;
}

.image-and-phonenumber a {
  text-align: center;
  padding: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  font-size: 26px;
  cursor: pointer;
  right: 0;
  margin: 0 auto;
  color: #142a4a;
  background-color: #c6923e;
  border-radius: 0;
  display: block;
  height: 50px;
  line-height: 50px;
  width: 280px;
}

.phone-attorney {
  height: 52px;
  width: 180px;
  display: block;
  background: #c6923e;
  border-radius: 30px;
  text-align: center;
  padding: 0;
  color: #0c2a4f;
  position: absolute;
  line-height: 52px;
  bottom: 15px;
  left: 155px;
  cursor: pointer;
}

.phone-attorney:hover {
  background: #ffffff;
}

.practice-form span.wpcf7-not-valid-tip {
  color: #f00;
  display: block;
  padding-left: 40px;
}

.practice-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid #f7e700;
  position: absolute;
  margin-top: 36px;
}

.icon-divtwo {
  width: 25%;
  float: left;
}

.content-divtwo {
  width: 75%;
  float: left;
  padding-left: 15px;
}

.content-divtwo .sml-txt {
  color: #0e1d38;
  margin-bottom: 0;
}

.content-divtwo h3 {
  color: #0e1d38;
  font-size: 20px;
  margin-bottom: 0;
}

.subheading-span {
  color: #0c2a4f;
  display: block;
}

.slick-slide .icon-divtwo img {
  width: 60px;
}

.slider-attorney {
  padding: 50px 0;
  background: #f5f6f8;
}

.slider-attorney .slick-prev,
.slider-attorney .slick-next {
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 100%;
  line-height: 46px;
  cursor: pointer;
}

.slider-attorney .slick-slide {
  outline: none;
  padding-left: 45px;
}

.slider-attorney .slick-prev {
  left: -70px !important;
}

.slider-attorney .slick-prev:hover,
.slider-attorney .slick-next:hover,
.slider-attorney .slick-prev:active,
.slider-attorney .slick-prev:focus,
.slider-attorney .slick-next:focus,
.slider-attorney .slick-next:active {
  background: #ffffff;
  border-radius: 100%;
}

.slick-prev::before {
  content: url(../images/down.png) !important;
}

.slick-next::before {
  content: url(../images/down-arrow.png) !important;
}

.pa-sidebar .widget_media_image {
  text-align: center;
  background: #fafbfc;
}

.pa-sidebar .widget_media_image img {
  background: #fafbfc;
  height: 125px !important;
  width: auto;
  display: block;
  margin: auto;
}

.inner_qta {
  color: #fff;
  /*text-transform: lowercase;*/
  margin: 29px auto 0;
  opacity: 0.9;
  max-width: 800px;
}

/*...........Youtube & Vimeo Css.................*/
.youtube,
.vimeo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 200ms ease-out;
  cursor: pointer;
  margin: 0 auto 0 auto;
  height: 350px;
  border-radius: 5px;
  width: 100%;
}

.entry-content .textblok {
  padding-left: 0px !important;
}

.youtube iframe,
.vimeo iframe {
  margin: 40px auto 0;
}

.youtube .play,
.vimeo_section .vimeoplay {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(11, 18, 34, 0.62) 72%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 38px);
  overflow: hidden;
}

.youtube .play::after,
.vimeo_section .vimeoplay::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.youtube .play::before,
.vimeo_section .vimeoplay::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #959595;
  top: -15%;
  left: -15%;
  background: #7b8492;
}

.youtube .play:hover::after,
.vimeo_section .vimeoplay:hover::after {
  border-left: 15px solid #959595;
  transform: scale(20);
}

.youtube .play:hover::before,
.vimeo_section .vimeoplay:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
#ajax-loader-cform {
  height: 16px;
  margin: 20px auto 0;
  width: 16px;
  display: none;
}

#report_submit {
  width: 210px;
}

/* hide recaptcha v3 badge */
.grecaptcha-badge {
  visibility: hidden;
}

/*  Media Query  */
@media (max-width: 1920px) {
  .attorney-main .team-post-title {
    left: 40%;
  }
}
@media (max-width: 1680px) {
  .attorney-main .team-post-title {
    left: 39%;
  }
}
@media (max-width: 1440px) {
  .attorney-main .team-post-title {
    left: 37%;
  }
}
@media (max-width: 1366px) {
  .attorney-main .team-post-title {
    left: 36.5%;
  }
  .logo-attorney span img {
    max-width: 100%;
    padding: 10px;
  }
  .main-logos .col-lg-3:nth-child(12) .logo-attorney img {
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  .single-practice-areas .page-header h1 {
    font-size: 34px;
  }
  .attorney-main .team-post-title {
    left: 35.5%;
  }
  .slider-attorney .slick-prev {
    left: -35px !important;
  }
  .banner-inner {
    height: 404px;
  }
}
@media (max-width: 1199px) {
  .img-single {
    left: 0;
  }
  .hd_phone {
    font-size: 19px;
  }
  .banner-inner {
    height: 404px;
  }
}
@media (max-width: 1170px) {
  .single-menu li {
    margin-right: 15px;
    padding-left: 15px;
  }
  .single-menu a {
    font-size: 14px;
  }
  .icon-divtwo {
    width: 30%;
  }
  .practice-form h1, .practice-form h2 {
    font-size: 35px;
  }
  .content-divtwo {
    width: 70%;
    padding-left: 10px;
  }
  .logo-attorney {
    padding: 10px;
  }
  .sidebar-blog.pa-sidebar .widget-title {
    font-size: 16px;
  }
  .practice-contnt h2 {
    font-size: 26px;
  }
  .attorney-main .team-post-title {
    left: 37.5%;
  }
  .content.cont-no_1 {
    height: 632px;
  }
  .content.cont-no_3 {
    height: 608px;
  }
  .content.cont-no_8 {
    height: 409px;
  }
  .content.cont-no_5 {
    height: 483px;
  }
  .content.cont-no_7 {
    height: 484px;
  }
  .content.cont-no_11 {
    height: 404px;
  }
  .content.cont-no_13 {
    height: 409PX;
  }
  .content.cont-no_3 h3 {
    height: 83px;
  }
}
@media (max-width: 1199px) {
  .nav-menu li {
    margin: 0 6px 0 0;
  }
  .nav-menu li a {
    font-size: 11px;
  }
  .detail-attorny p {
    font-size: 30px;
  }
  .recent-inner {
    padding-right: 0;
    padding-left: 10px;
  }
  .recent-inner h4 {
    font-size: 12px;
  }
  .recent-inner p {
    font-size: 11px;
  }
  .recent-posts {
    padding: 13px;
  }
  .inner-experince {
    width: 65%;
  }
}
@media (max-width: 1080px) {
  #personalinjury_popup .modal-dialog {
    max-width: 100%;
    padding: 0 20px;
  }
  .atrony-title h4 {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  ul.nav-menu li.open ul.sub-menu, ul.nav-menu li.open:hover ul.sub-menu {
    background: rgba(11, 18, 34, 0.94) !important;
  }
  .nav-menu .sub-menu ul, .nav-menu .children ul {
    left: 0;
  }
}
@media (max-width: 991px) {
  .page-header h1, .content-headersingletagg h1 {
    font-size: 32px;
  }
  .h1,
  .header-txt {
    text-align: center;
  }
  /*.social-icons {
      float: none;
      border-right: none;
      padding: 7px 0 0;
      text-align: center;
  }
  .hd_phone {
      //font-size: 18px;
      //text-align: center;
      //display: block;
      //margin: 10px 0 0;
  }*/
  .logo-attorney {
    height: 150px;
  }
  .page-headerpractice {
    text-align: center;
  }
  .logo-attorney span img {
    padding: 5px;
  }
  .single-practice-areas .page-header h1 {
    font-size: 24px;
  }
  .content.cont-no_13 {
    height: 483PX;
  }
  .content.cont-no_15 {
    height: 408px;
  }
  .content.cont-no_11 {
    height: 482px;
  }
  .content.cont-no_8 {
    height: 458px;
  }
  .content.cont-no_7 {
    height: 557px;
  }
  .content.cont-no_7 h3 {
    height: 105px;
  }
  .content.cont-no_5 {
    height: 631px;
  }
  .content.cont-no_3 {
    height: 877px;
  }
  .content.cont-no_1 {
    height: 781px;
  }
  .content.cont-no_3 h3 {
    height: 203px;
  }
  .single-practice-areas .contnt-single li {
    text-align: left;
  }
  .pa-sidebar.sidebar-blog li a {
    font-size: 13px;
  }
  .pa-sidebar.sidebar-blog aside ul {
    padding: 15px 10px;
  }
  .sidebar-blog.pa-sidebar .widget-title {
    font-size: 13px;
    padding: 14px 5px;
  }
  .nav-menu li:hover > a, .nav-menu li a:hover, .nav-menu li:focus > a, .nav-menu li a:focus {
    color: #e2bc6d;
  }
  .nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a {
    color: #e2bc6d;
    border-bottom: 0;
  }
  .nav-menu .sub-menu, .nav-menu .children {
    padding: 15px 0;
  }
  .attorney-main .team-post-title {
    left: 39%;
  }
  #menuToggle {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 19px;
    right: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    z-index: 9999999;
  }
  #menuToggle input {
    width: 32px !important;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    top: -6px;
  }
  #menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #0b0f17;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #ffffff;
  }
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  ul.nav-menu li ul.sub-menu,
  ul.nav-menu li:hover ul.sub-menu {
    display: none !important;
  }
  ul.nav-menu li.open ul.sub-menu,
  ul.nav-menu li.open:hover ul.sub-menu {
    display: block !important;
  }
  ul.sub-menu.open-submenu {
    display: block !important;
    background-color: rgba(11, 18, 34, 0.94) !important;
    top: 0 !important;
  }
  .mobilesubmenu.open {
    background-color: rgba(11, 18, 34, 0.94) !important;
  }
  ul.sub-menu {
    display: none !important;
    position: relative !important;
    top: -100% !important;
  }
  .site-logo {
    float: left;
  }
  .mobilesubmenu i {
    position: relative;
    top: 13px;
    right: 18px;
  }
  .nav-bar li {
    display: block;
    margin: 0;
    width: 100%;
    top: 0;
    border-bottom: 1px solid #717171;
    overflow: hidden;
    float: left;
  }
  .mobilesubmenu {
    display: block;
    position: absolute;
    top: 0;
    cursor: pointer;
    color: #ffffff;
    right: 0;
    z-index: 9999;
    border-left: 1px solid #717171;
    padding-left: 36px;
    height: 46px;
  }
  .nav-menu .sub-menu,
  .nav-menu .children {
    width: 100%;
  }
  ul.sub-menu li {
    display: block;
  }
  ul.sub-menu,
  .open-submenu {
    transition: all 1s;
  }
  .openmenu {
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
    color: #333333;
    float: right;
  }
  .nav-bar.open {
    right: 0;
  }
  .nav-menu li a {
    color: #ffffff;
    float: left;
    font-weight: normal;
    font-size: 16px;
    padding: 15px 0;
  }
  ul.sub-menu li:last-child {
    border: 0px !important;
  }
  ul.sub-menu li a {
    width: 100%;
    color: #ffffff !important;
    font-weight: normal;
  }
  ul.sub-menu li {
    margin: 0px;
  }
  ul.sub-menu li:last-child a {
    text-align: left;
    color: #ffffff !important;
    padding: 15px;
  }
  .nav-menu li:last-child {
    border: 0px !important;
  }
  .nav-menu li:last-child a,
  .nav-menu .sub-menu,
  .nav-menu .children {
    left: 0;
    width: 100% !important;
  }
  .nav-bar {
    background-color: #172033;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    padding: 15px;
    padding-top: 60px;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    z-index: 999;
  }
  .closebtn {
    display: block;
    position: absolute;
    top: -55px;
    font-size: 20px;
    right: 0;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 20px;
  }
  .search-icon {
    display: none;
  }
  .search-icon.ms_mobile {
    width: auto;
    display: none;
    position: absolute;
    top: -6px;
    right: 0;
  }
  .menuToggle.close_top {
    top: 30px !important;
    position: fixed !important;
  }
  .detail-attorny p {
    font-size: 22px;
  }
  .atrony-title {
    left: 15px;
  }
  .blog-postcontnt h3 {
    font-size: 18px;
  }
  .practice-areas-main {
    text-align: center;
  }
  .practice-contnt {
    height: auto;
    display: block;
    margin-top: 20px;
  }
  .practice-image {
    margin: 0 auto;
  }
  .practice-contnt h2 {
    font-size: 26px;
  }
  .img-single {
    position: relative;
    margin: 0 auto 30px;
    left: auto;
    z-index: 9;
    text-align: center;
  }
  .content-singleatorney,
  .contnt-single {
    text-align: center;
  }
  .inner-experince {
    width: 100%;
    background-position: center !important;
  }
  .main-singlepost .col-lg-8.col-md-12.col-sm-12 {
    padding: 30px;
  }
  .page-headerpractice .col-lg-5.col-md-12.col-sm-12:first-child {
    order: 2;
  }
  .first-columnpratice {
    padding-top: 20px;
  }
  .practice-form,
  .first-columnpratice {
    max-width: 100%;
    float: none;
  }
  .phone-attorney {
    bottom: -78px;
  }
}
@media (max-width: 900px) {
  .banner-inner {
    height: 446px;
  }
  ul.nav-menu ul a, .nav-menu ul ul a {
    width: 328px;
    padding: 12px;
    font-size: 12px;
  }
  #personalinjury_popup h3 {
    font-size: 33px;
  }
  #personalinjury_popup strong {
    font-size: 30px;
  }
  #personalinjury_popup span.call-us-popup {
    font-size: 32px;
  }
  .inner-experince h2 {
    font-size: 27px;
    padding: 0 70px;
  }
  .questions h1 {
    font-size: 29px;
    font-weight: bold;
  }
  .inner_qta {
    font-size: 15px;
  }
}
@media (max-width: 830px) {
  .attorney-main .team-post-title {
    left: 37%;
  }
}
@media (max-width: 767px) {
  .wpcf7-submit {
    margin: 20px auto 0;
  }
  .social-icons.ft-icons {
    text-align: center;
    margin: 0 0 15px;
  }
  .social-icons.ft-icons h3 {
    text-align: center;
  }
  #personalinjury_popup h3 {
    font-size: 30px;
  }
  #personalinjury_popup .modal-dialog {
    margin: 220px auto 1.75rem;
  }
  #personalinjury_popup .newsletter-popup {
    width: 80%;
  }
  #personalinjury_popup strong {
    font-size: 27px;
  }
  .single-practice-areas .page-header h1 {
    font-size: 19px;
    padding-bottom: 0;
  }
  .logo-attorney {
    height: 217px;
  }
  .content.cont-no_7 h3, .content.cont-no_13, .content.cont-no_11, .content.cont-no_8, .content.cont-no_7, .content.cont-no_5, .content.cont-no_3, .content.cont-no_1, .accom-page-content .content, .content.cont-no_3 h3, .content.cont-no_11 h3, .content.cont-no_17 h3 {
    height: auto;
  }
  .single-practice-areas .page-header h1 {
    font-size: 24px;
  }
  .practice-contnt h2 {
    font-size: 21px;
  }
  .attorney-main.staff-main .team-post-title {
    text-align: center;
    margin-bottom: 15px;
  }
  .attorney-main {
    padding: 30px 0 0;
  }
  .attorney-main .team-post-title {
    padding-top: 25px;
    position: initial;
  }
  .dis767 {
    display: block !important;
  }
  .hide767 {
    display: none !important;
  }
  .banner-inner {
    height: 440px;
  }
  .inner-experince {
    width: 100%;
  }
  .site-footer {
    text-align: center;
  }
  .ft-detail h4,
  .ft-detail address {
    padding-left: 0;
  }
  .ft-detail li span {
    position: relative;
    display: block;
  }
  .ft-detail li a {
    padding-left: 0;
  }
  .header-txt {
    text-align: center;
  }
  .social-icons {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .nav-bar {
    padding-top: 60px;
  }
  .ft-logo {
    margin-bottom: 30px;
  }
  .site-footer h3 {
    padding-bottom: 10px;
    margin-top: 15px;
  }
  .detail-attorny {
    text-align: center;
    margin-bottom: 15px;
  }
  .atrony-title {
    left: 0;
    right: 0;
    margin: auto;
    width: 61%;
  }
  .inner-attorney {
    text-align: center;
  }
  .main-logos h2 {
    font-size: 24px;
  }
  .inner-experince {
    border: 8px solid #fff;
    background-image: none !important;
    background-color: #142a4a !important;
  }
  .col-lg-6.col-md-12.col-sm-12.bg-white {
    height: auto;
    margin-bottom: 30px;
  }
  .contact-social-icons {
    height: 636px;
    margin-top: 0;
  }
}
@media (max-width: 667px) {
  img.alignleft,
  img.alignnone,
  img.alignright {
    margin: 0 auto 20px;
    display: block;
    float: none;
  }
}
@media (max-width: 600px) {
  .blog-thumb img {
    height: auto;
  }
  #personalinjury_popup .newsletter-popup {
    width: 100%;
  }
  #personalinjury_popup input.es_txt_email {
    height: 55px;
    line-height: 55px;
  }
  #personalinjury_popup input.es_submit_button {
    height: 55px;
    line-height: 52px;
  }
  #personalinjury_popup strong {
    font-size: 23px;
  }
  #personalinjury_popup h3 {
    font-size: 24px;
  }
  #personalinjury_popup span#spinner-image {
    float: none;
    position: relative;
    right: 0;
    top: 0;
  }
  #personalinjury_popup .modal-dialog {
    margin: 270px auto 1.75rem;
  }
}
@media (max-width: 570px) {
  .site-footer .ft-detail li,
  .site-footer .ft-detail li:nth-child(2),
  .site-footer .ft-detail li:nth-child(3) {
    width: 100%;
    float: none;
  }
  .practice-contnt {
    margin-top: 0;
  }
  .logo-attorney span {
    padding: 15px;
  }
  .logo-attorney {
    height: 240px;
  }
  .same-borderclass {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .attorney-main.staff-main {
    padding: 0 0 50px;
  }
  .practice-contnt h2 {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding-left: 130px;
    font-size: 25px;
  }
  /*.same-borderclass.second-div .practice-image.m570-dis {
      right: 17px;
  }*/
  .title-attroney {
    margin-bottom: 30px;
  }
  .main-logos {
    padding: 40px 0 70px;
  }
  .main-logos h2 {
    font-size: 22px;
    width: 100%;
  }
  .practice-contnt div {
    display: block;
  }
  /*same-borderclass.second-div .practice-contnt h2 {
      padding-left: 0px;
      text-align: left;
      padding-right: 130px;
      float: right !important;
      width: 100%;
  }*/
  .same-borderclass .practice-contnt h2 {
    text-align: center !important;
    padding-left: 130px;
    min-height: 130px;
  }
  .practice-image.m570-dis {
    width: 130px;
    height: 130px;
    position: absolute;
    line-height: normal;
    padding: 17px 0;
    overflow: hidden;
  }
  .practice-image.m570-dis img {
    height: 87px;
  }
  .page-header h1 {
    font-size: 30px;
  }
  .page-header h5 {
    font-size: 18px;
  }
  .page-header {
    padding: 0;
    height: 200px;
    display: flex;
    align-items: center;
  }
  .ft-detail li:nth-child(2),
  .ft-detail li:nth-child(3) {
    width: 50%;
    float: left;
  }
  .m570-dis {
    display: block !important;
  }
  .m570-hide {
    display: none !important;
  }
  .questions {
    background-size: cover !important;
    background-position: center !important;
  }
  .site-logo {
    width: 50%;
  }
  .site-logo img {
    width: auto;
  }
  #menuToggle {
    right: 15px;
  }
  .search-icon.ms_mobile {
    display: none;
    right: 30px;
  }
  .searchshow {
    right: 15px;
    top: 48px;
    width: 60%;
  }
  .thumb {
    width: 15%;
  }
}
@media (max-width: 485px) {
  .single-menu {
    text-align: center;
  }
  .single-menu li {
    margin-right: 15px;
    padding-left: 15px;
    border: 0;
    margin: 0;
    display: block;
  }
  .practice-form h1, .practice-form h2 {
    font-size: 25px;
  }
  .area-subheading {
    font-size: 15px;
  }
  .single-practice-areas .page-header h1 {
    font-size: 17px;
  }
  .first-columnpratice h3 {
    font-size: 20px;
  }
  ul.sub-menu li a {
    font-size: 13px;
  }
  .logo-attorney img {
    max-width: 130px;
  }
  .phone-attorney {
    width: 135px;
  }
  .practice-contnt h2 {
    font-size: 18px;
  }
  .site-logo {
    width: 35%;
  }
  #menuToggle {
    top: 14px;
  }
  .search-icon.ms_mobile {
    top: -11px;
  }
  .main-contat-us {
    padding: 0 0 50px;
  }
  .page-header h5 {
    font-size: 14px;
  }
  .text-share,
  .addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
    width: 100%;
    text-align: center;
  }
  .comment-main h3 {
    font-size: 20px;
  }
  .comment-form-author,
  .comment-form-email {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .contact-usdetail {
    padding: 30px 20px;
    width: 100%;
  }
  .contact-social-icons {
    height: auto;
    margin-top: 0;
    width: 100%;
    padding: 20px 0 5px;
  }
  .close_top {
    right: 5px !important;
  }
  .contact-from {
    padding-left: 5px;
  }
  .comment-main #comments {
    padding: 0 10px;
    padding-top: 30px;
  }
  .avatar {
    border-radius: 100%;
    margin-right: 15px !important;
    position: relative;
    top: 5px;
    display: inline-block !important;
  }
  .comment-main ul {
    padding-left: 10px;
  }
  .addtoany_share_save_container.addtoany_content.addtoany_content_bottom a {
    margin-bottom: 10px;
  }
  .ft-detail li:nth-child(1) {
    width: 79%;
    margin: 0 auto;
  }
  .main-ser h4 {
    font-size: 28px;
  }
  .questions {
    padding: 40px 0;
    background-size: cover !important;
  }
  .questions h1 {
    font-size: 26px;
  }
  .inner-experince h2 {
    font-size: 26px;
    padding: 0;
  }
  .social-icons.ft-icons {
    text-align: center;
    margin: 40px 0;
  }
  .wpcf7-submit {
    margin: 20px auto 0;
  }
}
@media (max-width: 414px) {
  #personalinjury_popup .modal-body {
    padding: 0 1rem 30px;
  }
  #personalinjury_popup .modal-dialog {
    margin: 220px auto 1.75rem;
  }
  #personalinjury_popup strong {
    font-size: 18px;
  }
  #personalinjury_popup input.es_submit_button {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  #personalinjury_popup span.call-us-popup {
    font-size: 23px;
  }
  #personalinjury_popup p {
    font-size: 17px;
  }
  #personalinjury_popup .newsletter-popup {
    margin: 40px auto 20px;
  }
  .single-practice-areas .page-header h1 {
    font-size: 14px;
  }
  .img-single {
    width: 100%;
  }
  .logo-attorney {
    height: 165px;
  }
  .single-practice-areas .breadcurms li, .single-practice-areas .breadcurms li strong {
    font-size: 11px;
  }
  .same-borderclass .practice-contnt h2 {
    padding-left: 100px;
    height: 100px;
  }
  .main-serbg .ser-img::before {
    bottom: -22px;
  }
  /*.ser-img::before {
      height: 300px;
  }*/
  .questions {
    padding: 60px 0;
  }
  .practice-image.m570-dis {
    height: 100px;
    width: 100px;
  }
  .practice-image.m570-dis img {
    height: 65px;
  }
  .same-borderclass .practice-contnt h2 {
    min-height: 100px;
  }
  .experience {
    padding: 80px 0;
  }
  .read-more {
    margin-top: 0px;
  }
  .main-logos h2 {
    font-size: 20px;
  }
  .main-logos {
    padding: 40px 0 40px;
  }
  .page-header h1 {
    font-size: 28px;
  }
  .sub-pagenation-div ul {
    padding: 0;
  }
}
@media (max-width: 375px) {
  .practice-contnt h2 {
    font-size: 20px;
  }
  .page-header h1 {
    font-size: 26px;
  }
  .site-logo {
    width: 40%;
  }
  .questions h1 {
    font-size: 25px;
  }
  .atrony-title {
    width: 80%;
  }
  .contact-from h2 {
    font-size: 24px;
  }
}
@media (max-width: 360px) {
  .logo-attorney img {
    max-width: 110px;
  }
  .searchshow {
    width: 90%;
  }
  .ft-detail li:nth-child(1) {
    width: 88%;
  }
  .inner-experince h2 {
    font-size: 25px;
  }
  .pagination {
    margin: 0px 0 20px;
  }
  .blog-postcontnt h3 {
    font-size: 16px;
  }
  .thumb {
    width: 25%;
  }
}
@media (max-width: 320px) {
  #personalinjury_popup h3 {
    font-size: 20px;
  }
  #personalinjury_popup strong {
    font-size: 16px;
  }
  #personalinjury_popup span.call-us-popup {
    font-size: 19px;
  }
  #personalinjury_popup p {
    font-size: 15px;
  }
  .same-borderclass.second-div .practice-contnt h2 {
    padding-right: 42px;
  }
  .same-borderclass .practice-contnt h2 {
    font-size: 14px;
  }
  .same-borderclass .practice-contnt h2 {
    padding-left: 100px;
    padding-right: 0 !important;
  }
  .site-footer {
    overflow: hidden;
  }
  .ft-detail li a {
    font-size: 13px;
  }
  .site-logo {
    width: 46%;
  }
  .header-txt span {
    font-size: 11px;
  }
  .inner-experince {
    padding: 40px 15px;
  }
  .atrony-title {
    width: 90%;
  }
  .main-logos h2 {
    font-size: 17px;
  }
  .page-header h1 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=theme.css.map */
