/* Toc */
.navigate-of-content {
  background-color: #F3F3F3;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
}
.navigate-of-content .toc-navigation {
  max-height: 15rem;
  overflow-y: auto;
  position: relative;
  scroll-behavior: smooth;
  padding-right: 0.6rem;
}
.navigate-of-content .toc-navigation::-webkit-scrollbar {
  width: 8px;
}
.navigate-of-content .toc-navigation::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 4px;
}
.navigate-of-content .toc-navigation::-webkit-scrollbar-thumb {
  background-color: #B18DD5;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.navigate-of-content .toc-navigation::-webkit-scrollbar-thumb:hover {
  background-color: #9a71c9;
}
.navigate-of-content .toc-navigation {
  scrollbar-width: thin;
  scrollbar-color: #B18DD5 #eee;
}
.navigate-of-content .toc-navigation-title {
  position: relative;
  font-family: "Manrope-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  color: #000000;
}
.navigate-of-content .toc-navigation-title.current {
  font-size: 1rem;
  line-height: 1.11;
}
.navigate-of-content .jump-links {
  position: relative;
}
.navigate-of-content .jump-links li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 20px;
}
.navigate-of-content .jump-links li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #D3D3D3;
  border-radius: 50%;
  background-color: #F3F3F3;
  z-index: 1;
}
.navigate-of-content .jump-links li:after {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0;
  border-left: 2px dashed #D3D3D3;
  height: calc(100% + 1.5rem);
}
.navigate-of-content .jump-links li:last-child::after {
  display: none;
}
.navigate-of-content .jump-links li a {
  position: relative;
  color: #000;
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  display: block;
  transition: all 0.3s linear;
  opacity: 0.6;
  z-index: 2;
}
.navigate-of-content .jump-links li a:before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.5rem;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #D3D3D3;
  transition: all 0.3s linear;
  z-index: 5;
}
.navigate-of-content .jump-links li a:hover {
  color: #000;
}
.navigate-of-content .jump-links li.active a, .navigate-of-content .jump-links li.visited a {
  color: #000;
  opacity: 1;
}
.navigate-of-content .jump-links li.active a:before, .navigate-of-content .jump-links li.visited a:before {
  background-color: #B18DD5;
}
.navigate-of-content .jump-links li.active:before, .navigate-of-content .jump-links li.visited:before {
  background-color: #F3F3F3;
  border-color: #5B5B5B;
}
.navigate-of-content .jump-links li.active:after, .navigate-of-content .jump-links li.visited:after {
  border-left: 2px dashed #5B5B5B;
}
@media screen and (max-width: 1024px) {
  .navigate-of-content .toc-navigation-title {
    padding-right: 1.7rem;
  }
  .navigate-of-content .toc-navigation-title:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: calc(50% - 12px);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9L12 16L5 9' stroke='%230F1217' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .navigate-of-content .toc-navigation-title.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .navigate-of-content .toc-navigation-title.active {
    margin-bottom: 0;
  }
  .navigate-of-content .jump-links {
    margin-top: 10px;
    padding-bottom: 6px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
  }
}

/* reading-progress */
.reading-progress {
  height: 6px;
  width: 100%;
  background-color: #E4E4E4;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.reading-progress .bar {
  overflow: hidden;
  border-radius: 1.4rem;
  display: block;
  height: 100%;
  width: 0;
  background-color: #000;
  transition: width 0.25s;
}

.article-practicum {
  display: grid;
  padding: 1.5rem;
  position: relative;
  background-color: #F3F3F3;
  border-radius: 1rem;
  gap: 1rem;
  margin-top: 1.5rem;
}
.article-practicum .expertise-list {
  grid-template-columns: 1fr;
}
.article-practicum .expertise-list a {
  font-size: 1rem;
  padding: 1rem 1.7rem 1rem 0;
}

