/* Slider */
* {
  min-height: 0;
  min-width: 0;
}
.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;
  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 {
  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;
  width: 150px;
  margin: 0 auto;
}
.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;
}

/* Controls */
.slide-arrow {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slide-arrow.prev-arrow.slick-disabled::before {
  background-position: -740px -2px;
}
.slide-arrow.next-arrow.slick-disabled::before {
  background-position: -768px -2px;
}
.prev-arrow::before,
.next-arrow::before {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-family: var(--font-awesome);
  font-size: 30px;
  font-weight: 600;
}
.prev-arrow {
  left: -50px;
}
.next-arrow {
  right: -50px;
}
.prev-arrow::before {
  content: '\f060';
  background-position: -797px -2px;
}
.prev-arrow:hover::before {
  transition: all 0.25s ease-in-out;
  transform: translateX(-5px);
}
.next-arrow::before {
  content: '\f061';
  background-position: -825px -2px;
}
.next-arrow:hover::before {
  transition: all 0.25s ease-in-out;
  transform: translateX(5px);
}

/* @media screen and (max-width: 600px) {
  .prev-arrow {
    left: -35px;
  }
  .next-arrow {
    right: -35px;
  }
} */

/* pager */
ul.slick-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 50%;
  margin: 0 auto;
  padding-top: 15px;
  padding-left: 0;
}

ul.slick-dots li::before {
  background: transparent;
  border: 2px solid #9f9f9f;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  color: transparent;
  margin-left: unset;
}

ul.slick-dots li {
  font-size: 55px;
  margin: 0;
}

ul.slick-dots li.slick-active::before {
  background: var(--accent);
  border: 2px solid var(--accent);
}
ul.slick-dots button {
  display: none;
}

/* --------------------------- *
*  Practice Areas Slick Slider
* --------------------------- */
#home-practice-areas .tmf-post-list {
  max-width: 1550px;
  margin: 0 auto 0;
}
#home-practice-areas .tmf-post {
  margin: 0;
  padding: 0 15px;
  border: 0;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Slick Slider */
#home-practice-areas .slick-track {
  display: flex !important;
}
#home-practice-areas .slick-slide {
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
  /* padding: 25px 0; */
  display: flex !important;
  height: auto;
  align-items: stretch;
  justify-content: center;
}
#home-practice-areas .slick-list {
  /* margin: 0 -10px; */
  /* overflow-x: scroll; */
  /* padding-bottom: 50px; */
}
/* #home-practice-areas .slick-list::-webkit-scrollbar-track {
	background-color: #d9d9d9;
	background-clip: padding-box;
}
#home-practice-areas .slick-list::-webkit-scrollbar {
	height: 12px;
}
#home-practice-areas .slick-list::-webkit-scrollbar-thumb {
	background-color: var(--primary);
	height: 12px;
	border-radius: 12px;
}
#home-practice-areas .slick-list::-webkit-scrollbar-thumb:hover {
	cursor: pointer;
} */

.pa-practice-areas #home-practice-areas .slick-list {
  /* margin: 0 -10px; */
  overflow-x: scroll;
  padding-bottom: 50px;
}
.pa-practice-areas #home-practice-areas .slick-list::-webkit-scrollbar-track {
  background-color: #d9d9d9;
  background-clip: padding-box;
}
.pa-practice-areas #home-practice-areas .slick-list::-webkit-scrollbar {
  height: 12px;
}
.pa-practice-areas #home-practice-areas .slick-list::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  height: 12px;
  border-radius: 12px;
}
.pa-practice-areas #home-practice-areas .slick-list::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

@media screen and (max-width: 1750px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1500px;
  }
}

@media screen and (max-width: 1730px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1625px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1300px;
  }
}

@media screen and (max-width: 1500px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1150px;
  }
  #home-practice-areas .tmf-post {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1350px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1300px) {
  #home-practice-areas .tmf-post-list {
    max-width: 1080px;
  }
}

@media screen and (max-width: 1250px) {
  #home-practice-areas .tmf-post-list {
    max-width: 950px;
  }
}

@media screen and (max-width: 1150px) {
  #home-practice-areas .tmf-post-list {
    max-width: 850px;
  }
  #home-practice-areas .tmf-post {
    padding: 0 25px;
  }
}

@media screen and (max-width: 1010px) {
  #home-practice-areas .tmf-post-list {
    max-width: 800px;
  }
}

@media screen and (max-width: 900px) {
  #home-practice-areas .tmf-post-list {
    max-width: 600px;
  }
}

