:root {
    --dark-blue: #191247;
    --dark-blue-400: #C3BFD9;
    --dark-blue-700: #484266;
    --dark-blue-900: #191247;
    --blue-600: #C3BFD9;
    --gray-100: #F8F7FA;
    --gray-200: #EEEDF2;
    --gray-300: #D3D0DD;
    --gray-400: #B0ACBF;
    --gray-250: #DEDCE5;
    --gray-500: #8C889A;
    --gray-600: #544E61;
    --gray-700: #383349;
    --black-600: #544E61;
    --black-700: #383349;
    --black-800: #211B36;
    --orange-50: #FDEDE8;
    --orange-500: #FA541C;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gray-100);
}

h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
}

a {
    letter-spacing: -0.02em;
}

.container {
    --width: 1440px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    position: relative;
}

.wrapper {
    width: var(--width);
    max-width: 100%;
}


/**
* HEADER
*/
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 76px;
    position: relative;
    z-index: 9;
}

.site-header .container {
    background-color: var(--dark-blue);
    z-index: 9;
}

.header a {
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    order: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo a,
.footer-logo a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
}

.footer-logo a {
    color: var(--dark-blue-900);
}

.vertical-line {
    border-left: 1px solid rgba(255, 255, 255, .5);
    height: 27px;
}

.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    flex-grow: 1;
    order: 2;
}

.main-navigation .menu.nav-menu {
    display: flex;
    gap: 16px;
}

.menu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #C3BFD9;
}

.menu .menu-item {
    padding: 0 12px;
}

.menu .current-menu-item a,
.menu .current_page_item a,
.menu .menu-item a:hover {
    color: #fff;
}

.menu-footer-menu-container .menu .menu-item a:hover {
    color: var(--black-800);
}

.menu .current-menu-item a::after,
.menu .current_page_item a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
}

.main-navigation li.cta-nav-mobile {
    display: none;
}

.header-mid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 707px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.header-mid .title {
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.header-mid .title span {
    color: #FA541C;
}

.header-mid p {
    color: #C3BFD9;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
}

.header-mid .search-form {
    background-color: #fff;
    height: 60px;
    border-radius: 1000px;
    padding: 8px 24px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.header-mid .search-form input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    color: var(--black-800)
}

.shape-1 {
    position: absolute;
    top: 0;
}

.shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

#search-toggle__close {
    display: none;
}

#nav-menu-close {
    display: none;
}

/**
* FOOTER
*/

.site-footer .container {
    background-color: var(--gray-100);
}

.site-footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 56px 24px;
}

.site-footer .logo a {
    color: var(--dark-blue);
}

.site-footer .vertical-line {
    background-color: var(--dark-blue);
}

.menu-footer-menu-container ul {
    display: flex;
    margin: 0;
}

.menu-footer-menu-container li {
    list-style: none;
}

.menu-footer-menu-container li a {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-500);
}

a.nav-cta-btn,
.main-navigation li.cta-nav-mobile a {
    border: solid 1px rgba(255, 255, 255, .3);
    padding: 0 24px;
    height: 44px;
    border-radius: 1000px;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    margin-left: 16px;
    text-decoration: none;
    order: 3;
}

.main-navigation li {
    display: flex;
    align-items: center;
    height: 44px;
}


.socials {
    display: flex;
    gap: 24px;
}

.socials a:hover svg path {
    fill: var(--orange-500);
}

.site-footer hr {
    width: 100%;
    background-color: var(--gray-250);
}

.footer-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-end .links,
.footer-end .links a,
.footer-end .copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-700);
    opacity: .7;
    text-decoration: none;
}

.footer-end .links a:hover {
    text-decoration: underline;
}

/**
* FRONT PAGE
*/

.fp-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 56px 24px;
    padding: 80px 142px 56px;
}

.fp-grid-container .card {
    background-color: #ffffff;
    padding: 32px 0;
    box-shadow: 0px 32px 48px rgba(25, 18, 71, 0.05);
    border-radius: 16px;
}

.card .category-name {
    margin: 16px 0 0;
}

.card .cat-icon {
    padding: 0 32px;
}

.card .category-name {
    padding: 0 32px;
}

.card .category-name a {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    color: var(--black-800);
}

.card .cat-icon {
    line-height: 1;
}

.card .subcategory-list {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card .subcategory-list li:hover {
    background-color: var(--gray-100);
}

.card .subcategory-list a {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}

.card .subcategory-list a:hover {
    color: var(--dark-blue);
}

.card .subcategory-list a.show-all {
    color: var(--orange-500);
    justify-content: flex-start;
    gap: 5px;
}

.cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    height: 240px;
    padding: 24px 56px;
    gap: 56px;
    background: #191247;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}

.site-main .cta-container {
    margin: 0 142px 80px;
}

.cta-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-text {
    flex: 1 1 250px;
}

.cta-text .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cta-text .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--blue-600);
}

