/** ------------------------------- *
** #region Default Slick Slider
** -------------------------------- */
* {
  min-height: 0;
  min-width: 0;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}
.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%);
}
.prev-arrow {
  left: -30px;
}
.next-arrow {
  right: -30px;
}
.slide-arrow::before {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-family: var(--font-awesome);
  font-size: 30px;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.prev-arrow::before {
  content: '\f060';
}
.next-arrow::before {
  content: '\f061';
}
.prev-arrow:hover::before {
  transform: translateX(-5px);
}
.next-arrow:hover::before {
  transform: translateX(5px);
}

/** 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;
}

/** #endregion Default Slick Slider */

/** --------------------------- *
**  #region Practice Areas Slick Slider
** --------------------------- */
#home-practice-areas .tmf-post-list {
  max-width: 1100px;
}
#home-practice-areas .tmf-post {
  border: 1px solid var(--accent);
  padding: 20px 20px 0;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
#home-practice-areas .slick-slide img {
  display: block;
  height: auto;
  width: 100%;
  transition: 0.15s ease;
}
#home-practice-areas .slick-slide img.pa-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#home-practice-areas .tmf-post:hover img.pa-static {
  visibility: hidden;
}
#home-practice-areas .tmf-post:hover img.pa-hover {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/** Slick Slider */
#home-practice-areas .slick-slide {
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
  padding: 25px 10px;
}

/** Controls */
#home-practice-areas .slide-arrow {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: unset;
  transform: unset;
  bottom: -40px;
}
#home-practice-areas .prev-arrow {
  left: unset;
  right: 70px;
}
#home-practice-areas .next-arrow {
  right: 15px;
}
#home-practice-areas .slide-arrow::before {
  display: inline-block;
  position: relative;
  background: var(--icon-sprite);
  background-size: 350px;
  width: 22px;
  height: 29px;
}
#home-practice-areas .prev-arrow::before {
  content: '';
  background-position: -241px 0;
}
#home-practice-areas .prev-arrow.slick-disabled::before {
  background-position: -188px 0;
}
#home-practice-areas .next-arrow::before {
  content: '';
  background-position: -214px 0;
}
#home-practice-areas .next-arrow.slick-disabled::before {
  background-position: -268px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/** #endregion Practice Areas Slick Slider */

/** --------------------------- *
** #region Associations Slick Slider
** --------------------------- */
#associations .tmf-post-list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  box-sizing: border-box;
}
#associations .slick-slide {
  padding: 0 20px;
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
}
#associations .tmf-post {
  max-width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: none;
  text-align: center;
}
#associations .slick-slide img {
  width: auto;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

/** controls */
#associations .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%);
}
#associations .slide-arrow::before {
  display: inline-block;
  position: relative;
  background: var(--icon-sprite);
  background-size: 350px;
  width: 22px;
  height: 29px;
}
#associations .prev-arrow::before {
  content: '';
  background-position: -241px 0;
}
#associations .prev-arrow.slick-disabled::before {
  background-position: -188px 0;
}
#associations .next-arrow::before {
  content: '';
  background-position: -214px 0;
}
#associations .next-arrow.slick-disabled::before {
  background-position: -268px 0;
}
#associations .next-arrow {
  right: -50px;
}
#associations .prev-arrow {
  left: -50px;
}

@media screen and (max-width: 1750px) {
  #associations .tmf-post-list {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1500px) {
  #associations .tmf-post-list {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1400px) {
  #associations .tmf-post-list {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1325px) {
  #associations .tmf-post-list {
    max-width: 900px;
  }
}

@media screen and (max-width: 1200px) {
  #associations .tmf-post-list {
    max-width: 800px;
  }
}

@media screen and (max-width: 1150px) {
  #associations .tmf-post-list {
    max-width: 650px;
  }
}

@media screen and (max-width: 1050px) {
  #associations .tmf-post-list {
    max-width: 550px;
  }
}

@media screen and (max-width: 950px) {
  #associations .tmf-post-list {
    max-width: 450px;
  }
}

@media screen and (max-width: 750px) {
  #associations .tmf-post-list {
    max-width: 350px;
  }
}

@media screen and (max-width: 650px) {
  #associations .tmf-post-list {
    max-width: 300px;
  }
  #associations .next-arrow {
    right: -30px;
  }
  #associations .prev-arrow {
    left: -30px;
  }
}

@media screen and (max-width: 550px) {
  #associations .tmf-post-list {
    max-width: 250px;
  }
}

/** #endregion Associations Slick Slider */