/* --------------------------- *
*  Single Practice area attorneys Slick Slider
* --------------------------- */
#pa-attorney-body .related-list {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  box-sizing: border-box;
}
#pa-attorney-body .attorney {
  width: 100% !important;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: none;
}
#pa-attorney-body .slick-slide {
  padding: 0 20px;
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: top;
  text-align: center;
}
#pa-attorney-body .slick-list {
  margin: 0 -10px;
}
#pa-attorney-body button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
#pa-attorney-body .slick-slide img {
  width: 100%;
  height: auto;
}
#pa-attorney-body .slide-arrow {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#pa-attorney-body .slide-arrow::before {
  width: 32px;
  height: 32px;
  color: var(--accent);
  font-size: 32px;
  font-family: var(--font-awesome);
  font-weight: 600;
  display: inline-block;
  position: relative;
}
#pa-attorney-body .prev-arrow {
  left: -50px;
}
#pa-attorney-body .prev-arrow::before {
  content: '\f053';
}
/* #pa-attorney-body .prev-arrow:hover::before {
	transition: all 0.25s ease-in-out;
	transform: translateX(-5px);
} */
#pa-attorney-body .next-arrow {
  right: -50px;
}
/* #pa-attorney-body .next-arrow:hover::before {
	transition: all 0.25s ease-in-out;
	transform: translateX(5px);
} */
#pa-attorney-body .next-arrow::before {
  content: '\f054';
}

@media screen and (max-width: 1950px) {
  #pa-attorney-body .related-list {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1750px) {
  #pa-attorney-body .related-list {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1500px) {
  #pa-attorney-body .related-list {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1250px) {
  #pa-attorney-body .related-list {
    max-width: 900px;
  }
}

@media screen and (max-width: 1175px) {
  #pa-attorney-body .related-list {
    max-width: 800px;
  }
}

@media screen and (max-width: 1100px) {
  #pa-attorney-body .related-list {
    max-width: 700px;
  }
}

@media screen and (max-width: 950px) {
  #pa-attorney-body .related-list {
    max-width: 500px;
  }
  #pa-attorney-body .team-txt {
    max-width: 100%;
  }
}

@media screen and (max-width: 750px) {
  #pa-attorney-body .related-list {
    max-width: 300px;
  }
}

@media screen and (max-width: 500px) {
  #pa-attorney-body .related-list {
    max-width: 250px;
  }
  #pa-attorney-body .prev-arrow {
    left: -30px;
  }
  #pa-attorney-body .next-arrow {
    right: -30px;
  }
}

/* --------------------------- *
*  Home Meet the team Slick Slider
* --------------------------- */
/* #home-attorney .tmf-post-list {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	clear: both;
	padding: 0;
	box-sizing: border-box;
} */
/* #home-attorney .tmf-post {
	width: 100% !important;
	max-width: 100%;
	padding: 0;
	margin: 0;
	border-bottom: none;
}
#home-attorney .slick-slide {
	padding: 0 12px;
	box-sizing: border-box;
	float: none;
	display: inline-block !important;
	vertical-align: top;
}
#home-attorney .slick-list {
	margin: 0 -10px;
}
#home-attorney button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
#home-attorney .slick-slide img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
#home-attorney .slick-slide img.thumbnail {
	max-width: unset;
	float: none;
} */

/* controls */
/* #home-attorney .slide-arrow {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	position: absolute;
	top: unset;
	bottom: -35px;
	width: 30px;
	height: 30px;
	transform: unset;
	transition: 0.2s ease-in;
	width: 30px;
	height: 30px;
	background: var(--primary);
	border-radius: 50%;
}
#home-attorney .prev-arrow {
	left: 0;
}
#home-attorney .prev-arrow::before {
	content: '';
	width: 17px;
	height: 9px;
	color: var(--primary);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
	background-size: 800px;
	background-position: -545px -1px;
}
#home-attorney .slide-arrow:hover {
	background: var(--accent);
}
#home-attorney .next-arrow {
	left: 45px;
}
#home-attorney .next-arrow::before {
	content: '';
	width: 17px;
	height: 9px;
	color: var(--primary);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
	background-size: 800px;
	background-position: -581px -1px;
}

@media screen and (min-width: 1750px) {
	#home-attorney .tmf-post-list {
		max-width: 1000px;
	}
}

@media screen and (max-width: 1500px) {
	#home-attorney .tmf-post-list {
		max-width: 750px;
	}
}
@media screen and (max-width: 1300px) {
	#home-attorney .tmf-post-list {
		max-width: 600px;
	}
}
@media screen and (max-width: 1150px) {
	#home-attorney .tmf-post-list {
		max-width: 525px;
	}
}

@media screen and (max-width: 1050px) {
	#home-attorney .tmf-post-list {
		max-width: 750px;
		margin: 30px 0 0;
	}
}

@media screen and (max-width: 915px) {
	#home-attorney .tmf-post-list {
		max-width: 700px;
	}
}

@media screen and (max-width: 850px) {
	#home-attorney .tmf-post-list {
		max-width: 525px;
	}
}

@media screen and (max-width: 600px) {
	#home-attorney .tmf-post-list {
		max-width: 450px;
	}
	#home-attorney .tmf-post {
		width: 100% !important;
	}
} */