.cta-button a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 32px;
    background: var(--orange-500);
    border: 1px solid var(--orange-500);
    border-radius: 1000px;
    height: 44px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    text-decoration: none;
    width: max-content;
}

.cta-button a:hover {
    opacity: .95;
}

/**
* CATEGORY PAGE
*/

.site-category {
    background-color: #ffffff;
}

.site-category .wrapper {
    display: flex;
    gap: 56px;
    padding-bottom: 126px;
}

.site-category .left-sidebar {
    width: 354px;
    transition: all 0.5s;
}

.site-category .right-sidebar {
    transition: all 0.5s;
}

body[data-open="left-sidebar"] .site-category .left-sidebar {
    opacity: 0;
    width: 50px;
}

.site-category .content__wrapper .right-sidebar.hidden {
    max-width: 100px;
}

.site-category .content__wrapper .right-sidebar.hidden>.rs-wrapper div {
    opacity: 0;
}

.rs-wrapper {
    position: sticky;
    top: 120px;
}

.site-category .content {
    flex: 1;
}

.site-category .content__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

.site-category .category-page-wrapper {
    width: 652px;
}

.site-category .content__wrapper article {
    max-width: 100%;
    flex: 1 1 652px;
}

.site-category .content__wrapper .right-sidebar {
    /* width: 298px; */
    margin-top: 2em;
    flex: 0 1 322px;
}

.site-category .content__wrapper .right-sidebar .widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-category .left-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.site-category .main-category.cat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
    padding: 22px 32px;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--black-800);
    border-left: 4px solid transparent;
}

.site-category .main-category.cat-item.active {
    background-color: var(--gray-100);
    border-left: 4px solid var(--orange-500);
}

.site-category .main-category.cat-item img {
    width: 24px;
    height: 24px;
}

.site-category .cat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.site-category .cat-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-600);
    padding: 16px 32px;
    gap: 12px;
    border-left: 4px solid transparent;
}

.site-category .subcat-ul .cat-item a {
    font-weight: 400;
}

.site-category .cat-item.has-posts {
    padding-bottom: 0;
}

.site-category .has-posts ul {
    width: 100%;
}

.site-category .cat-item a span {
    flex-grow: 1;
}

.site-category .cat-item a.active {
    background-color: var(--gray-100);
    border-left: 4px solid var(--orange-500);
}

.main-category.cat-item:hover,
.site-category .cat-ul>li a:hover {
    background-color: var(--gray-100);
}

.site-category .cat-item.has-posts>a svg {
    display: block !important;
    width: 10px;
    height: 12px;
}

.site-category .cat-item {
    pointer-events: auto;
}

.cat-arrow-icon {
    display: none;
}

.left-sidebar {
    border: 1px solid;
    border-image: linear-gradient(to bottom, #DEDCE6 38.67%, rgba(222, 220, 230, 0) 100%);
    border-image-slice: 0 1 0 0;
    /* top right bottom left */
}

.archive-title {
    color: var(--black-800);
}

.archive-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
}

.toggle-cats {
    position: absolute;
    top: 50%;
    left: -76px;
    transform: translateY(-50%);
    line-height: 0;
}

.breadcrump-container {
    position: sticky;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    z-index: 2;
}

.toggle-cats:hover {
    cursor: pointer;
}

.toggle-cats:hover .stroke {
    stroke: var(--black-800);
}

/**
* BREADCRUMBS
*/

.breadcrumbs {
    font-weight: 700;
    color: var(--black-800);
    padding: 26px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    color: var(--gray-500);
    display: flex;
    align-items: center;
}


/**
* LIVE SEARCH FORM
*/
.live-search {
    display: flex;
    flex-direction: column;
}

#search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#search-results {
    background-color: #ffffff;
    padding: 16px 0px;
    margin-top: 8px;
    border: 1px solid #DEDCE6;
    /* middle X0 Y24 B32 10% */
    box-shadow: 0px 24px 32px rgba(25, 18, 71, 0.1);
    border-radius: 16px;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
}

#search-results a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 12px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-800);
}

#search-results a:hover {
    background-color: var(--gray-100);
}

.s-not-found {
    padding: 36px;
}

.nf-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
    text-align: center;
}

.nf-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-500);
}

.no-results.not-found .page-content {
    margin: 0;
}

.search-results-not-found {
    padding: 200px 30px;
    display: grid;
    place-items: center;
    background-color: #ffffff;
}

.site-search .wrapper {
    padding: 0 142px;
}

.search-results-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: var(--black-800);
    margin-bottom: 56px;
}

.site-search {
    padding: 80px 30px;
    background-color: #ffffff;
}

.sr-post a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 32px;
    gap: 32px;
    background: #FFFFFF;
    border: 1px solid #DEDCE6;
    border-radius: 12px;
    text-decoration: none;
    color: var(--black-800);
}

.sr-post a:hover {
    background-color: var(--gray-100);
}

.sr-post a span {
    flex: 1 1 200px;
}

.sr-post a svg {
    width: 20px;
}

.site-category .sr-post a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.sr-post-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.rotate-180 {
    transform: translateY(-50%) rotate(180deg) !important;
}