/** Expertise **/
.expertise-page {
  background-color: #fff;
  color: #000;
}
.expertise-page .expertise-tabs__nav {
  margin-top: 0;
}
.expertise-page .contact-block {
  margin-top: 0;
}
.expertise-page .seo-block {
  margin: 7.5rem 0;
}
@media screen and (max-width: 1024px) {
  .expertise-page .seo-block {
    margin: 4.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .expertise-page .seo-block {
    margin: 3rem 0;
  }
}

/** Single **/
.post-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  align-items: center;
  padding: 1rem 0;
}
.post-hero__title {
  max-width: 100%;
}
.post-hero__thumbnail {
  width: 100%;
  height: 65vh;
  max-width: 33rem;
  margin-left: auto;
}
.post-hero .categories-post {
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 1024px) {
  .post-hero {
    text-align: left;
  }
  .post-hero__grid {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
  }
  .post-hero__thumbnail {
    margin: 0 auto;
    max-width: 485px;
    height: 417px;
  }
  .post-hero .categories-post {
    margin-bottom: 1.6rem;
  }
  .post-hero__info {
    max-width: 100%;
  }
}

.meta-info__title {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  margin-bottom: 0.6rem;
}
.meta-info__date {
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .meta-info__title {
    margin-bottom: 0.4rem;
  }
  .meta-info .share-post {
    display: none;
  }
}

/** list **/
.practice-list {
  display: grid;
  gap: 1rem;
  position: relative;
}
.practice-list a {
  display: block;
  max-width: 100%;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.4rem;
}
.practice-list a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #CFCFCF;
  transition: all 0.3s linear;
}
.practice-list a:hover:after {
  background-color: #B18DD5;
}
@media screen and (max-width: 1024px) {
  .practice-list {
    gap: 0.5rem;
  }
  .practice-list a {
    font-size: 0.87rem;
    padding-bottom: 0.1rem;
  }
}