.rotate-180-2 {
    transform: rotate(180deg);
}

.entry-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 48px;
    color: var(--black-800);
}

.entry-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
}

.entry-content a {
    color: var(--orange-500);
}

.entry-content figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-content figcaption {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 22px;
    color: var(--gray-500);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6
{
font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
color: var(--black-800);
}

.entry-content h2 {
    font-size: 28px;
    line-height: 32px;
}

.rp-title {
    font-size: 24px;
    line-height: 32px;
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    margin: 1em 0;
}

.user-feedback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background-color: var(--gray-100);
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-800);
    margin-top: 45px;
    letter-spacing: -0.02em;
    min-height: 112px;
}

.user-feedback .emotions {
    display: flex;
    gap: 16px;
}

.user-feedback .emotions>span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: solid 1px var(--gray-250);
    cursor: pointer;
}

.user-feedback .emotions span>img {
    transition: scale 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.user-feedback .emotions span:hover {
    border-color: none;
    background-color: var(--gray-250);
}

.user-feedback .thanks {
    display: none;
}

.user-feedback.sent .emotions {
    display: none;
}

.user-feedback.sent .thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
}

.user-feedback.sent .text {
    display: none;
}

.t-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-600);
}

.t-desc a {
    font-weight: 600;
    color: var(--black-600);
}

.t-desc a:hover {
    color: var(--orange-500);
}

.related-posts ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.related-posts ul li {
    display: flex;
    flex: 1;
    border-radius: 8px;
    border: solid 1px var(--gray-250);
    cursor: pointer;
}

.related-posts ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 12px;
    padding: 32px;
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-800);
    text-decoration: none;
}

.related-posts ul li:hover {
    background-color: var(--gray-100);
}

.table-of-contents-widget .rs-heading {
    padding: 0 16px;
}

.rs-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-800);
}

.table-of-contents-widget {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-radius: 12px;
    border: solid 1px var(--gray-250);
}

.table-of-contents-widget ul {
    margin: 0;
    padding: 0;
}

.table-of-contents-widget ul li {
    list-style: none;
}

.table-of-contents-widget ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-500);
    outline: none;
    border-left: 2px solid transparent;
}

.table-of-contents-widget ul li a:hover,
.table-of-contents-widget ul li.active a {
    color: var(--black-800);
    border-color: var(--black-800);
}

.share-this {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-to {
    display: flex;
    gap: 16px;
}

.share-to a {
    display: grid;
    place-items: center;
    padding: 8px;
    border: solid 1px var(--gray-250);
    border-radius: 50%;
}

.share-to a:hover {
    border-color: transparent;
    background-color: var(--gray-250);
}

.contact-our-support {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--gray-100);
    padding: 24px;
    border-radius: 12px;
    outline: none;
    border: 1px solid transparent;
}

.contact-our-support:hover {
    background-color: #fff;
    border-color: var(--gray-250);
}

.contact-our-support .text {
    padding-right: 20px;
}

.question-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: var(--gray-200);
    border-radius: 50%;
}

.cos-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--black-800);
    margin-bottom: 8px;
}

.cos-p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-800);
    margin-bottom: 16px;
}

a.cta-link {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--orange-500);
    text-decoration: none;
}

.content__wrapper {
    position: relative;
}

svg#right-sidebar-toggle {
    position: absolute;
    right: 16px;
    top: 16px;
    rotate: 180deg;
    cursor: pointer;
    z-index: 9;
}

svg#right-sidebar-toggle:hover .stroke {
    stroke: var(--black-800);
}

body[data-open="main-menu"] .menu-primary-menu-container {
    display: block;
}

button.menu-toggle {
    background-color: transparent;
    margin-right: 24px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.toc-toggle {
    display: none;
    line-height: 0;
}

.toc-toggle svg {
    cursor: pointer;
}

#search-toggle {
    display: none;
    order: 4;
}

/**
* PRESS RELEASE PAGE
*/

.site-category.press-release .container {
    --width: 100%;
    padding: 0;
}

.single-press-release .header-mid,
.single-press-release .pr-years {
    display: none;
}

.site-category.press-release header.entry-header {
    padding: 56px 0 80px;
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-category.press-release .entry-title {
    font-weight: 800;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-500);
}

.meta-info .date,
.meta-info .location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-category.press-release article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.site-category.press-release header.entry-header :is(a, h1, .meta-info) {
    width: 900px;
    max-width: 100%;
}

.site-category.press-release .entry-content {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.site-category.press-release .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.press-release a svg:hover rect {
    stroke: #000;
}

.share-this.pr-single {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
}

.about-patexia {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid var(--gray-250);
}

.about-patexia__logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--gray-250);
    display: grid;
    place-items: center;
    padding: 20px;
}

.about-patexia__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    line-height: 22px;
}

.about-patexia__title {
    font-weight: 700;
}

.about-patexia__desc {
    font-weight: 400;
}

.about-patexia__cta a {
    font-weight: 500;
    color: var(--orange-500);
}

.press-release-header .container {
    background-color: var(--dark-blue);
}

.pr-years {
    width: 920px;
    max-width: 100%;
    margin: 0 auto;
}

.pr-years ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}


.pr-years ul li a {
    display: block;
    color: var(--dark-blue-400);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 16px 4px;
}

.pr-years ul li a.active,
.pr-years ul li a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.press-release-archive .container {
    width: 920px;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

#pr-search form {
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 320px;
    padding: 0 16px;
    border-radius: 50px;
    border: 1px solid var(--gray-300);
}

#pr-search form:focus-within {
    border-color: var(--orange-500);
    box-shadow: 0px 0px 0px 2px rgba(250, 84, 28, 0.2);
}

#pr-search form svg {
    width: 20px;
    height: 18px;
}

#pr-search form input {
    width: 100%;
    height: 44px;
    outline: none;
    border: none;
    font-size: 14px;
    color: var(--black-800);
}

#pr-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

#pr-list article {
    width: 100%;
}

#pr-list .s-not-found {
    padding: 36px 0;
}

.press-release-archive article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
    padding: 24px 40px 24px 24px;
    box-shadow: 0px 32px 48px 0px rgba(25, 18, 71, 0.05);
    border-radius: 16px;
}

.press-release-archive article .entry-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin: 0;
}

.press-release-archive article .entry-title a {
    text-decoration: none;
    color: var(--black-800);
}

.custom-pagination {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.custom-pagination__left {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.custom-pagination__left span {
    font-weight: 600;
}

.custom-pagination__right {
    display: flex;
    align-items: center;
}

.custom-pagination .page-numbers {
    width: 44px;
    height: 38px;
    display: grid;
    place-items: center;
    background-color: #fff;
    color: var(--gray-400);
    text-decoration: none;
    border: 1px solid var(--gray-300);
}

.custom-pagination a.next.page-numbers {
    border-radius: 0 6px 6px 0;
}

.custom-pagination a.prev.page-numbers {
    border-radius: 6px 0 0 6px;
}

.custom-pagination .page-numbers.current,
.custom-pagination .page-numbers:hover {
    background-color: var(--orange-50);
    border-color: var(--orange-500);
    color: var(--orange-500);
}

.custom-pagination .page-numbers:hover svg path {
    fill: var(--orange-500);
}

.custom-pagination__item {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background-color: #fff;
    border: 1px solid var(--gray-300);
}

.search-pagination .custom-pagination {
    margin: 56px 0;
}

.post,
.page {
    margin: 0;
}

.site-search article {
    margin-bottom: 16px;
}

h1.entry-title,
.entry-content :is(h1, h2, h3) {
    scroll-margin-top: 100px;
}

.sticky-sidebar {
    position: sticky;
    top: 0;
}

.site-category .left-sidebar #toggle-cats-hide {
    display: none;
}


/**
* SMALL DESKTOP STYLING
*/

@media only screen and (max-width: 1440px) {

    body[data-open="main-menu"] .site-header .container {
        padding: 0;
    }

    body[data-open="main-menu"] .site-header .header {
        padding: 0 24px;
    }

    .main-navigation {
        order: 1;
    }

    .logo {
        order: 2;
        flex-grow: 1;
        gap: 12px;
    }

    .footer-logo {
        gap: 12px;
    }

    a.nav-cta-btn {
        font-size: 16px;
        line-height: 22px;
    }

    .logo a,
    .footer-logo a {
        font-size: 16px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        flex-grow: 0;
    }

    .menu-primary-menu-container {
        display: none;
    }

    body[data-open="main-menu"] .menu-primary-menu-container {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        padding-top: 10px;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        background-color: rgba(0, 0, 0, .2);
        border-top: 1px solid var(--dark-blue-700);
    }

    .main-navigation .menu.nav-menu {
        height: max-content;
    }

    .fp-grid-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 80px;
        gap: 56px 24px;
    }

    .site-main .cta-container {
        display: none;
    }

    .site-category .left-sidebar {
        width: 299px;
    }

    .site-category .main-category.cat-item {
        font-size: 18px;
        line-height: 24px;
    }

    .site-category .cat-item a {
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
    }

    .site-category .wrapper {
        flex-wrap: wrap;
    }

    .site-category .content {
        padding-right: 56px;
        min-width: 300px;
    }

    .site-category .category-page-wrapper {
        max-width: 100%;
    }

    .breadcrumbs {
        font-size: 14px;
        line-height: 20px;
    }

    .archive-title,
    .entry-title {
        font-size: 36px;
        line-height: 40px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .sr-post a {
        padding: 24px;
    }

    .site-category .wrapper {
        padding-bottom: 102px;
    }

    svg#right-sidebar-toggle {
        display: none;
    }

    .table-of-contents-widget {
        display: none;
    }

    .site-category .content__wrapper {
        flex-direction: column;
        gap: 40px;
        max-width: 549px;
        margin: 0 auto;
    }

    .site-category .content__wrapper .right-sidebar {
        width: 100%;
        padding-top: 40px;
        margin-top: 0;
        border-top: 1px solid var(--gray-250);
    }

    .site-category .container {
        padding: 0;
    }

    /* .post,
    .page {
        margin: 0;
    } */

    .toc-toggle {
        display: block;
        position: relative;
    }

    .toc-toggle svg path {
        fill: var(--black-800);
    }

    .toc-toggle .table-of-contents-widget {
        position: absolute;
        right: 0;
        width: 300px;
        background-color: #fff;
        z-index: 2;
    }

    body[data-open="left-sidebar"] .site-category .left-sidebar {
        width: 30px;
        opacity: 0;
    }

    .site-main.container {
        padding: 0;
    }

    .share-this {
        flex-direction: row;
        align-items: center;
    }

    .contact-our-support {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .question-icon {
        width: 48px;
        height: 48px;
    }

    .pandbtn {
        display: flex;
        gap: 5px;
    }

    .contact-our-support .text {
        padding: 0;
    }

    .cos-p {
        margin-bottom: 0;
    }

    .site-search .wrapper {
        padding: 0;
    }

    .site-search {
        padding: 80px 56px;
    }

    .search-results-not-found {
        padding: 120px 30px;
    }

    .cta-container {
        padding: 56px 40px;
        gap: 40px;
    }

    body[data-open="main-menu"] #nav-menu-open {
        display: none;
    }

    body[data-open="main-menu"] #nav-menu-close {
        display: block;
    }

    body[data-open="main-menu"] {
        overflow: hidden;
    }

    .pr-years {
        width: 800px;
    }

    .press-release-archive .container {
        width: 800px;
    }

    .site-category.press-release header.entry-header :is(a, h1, .meta-info) {
        width: 800px;
    }

    .site-category.press-release .entry-content {
        width: 800px;
    }

    .share-this.pr-single {
        width: 800px;
    }

    .about-patexia {
        width: 800px;
    }

    body[data-open="main-menu"] .press-release-header .container {
        padding: 0;
    }

    body[data-open="main-menu"] .press-release-header .header {
        padding: 0 24px;
    }

    body[data-open="main-menu"].single-press-release .header-mid {
        display: block !important;
    }

}