/* section */
.article-section {
  padding: 5rem 0;
}
.article-section .author-card {
  gap: 1rem;
}
.article-section .author-card__name {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.article-section .author-card__photo {
  width: 3.5rem;
  height: 3.5rem;
}
.article-section__author-block {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 60% 38%;
  gap: 1.4rem;
  padding: 1rem;
  border: 0.06rem solid #CFCFCF;
  border-radius: 1rem;
}
.article-section__author-block .title {
  font-size: 1.5rem;
}
.article-section__author-block-info {
  display: grid;
  width: 100%;
  max-width: 27.2rem;
  margin-left: auto;
  padding: 2rem;
  gap: 1.5rem;
  background-color: #F3F3F3;
  border-radius: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .article-section {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .article-section {
    padding: 3rem 0;
  }
  .article-section .author-card {
    display: none;
  }
  .article-section__author-block {
    text-align: left;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }
  .article-section__author-block .author-card {
    display: flex;
  }
  .article-section__author-block-info {
    margin: 0 auto;
    padding: 1.1rem;
  }
}

.article-toc-info .practice-list a {
  font-size: 1rem;
}
.article-toc-info .article-section__author-block-info {
  padding: 1.5rem;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.article-toc-info .social-link {
  background-color: #F6F6F6;
}
.article-toc-info .social-link:hover {
  background-color: #000;
}

.article-content .article-grid {
  position: relative;
  display: grid;
  grid-template-columns: 30% 67%;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.article-content .article-toc-info {
  position: sticky;
  top: 5.6rem;
  width: 100%;
  max-width: 19.4rem;
  max-height: fit-content;
  overflow: hidden;
  z-index: 2;
}
.article-content .navigate-of-content {
  margin-bottom: 2rem;
  z-index: 10;
}
.article-content__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0 5rem 5rem;
  margin: 0 auto 5rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.2);
}
.article-content__meta .user-socials__list {
  color: #000;
}
.article-content__meta .user-socials__link {
  padding: 1.1rem;
  color: #000;
  background-color: #F6F6F6;
}
.article-content__meta .user-socials__link:hover {
  background-color: #000;
  color: #f6f6f6;
}
@media screen and (max-width: 1280px) {
  .article-content__meta {
    padding: 0 4rem 4rem;
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .article-content .article-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
  }
  .article-content .navigate-of-content {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .article-content .article-toc-info {
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    grid-row: 2;
    width: 100%;
    top: unset;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s linear;
  }
  .article-content .article-toc-info .article-practicum {
    display: none;
  }
  .article-content .article-toc-info.is-sticky .article-practicum {
    display: grid;
  }
  .article-content .navigate-of-content {
    display: none;
  }
  .article-content .navigate-of-content.sticky {
    bottom: 0;
    left: 0;
    position: fixed;
    padding: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .article-content .navigate-of-content.sticky .navigate-of-content {
    border-radius: 0;
    margin-top: 0;
  }
  .article-content .navigate-of-content.hidden {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .article-content__meta {
    padding: 0 3rem 3rem;
    margin: 0 auto 3rem;
  }
}
@media screen and (max-width: 767px) {
  .article-content__meta {
    justify-content: flex-start;
    gap: 3rem;
    padding: 0 0 2rem;
    margin: 0 auto 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .author .article-toc-info {
    position: static;
  }
  .author .article-toc-info .article-practicum {
    display: grid;
  }
}

.contact-section {
  padding-top: 0;
}

/** Category Page **/
.category-page {
  background-color: #000;
  color: #fff;
}
.category-page .page-numbers {
  color: #0B0B0B;
}
.category-page .page-numbers.dots {
  color: rgba(255, 255, 255, 0.5);
}
.category-page .page-numbers.current {
  color: #fff;
}
.category-page .page-numbers.prev, .category-page .page-numbers.next {
  color: #fff;
}
.category-page__content {
  padding: 7rem 0 0;
}
.category-page__title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.category-page .child-content__title {
  margin-bottom: 5.5rem;
}
.category-page .search-wrapper {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.category-page .category-filter-wrapper {
  margin-bottom: 4rem;
}
.category-page .category-grid {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .category-page {
    padding-top: 4rem;
  }
  .category-page__content {
    padding: 5rem 0 0;
  }
  .category-page .search-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .category-page .category-filter-wrapper {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .category-page__content {
    padding: 3rem 0 0;
  }
  .category-page .category-filter-wrapper {
    margin-bottom: 1.5rem;
  }
  .category-page .category-grid {
    margin-bottom: 1.5rem;
  }
}

/** About US Page **/
.about-us-s {
  padding-bottom: 0;
}
.about-us-s__info {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 48%;
  gap: 1.5rem;
}
.about-us-s .section-text {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1024px) {
  .about-us-s__info {
    grid-template-columns: 1fr;
  }
}

/**/
.info-thumb__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
  align-items: center;
  gap: 1.5rem;
}
.info-thumb__content {
  max-width: 29rem;
}
.info-thumb__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 100.16%;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #F3F3F3;
}
@media screen and (max-width: 1024px) {
  .info-thumb__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }
  .info-thumb__image {
    padding-bottom: 95.52%;
    grid-column: unset;
    grid-row: 1;
  }
  .info-thumb__content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .info-thumb__image {
    grid-column: unset;
    grid-row: 1;
  }
}

/*who-s*/
.who-s__content {
  margin: auto;
}
.who-s .parallax-image {
  left: unset;
  right: -20px;
  top: -20px;
}

/*values-s*/
.values-list {
  display: grid;
  gap: 2rem;
}
.values-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.2);
}
.values-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.values-list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #B18DD5;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
.values-list .title {
  font-size: clamp(1.125rem, 0.2494vw + 1.0505rem, 1.25rem);
  margin-bottom: 1rem;
}
.values-list .text {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .values-list__item {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  .values-list__content {
    width: 100%;
  }
  .values-list__icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    margin: auto;
  }
  .values-list .title {
    margin-bottom: 0.56rem;
  }
}

.values-s {
  padding: 0;
}
.values-s__wrapper {
  display: grid;
  grid-template-columns: 50% 46%;
  gap: 2.6rem;
  padding: 7.5rem 6.8rem;
  background-color: #F3F3F3;
  border-radius: 1rem;
}
.values-s .accent-btn {
  max-width: 17.25rem;
}
.values-s__content {
  max-width: 26.3rem;
}
.values-s__info:first-of-type {
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.values-s__info:last-child .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.values-s__info:last-child .section-text {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .values-s__wrapper {
    padding: 4.5rem 3.2rem;
    grid-template-columns: 1fr;
  }
  .values-s__content, .values-s .accent-btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .values-s__wrapper {
    padding: 3rem 1.2rem;
  }
}

/*why-s*/
.why-s__image {
  grid-column: 2;
}
@media screen and (max-width: 1024px) {
  .why-s__image {
    grid-column: unset;
  }
}

/** Single Custom PostType **/
.team-practice {
  background-color: #F3F3F3;
}
.team-practice__wrapper {
  overflow: hidden;
}
.team-practice-swiper {
  padding-top: 4rem;
  overflow: visible;
}
.team-practice .swiper-buttons {
  position: absolute;
  top: -2.8rem;
  right: 0;
  z-index: 1;
}
.team-practice .slider-arrow {
  height: 3rem;
  width: 3rem;
}
.team-practice .slider-arrow svg {
  width: 1.4rem;
  height: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .team-practice {
    overflow: hidden;
  }
  .team-practice__wrapper {
    overflow: visible;
  }
  .team-practice-swiper {
    padding-top: 2rem;
  }
  .team-practice .swiper-buttons {
    position: relative;
    top: unset;
    right: unset;
    margin: 24px auto 0;
    max-width: fit-content;
  }
}

.other-practices__wrapper {
  margin: 0 auto;
}
.other-practices .section-title-middle {
  font-size: clamp(1.5rem, 0.9975vw + 1.202rem, 2rem);
  margin-bottom: 4rem;
}
.other-practices .expertise-list {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 1024px) {
  .other-practices .section-title-middle {
    margin-bottom: 1.5rem;
  }
}

/** Team Page **/
.team-section .authors-grid {
  margin-bottom: 3rem;
}
.team-section .team-member {
  background-color: #fff;
  border: 1px solid #E0E0E0;
}
.team-section .member-name {
  color: #000;
}
.team-section .member-position {
  color: rgba(0, 0, 0, 0.4);
}
.team-section .member-image {
  padding-bottom: 120.9%;
}
@media screen and (max-width: 1024px) {
  .team-section .authors-grid {
    margin-bottom: 1.5rem;
  }
  .team-section .member-image {
    padding-bottom: 108.9%;
  }
}

/** Author page **/
.author-hero {
  overflow: hidden;
  background: linear-gradient(150deg, #120A18 7.32%, #462563 99.66%);
}
.author-hero__content {
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 1rem;
  position: static;
  padding: 3rem 0;
}
.author-hero__info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.author-hero__thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 4rem;
  bottom: 0;
  width: 48rem;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .author-hero {
    padding-bottom: 0;
  }
  .author-hero__content {
    grid-template-columns: 1fr;
    padding: 3rem 0 0;
  }
  .author-hero__thumbnail {
    position: static;
    max-width: 40rem;
    width: 100%;
    margin: 1.5rem auto 0;
  }
}

.author-practice {
  background-color: #f3f3f3;
  color: #0B0B0B;
}
.author-practice .section-title-middle {
  margin-bottom: 3rem;
}

/** Taxonomy page */
.main-taxonomy-expertise .contact-s {
  padding-top: 7.5rem;
}
@media screen and (max-width: 1024px) {
  .main-taxonomy-expertise .contact-s {
    padding-top: 4.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .main-taxonomy-expertise .contact-s {
    padding-top: 3rem;
  }
}

/** expertise-category-main **/
.expertise-category-main .expertise-tabs {
  min-height: 20vh;
  position: relative;
}

/** Contact Page **/
.contact-main .contact-reliance {
  padding: 0;
}
.contact-main .contact-s {
  background-color: #fff;
  padding: 5.5rem 0 0;
}

.maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.maps .map-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #DFC7F6, #DFC7F6);
  background-blend-mode: color-burn, normal;
  border-radius: 1rem;
  aspect-ratio: 161/150;
  width: 100%;
  height: auto;
}
.maps .map-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .maps {
    grid-template-columns: 1fr;
  }
}

/* 404 */
.hero-404__content {
  padding: 1rem 0;
  text-align: center;
}
.hero-404__subtitle {
  color: #B18DD5;
  font-size: clamp(6rem, 27.9302vw - 2.3441rem, 20rem);
  font-family: "Manrope-ExtraBold", sans-serif;
  font-weight: 800;
  line-height: 1;
}
.hero-404 h1 + .reliance-btn {
  margin: 3rem auto 0;
}

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