/**
* TABLETS STYLING
*/

@media only screen and (max-width: 960px) {

    /* .logo img {
        width: 80px;
    }

    button.menu-toggle {
        margin-right: 5px;
    } */

    .header-mid .title {
        font-size: 32px;
        line-height: 36px;
    }

    .fp-grid-container {
        padding: 56px;
    }

    .site-category .left-sidebar {
        width: 259px;
    }

    .site-category .main-category.cat-item {
        padding: 12px 20px;
    }

    .site-category .main-category.cat-item {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
    }

    .site-category .cat-item a {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .archive-title,
    .entry-title {
        font-weight: 700;
        font-size: 32px;
        line-height: 36px;
    }

    .site-category .wrapper {
        gap: 32px;
    }

    .toggle-cats svg {
        width: 32px;
        height: 32px;
    }

    .toggle-cats {
        left: -48px;
    }

    .breadcrumbs {
        padding: 15px 0;
    }

    .site-category .content {
        padding-right: 32px;
    }

    .user-feedback {
        padding: 24px;
    }

    .related-posts ul {
        flex-direction: column;
    }

    .related-posts ul li a {
        padding: 24px;
    }

    .search-results-not-found {
        padding: 60px 20px;
    }

    .search-results-title {
        font-weight: 700;
        margin-bottom: 32px;
        font-size: 20px;
        line-height: 24px;
    }

    .site-search {
        padding: 56px;
    }

    .cta-container {
        padding: 40px 32px;
        gap: 24px;
    }

    .cta-text .title {
        font-size: 24px;
        line-height: 28px;
    }

    .site-search .post {
        margin-bottom: 16px;
    }

    .site-search .cta-container {
        margin-top: 32px;
    }


    .pr-years {
        width: 656px;
        overflow-x: scroll;
    }

    .press-release-archive .container {
        width: 656px;
    }

    .press-release-archive article .entry-title {
        font-size: 20px;
        line-height: 24px;
    }

    .press-release-archive .meta-info {
        font-size: 14px;
        line-height: 20px;
    }

    .site-category.press-release header.entry-header :is(a, h1, .meta-info) {
        width: 656px;
    }

    .site-category.press-release .entry-content {
        width: 656px;
    }

    .share-this.pr-single {
        width: 656px;
    }

    .about-patexia {
        width: 656px;
    }

    h1.entry-title,
    .entry-content :is(h1, h2, h3) {
        scroll-margin-top: 70px;
    }

}

/**
* MOBILE STYLING
*/

@media only screen and (max-width: 767px) {

    body[data-open="main-menu"] .site-header .header {
        padding: 0 20px;
    }

    .shape-1 {
        left: -100px;
    }

    a.nav-cta-btn {
        display: none;
    }

    #search-toggle {
        display: block;
        order: 4;
        cursor: pointer;
        line-height: 0;
    }

    .header-mid {
        padding-top: 156px;
    }

    body[data-open="main-menu"] .menu-primary-menu-container {
        background-color: var(--dark-blue-900);
        justify-content: flex-start;
        padding: 20px;
        gap: 20px;
        left: 0;
        transform: none;
    }

    .main-navigation .menu.nav-menu {
        flex-direction: column;
        gap: 27px;
        padding-top: 20px;
        width: 100%;
    }

    .menu .menu-item {
        padding: 0;
    }

    .main-navigation li.cta-nav-mobile {
        display: block;
    }

    .main-navigation li.cta-nav-mobile a {
        margin: 0;
    }

    .menu .current-menu-item a::after,
    .menu .current_page_item a::after {
        position: inherit;
        bottom: none;
        left: none;
        display: block;
        margin-top: 10px;
    }

    .fp-grid-container {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .menu-footer-menu-container ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
        padding: 0;
    }

    .footer-end {
        flex-direction: column;
        gap: 16px;
    }

    .breadcrump-container {
        top: 76px;
        flex-wrap: wrap;
        margin-top: 14px;
        padding: 10px 0;
    }

    .breadcrumbs {
        flex: 1;
    }

    .site-category .content {
        padding: 0 20px;
    }

    .toggle-cats {
        position: relative;
        left: unset;
        top: unset;
        transform: none;
        width: 100%;
    }

    body[data-open="left-sidebar"] .site-category .container {
        position: fixed;
        top: 76px;
        background-color: rgba(33, 27, 54, .2);
        z-index: 9;
    }

    body[data-open="left-sidebar"] .site-category .left-sidebar {
        width: 85vw;
        height: 100%;
        box-shadow: 0px 24px 32px 0px #1912471A;
        border-radius: 1px solid var(--gray-250);
        background-color: #fff;
        z-index: 9;
        overflow: auto;
        display: block;
        opacity: 1;
    }

    .site-header.fixed .header,
    .press-release-header.fixed .header {
        background-color: var(--dark-blue);
        transition: none;
    }

    .site-header .header,
    .press-release-header .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 0 20px;
        background-color: transparent;
        transition: background-color 1s ease-in-out;
    }

    .site-header.pr-header .header {
        background-color: var(--dark-blue);
    }


    body[data-open="search"] .header-mid .title,
    body[data-open="search"] .header-mid p,
    body[data-open="search"] .pr-years,
    body[data-open="search"] .shape-1,
    body[data-open="search"] .shape-2 {
        display: none;
    }

    body[data-open="search"] .live-search {
        display: block !important;
    }

    body[data-open="search"] .header-mid {
        padding: 80px 0 40px;
        display: block;
    }

    body[data-open="search"] .site-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        width: 100%;
    }

    body[data-open="search"] #search-toggle__open {
        display: none;
    }

    body[data-open="search"] #search-toggle__close {
        display: block;
    }

    body[data-open] main {
        padding-top: 200px !important;
    }

    body[data-open="left-sidebar"] .site-category .left-sidebar .toggle-cats {
        padding: 20px;
    }

    .site-category .left-sidebar {
        width: 0;
        display: none;
    }

    .site-category .left-sidebar {
        width: 0;
    }

    body[data-open="left-sidebar"] .site-category .left-sidebar #toggle-cats-hide {
        display: block;
    }

    .site-category .left-sidebar #toggle-cats-hide {
        display: none;
    }

    .site-category .wrapper {
        gap: 20px;
    }

    .archive-title,
    .entry-title {
        font-size: 28px;
        line-height: 32px;
    }

    .contact-our-support {
        flex-direction: column;
        align-items: flex-start;
    }

    .pandbtn {
        flex-direction: column;
        gap: 18px;
    }

    .share-this {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-search {
        padding: 56px 20px;
    }

    .sr-post a {
        padding: 20px;
    }

    .cta-container {
        padding: 24px;
        gap: 16px;
        height: max-content;
    }

    .cta-icon {
        padding: 19px;
    }

    body[data-open="left-sidebar"] {
        overflow: hidden;
    }

    .press-release-archive .container {
        padding: 20px;
    }

    .custom-pagination {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .press-release-header .header-mid {
        padding-top: 120px;
    }

    .press-release-header .container {
        padding: 0 20px;
    }

    .site-category.press-release header.entry-header {
        padding: 20px 20px 40px 20px;
    }

    .site-category.press-release .entry-content {
        padding: 0 20px 20px;
    }

    .site-category.press-release article {
        gap: 40px;
    }

    .share-this.pr-single {
        padding: 0 20px;
    }

    .about-patexia {
        padding: 40px 20px 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    /* body[data-open].post-type-archive-press-release main {
        padding-top: 0 !important;
    } */

    main.press-release {
        padding-top: 76px;
    }

    .logo {
        justify-content: center;
    }

    button.menu-toggle {
        margin-right: 0;
    }

    .header-mid .search-form {
        height: 56px;
    }

    h1.entry-title,
    .entry-content :is(h1, h2, h3) {
        scroll-margin-top: 210px;
    }

}

/* ATTORNEY PAGE */
.site-category.attorney-m {
    display: flex;
}

.site-category.attorney-m article {
    width: 100%;
}

.site-header.a-header .container {
    background-color: #fff;
    border-bottom: 1px solid #DEDCE5;
}

.a-header a.nav-cta-btn,
.a-header .main-navigation li.cta-nav-mobile a {
    background-color: var(--orange-500);
}

.site-category.attorney-m .wrapper {
    justify-content: center;
}

.attorney .entry-content {
    max-width: 684px;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
    margin: 0 auto;
}

.attorney h1.entry-title {
    text-align: center;
}

.attorney h2 {
    font-size: 24px;
}

.patent-card {
    display: flex;
    padding: 24px 40px 24px;
    background-color: #F8F7FA;
    border-radius: 16px;
    margin: 40px 0;
    gap: 40px;
}

.patent-card .image {
    flex: 2;
    display: grid;
    place-items: center;
}

.patent-card .image img {
    /* height: 100%; */
    object-fit: contain;
    border-radius: 13px;
    box-shadow: 24px 24px 32px 0px rgba(0, 0, 0, 0.1);
}

.attorney-list .patent-card .image img {
    box-shadow: none;
}

.patent-card .text {
    flex: 5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.patent-card .text :is(h3, p) {
    margin: 0;
}

.pc-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--black-800);
}

.pc-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    font-family: 'Inter', sans-serif;
}

.patent-card .cta-link {
    font-size: 16px;
    line-height: 22px;
}

.attorney .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
	margin-top: 30px;
}

.attorney .grid .box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--gray-250);
    padding: 24px;
    border-radius: 16px;
}

.attorney .count {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--orange-500);
}

.attorney .desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue-900);
}

.attorneys-info {
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.attorneys-info h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
    color: var(--black-800);
}

.nearby-cities p {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray-300);
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.nearby-cities p span {
    background: var(--gray-100);
    padding: 0 10px;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-blue-900);
}

.ai-container {
    width: 684px;
    max-width: 100%;
}

.city-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.city-tags a {
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 1000px;
    border: 1px solid var(--gray-400);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black-800);
}

.attorney-list {
    width: 920px;
    max-width: 100%;
    padding-top: 56px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.attorney-list .box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 16px;
    text-align: center;
}

.attorney-list .name {
    font-size: 20px;
    line-height: 28px;
    color: var(--black-800);
    margin: 0;
    padding-bottom: 4px;
}

.attorney-list .patents {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-700);
}

.attorney-list .exp-years {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-700);
}

.attorney-list .exp-tag {
    background-color: var(--gray-200);
    padding: 3px 12px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.attorney-list .exp-tags {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.attorney-list .exp-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    border: 1px solid var(--orange-500);
    color: var(--orange-500);
    text-decoration: none;
    padding: 0 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    border-radius: 1000px;
}

.attorney-list .exp-btn:hover {
    background-color: var(--orange-500);
    color: #fff;
}

.attorney-list .at-contact {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-500);
}

.attorney-list .at-contact a {
    font-weight: 500;
    color: var(--gray-600);
}

.attorney-list .patent-card {
    background-color: #fff;
    padding: 40px;
    margin: 56px 0 0;
}

.attorney-list .patent-card .text {
    flex: 3;
}

.attorney-list .patent-card .pc-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
    gap: 40px;
}

.contact-form .cf-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 684px;
    max-width: 100%;
}

.contact-form .cf-title :is(h2, p) {
    margin: 0;
}

.contact-form .cf-title h2 {
    font-size: 32px;
    line-height: 36px;
    color: var(--black-800);
}

.contact-form .cf-title p {
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue-900);
}

.contact-form .form {
    width: 540px;
    max-width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--gray-300);
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
}


.contact-form textarea {
    height: 152px;
}

.contact-form form p {
    margin-bottom: 1em;
}

.contact-form input[type="submit"] {
    background-color: var(--orange-500);
    border: 1px solid var(--orange-500);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    border-radius: 50px;
    cursor: pointer;
}

/* SMALL DESKTOP */
@media only screen and (max-width: 1440px) {
    .attorney .entry-content {
        max-width: 600px;
        padding-top: 56px;
    }

    .patent-card .image {
        flex: 3;
    }

    .patent-card .text {
        flex: 6;
        padding-left: 0;
    }

    .ai-container,
    .attorney-list {
        width: 756px;
    }

    .patent-card .image {
        flex: 3;
    }

    .attorney-list .patent-card .text {
        padding-left: 0;
    }

    .contact-form .cf-title {
        width: 600px;
    }
}

/* TABLETS */
@media only screen and (max-width: 960px) {
    .attorney .entry-content {
        max-width: 542px;
    }

    .contact-form .cf-title,
    .contact-form .form {
        width: 542px;
    }

    .patent-card .image {
        flex: 4;
    }

    .ai-container,
    .attorney-list {
        width: 656px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .attorney-list .patent-card {
        flex-direction: column;
        gap: 40px;
    }

    .patent-card .image {
        width: 100%;
        justify-content: center;
        display: flex;
        background-color: #f8f7fa;
    }

    .contact-form {
        padding: 56px;
    }

    .patent-card .image {
        border-radius: 12px;
    }
}

/* MOBILE */
@media only screen and (max-width: 767px) {
    .attorney .entry-content {
        max-width: 100%;
        padding: 40px 20px 40px 20px;
    }

    .attorneys-info {
        padding: 40px 20px;
    }

    .patent-card {
        flex-direction: column;
        padding: 24px 32px;
    }

    .patent-card .image img {
        width: 90%;
        max-width: 300px;
    }

    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .attorney-list .patent-card {
        padding: 24px;
    } 

    .contact-form {
        padding: 40px 20px;
    }

    .site-header.a-header .header, .press-release-header .header {
        position: inherit;
        width: 100%;
        padding: inherit;
        background-color: inherit;
    }
    
    .a-header .logo {
        justify-content: flex-start;
        flex-grow: 0;
    }
    
    .a-header a.nav-cta-btn, .a-header .main-navigation li.cta-nav-mobile a {display: flex;font-size: 14px;line-height: 20px;height: 36px;}
    
    .site-header.a-header .container {
        padding: 0 20px;
    }

    .contact-form .cf-title h2 {
        font-size: 24px;
        line-height: 28px;
    }
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--orange-500);
    border-radius: 30px;
    text-align: center;
    padding: 10px;
}

/* Expert PAGE */
.site-category.expert-m {
    display: flex;
}

.site-category.expert-m article {
    width: 100%;
}

.site-category.expert-m .wrapper {
    justify-content: center;
}

.expert .entry-content {
    max-width: 684px;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
    margin: 0 auto;
}

.expert h1,
.expert h2,
.expert h3,
.expert h4,
.expert h5,
.expert h6 {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.expert h1.entry-title {
    text-align: center;
    color: var(--dark-blue-900);
}

.expert h2 {
    font-size: 24px;
    margin: 20px 0 0;
}

.expert ul {
    margin: 0 0 20px;
    padding: 0 0 0 30px;
}

.expert-list .patent-card .image img {
    box-shadow: none;
}

.expert .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.expert .grid .box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--gray-250);
    padding: 24px;
    border-radius: 16px;
}

.expert .count {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--orange-500);
    margin: 0;
}

.expert .desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue-900);
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;    
}

.experts-info {
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.experts-info h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
    color: var(--black-800);
}

.experts-info .pc-title {
    text-align: left;
    margin: 0;
    padding-bottom: 10px;
    font-size: 24px;
    line-height: 32px;
}

.expert-list {
    width: 920px;
    max-width: 100%;
    padding-top: 56px;
}

.expert-list .box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 16px;
    text-align: center;
}

.expert-list .name {
    font-size: 20px;
    line-height: 28px;
    color: var(--black-800);
    margin: 0;
    padding-bottom: 4px;
}

.expert-list .patents {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-700);
}

.expert-list .exp-years {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-700);
}

.expert-list .exp-tag {
    background-color: var(--gray-200);
    padding: 3px 12px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.expert-list .exp-tags {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.expert-list .exp-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    border: 1px solid var(--orange-500);
    color: var(--orange-500);
    text-decoration: none;
    padding: 0 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    border-radius: 1000px;
}

.expert-list .exp-btn:hover {
    background-color: var(--orange-500);
    color: #fff;
}

.expert-list .at-contact {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-500);
}

.expert-list .at-contact a {
    font-weight: 500;
    color: var(--gray-600);
}

.expert-list .patent-card {
    background-color: #fff;
    padding: 40px;
    margin: 56px 0 0;
}

.expert-list .patent-card .text {
    flex: 3;
}

.expert-list .patent-card .pc-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.top-keywords {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-keywords h3 {
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 1000px;
    border: 1px solid var(--gray-400);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black-800);
    margin: 0;
}

/* SMALL DESKTOP */
@media only screen and (max-width: 1440px) {
    .expert .entry-content {
        max-width: 600px;
        padding-top: 56px;
    }

    .expert-list {
        width: 756px;
    }

    .expert-list .patent-card .text {
        padding-left: 0;
    }
}

/* TABLETS */
@media only screen and (max-width: 960px) {
    .expert .entry-content {
        max-width: 542px;
    }

    .expert-list {
        width: 656px;
    }

    .expert-list .patent-card {
        flex-direction: column;
        gap: 40px;
    }
}

/* MOBILE */
@media only screen and (max-width: 767px) {
    .expert .entry-content {
        max-width: 100%;
        padding: 40px 20px 40px 20px;
    }

    .experts-info {
        padding: 40px 20px;
    }

    .expert-list .patent-card {
        padding: 24px;
    }
    
    .expert .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}