/*  Base  */

:root {
    --header-height: 62px;
}

@media only screen and (max-width: 767px) {
    :root {
        --header-height: 41px;
    }
}

body {
    padding-top: var(--header-height);
}

/*  Header  */

a.mobile-nav-toggle {
    text-align: center;
    display: none;
    width: 24px;
    height: 13px;
    padding: 0;
    box-sizing: border-box;
}

a.mobile-nav-toggle img {
    display: block;
    width: 100%;
    height: 100%;
}

header {
    background: #2d2d2d;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

header .wrap {
    display: flex;
    align-items: center;
}

header #logo {
    position: relative;
    flex-shrink: 0;
    display: block;
    height: 62px;
    width: auto;
    aspect-ratio: 0.968;
}

header #logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .2s ease;
}

header #logo:hover img:first-child:not(:last-child),
header #logo img:last-child:not(:first-child) {
    opacity: 0;
}

header #logo:hover img:last-child:not(:first-child) {
    opacity: 1;
}

header nav {
    font-family: "proxima-nova-extra-condensed";
    font-weight: 500;
    margin: 0;
}

header nav ul {
    list-style: none;
    margin: 0;
}

header nav .menu {
    display: flex;
    flex-wrap: wrap;
}

header nav a {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 10px 18px;
    line-height: 1.2;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    top: 0;
    -webkit-transition: top 0.12s ease-out, background 0.12s ease-out;
}

header nav .menu > li.menu-item-has-children > a {
    padding-inline: 30px;
}

header nav .menu > li:not(.menu-item-has-children) > a:hover {
    top: 3px;
}

header nav .menu > li.menu-item-has-children:hover > a {
    top: -3px;
}

header nav .menu > li > a:before {
    content: "";
    position: absolute;
    background: #a4162b;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    -webkit-transition: top 0.2s ease-in, bottom 0.12s ease-out;
}

header nav .menu > li:not(.menu-item-has-children) > a:hover:before {
    top: -3px;
    bottom: 3px;
}

header nav .menu > li.menu-item-has-children:hover > a:before {
    top: 0;
}

header .phone {
    flex-shrink: 0;
    font-family: "proxima-nova-extra-condensed";
    font-weight: 400;
    margin-left: 20px;
    color: #4093b1;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

header .phone a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    color: #4093b1;
    text-decoration: none;
}

header .secure-payment-link a {
    position: static;
    background: #4e9eb8;
    color: white;
    line-height: 1.15;
    font-size: 13px;
    text-align: center;
    padding: 10px 15px;
    font-family: "proxima-nova";
}

header .secure-payment-link a:hover {
    background: #33748a;
}

header .secure-payment-link a:before {
    display: none !important;
}

@media only screen and (max-width: 1023px) {
    header nav .menu {
        padding: 0;
    }

    header nav a {
        font-size: 16px;
        padding: 10px;
    }

    header nav .menu > li.menu-item-has-children > a {
        padding-inline: 25px;
    }

    header nav {
        margin-left: auto;
    }

    header .phone {
        margin-right: auto;
    }
}

@media only screen and (min-width: 1023px) {
    header nav .sub-menu {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {
    header nav .menu-item-has-children {
        position: relative;
    }

    header nav .menu > li > .sub-menu {
        position: absolute;
        inset: 100% 0 auto;
        background-color: #a4162b;
        opacity: 0;
        visibility: hidden;
        transition-property: opacity, visibility, transform;
        transition-duration: .3s;
        transition-timing-function: ease;
        transform-origin: bottom center;
    }

    header nav .menu > li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(-15px);
    }

    header nav .sub-menu {
        font-family: 'proxima-nova';
        text-align: center;
        font-size: 13px;
        font-weight: 400;
        padding: 0;
        margin: 0;
    }

    header nav .sub-menu a {
        font-size: inherit;
        min-height: initial;
        letter-spacing: 0;
    }

    header nav .sub-menu a:hover {
        text-decoration: underline;
    }

    header nav .sub-menu li:before {
        content: '';
        display: block;
        width: 75%;
        height: 1px;
        background-color: #fff;
        opacity: .8;
        margin-inline: auto;
    }
}

@media only screen and (max-width: 767px) {
    a.mobile-nav-toggle {
        flex-shrink: 0;
        display: block;
    }

    header .wrap {
        padding-inline: 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    header #logo {
        height: 41px;
    }

    header nav {
        order: 1;
        flex: 1 0 100%;
        display: none;
        margin: 0;
        padding: 0;
    }

    header .menu {
        flex-direction: column;
    }

    header nav a {
        min-height: initial;
    }

    header nav ul,
    header nav ul li,
    header nav ul li a {
        display: block;
        position: static;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    header nav ul li a {
        text-align: center;
        line-height: 100%;
        padding: 5px 0;
        font-size: 28px;
    }

    header nav a:before {
        display: none;
    }

    header .sub-menu a {
        font-size: 22px;
    }

    header .phone {
        order: 2;
        flex: 1 0 100%;
        text-align: center;
        display: block;
        float: none;
        font-size: 28px;
        line-height: 100%;
        padding: 5px 0 10px 0;
        display: none;
        margin: 0;
    }

    header .secure-payment-link {
        top: auto;
        background: none;
    }

    header .secure-payment-link a {
        background: transparent;
        line-height: 100%;
        color: #4093b1;
        font-size: 28px;
        text-align: center;
        padding: 5px 0;
        font-family: "proxima-nova-extra-condensed";
        height: auto;
    }

    header .secure-payment-link a:hover {
        top: auto;
        opacity: 1;
        background: none;
    }

    header .secure-payment-link br {
        content: " ";
    }

    header .secure-payment-link br:after {
        content: " ";
    }

    header .secure-payment-link a:before {
        display: none !important;
    }

    header .secure-payment-link a span {
        position: static;
        top: auto;
    }
}


/*  Section 404  */

.section-404 {
    text-align: center;
    font-size: 16px;
    padding: 120px 0;
}

.section-404 .wrap {
    padding-inline: 20px;
}

.section-404 h1 {
    font-size: 40px;
    margin-top: 0;
}

.section-404 .btn {
    font-size: 24px;
    line-height: 1.2;
    padding: 10px 14px 8px;
    margin-top: 30px;
}

@media only screen and (max-width: 1023px) {
    .section-404 {
        padding: 90px 0;
    }

    .section-404 h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .section-404 {
        font-size: 15px;
        padding: 60px 0;
    }

    .section-404 h1 {
        font-size: 30px;
    }

    .section-404 .btn {
        font-size: 20px;
        margin-top: 20px;
    }
}

/*  Section Our Firm  */

.section-our-firm {
    --aside-width: 150px;
    --gap: 86px;
    --padding-top: 98px;
    --padding-bottom: 89px;

    position: relative;
    color: #fff;
}

.section-our-firm .wrap {
    padding-inline: 33px 5.5%;
}

.section-our-firm .section__aside {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-our-firm .section__aside .wrap {
    height: 100%;
    padding-block: var(--padding-top) var(--padding-bottom);
}

.section-our-firm .section__nav {
    position: sticky;
    top: calc(var(--header-height, 63px) + var(--padding-top));
    font-family: 'proxima-nova-extra-condensed', Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    width: max-content;
    max-width: var(--aside-width);
}

.section-our-firm .section__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-our-firm .section__nav li {
    margin-bottom: 12px;
}

.section-our-firm .section__nav li:last-child {
    margin-bottom: 0;
}

.section-our-firm .section__nav li.is-current a {
    background-color: #434343;
}

.section-our-firm .section__nav a {
    display: block;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    padding: 8px 11px 4px;
    transition: background-color .4s ease;
}

.section-our-firm .section__content {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-top) var(--padding-bottom);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.section-our-firm .section__content .wrap > * {
    padding-left: calc(var(--aside-width) + var(--gap));
}

.section-our-firm .section__entry {
    font-size: 27px;
    line-height: 1.67;
    font-weight: 500;
}

.section-our-firm .section__entry h2 {
    text-transform: uppercase;
    font-family: 'proxima-nova-extra-condensed', Arial, sans-serif;
    font-size: 90px;
    font-weight: 800;
    line-height: 0.84;
    font-style: italic;
    margin-bottom: 50px;
}

.section-our-firm .section__entry h2:last-child {
    margin-bottom: 0;
}

.section-our-firm .section__entry h2:first-child {
    margin-top: 0;
}

.section-our-firm .section__entry p {
    margin-top: 0;
    margin-bottom: 20px;
}

.section-our-firm .section__entry p:first-child {
    margin-top: 0;
}

.section-our-firm .section__entry p:last-child {
    margin-bottom: 0;
}

.section-our-firm .section__accordion {
    margin-top: 52px;
}

.section-our-firm .section__accordion:first-child {
    margin-top: 0;
}

.section-our-firm .section__links {
    margin-top: 50px;
}

.section-our-firm .section__links:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 1023px) {
    .section-our-firm {
        --gap: 60px;
    }

    .section-our-firm .wrap {
        padding-inline: 20px;
    }

    .section-our-firm .section__entry {
        font-size: 24px;
    }

    .section-our-firm .section__entry h2 {
        font-size: 75px;
        margin-bottom: 40px;
    }

    .section-our-firm .section__accordion {
        margin-top: 40px;
    }

    .section-our-firm .section__links {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .section-our-firm {
        --aside-width: 0px;
        --gap: 0px;
        --padding-top: 75px;
        --padding-bottom: 75px;
    }

    .section-our-firm .section__aside {
        display: none;
    }

    .section-our-firm .section__content .wrap > * {
        padding-left: 0;
    }

    .section-our-firm .section__entry {
        font-size: 20px;
    }

    .section-our-firm .section__entry h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .section-our-firm .section__accordion {
        margin-top: 30px;
    }

    .section-our-firm .section__links {
        margin-top: 30px;
    }
}

/*  Accordion   */

.accordion {
    color: #FFF;
}

.accordion .accordion__section {
    border-bottom: 3px solid currentColor;
    max-width: 96%;
}

.accordion .accordion__section:first-child {
    border-top: 3px solid currentColor;
}

.accordion .accordion__head {
    text-decoration: none;
    vertical-align: middle;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
    outline: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding: 21.3px 0;
    transition: color .4s ease;
}

.accordion .accordion__head:hover {
    color: rgba(255, 255, 255, .5);
}

.accordion .accordion__head:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 21px;
    aspect-ratio: 0.64;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 21 33'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-width='4' d='M18.5 22 10 30l-8-8'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M10 2v27.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 21 33'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-width='4' d='M18.5 22 10 30l-8-8'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M10 2v27.5'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center center;
    mask-position: center center;
    transition: transform .4s ease;
}

.accordion .accordion__section.is-current .accordion__head:after {
    transform: rotate(180deg);
}

.accordion .accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .6s ease;
}

.accordion .accordion__content-inner {
    min-height: 0;
}

.accordion .accordion__section.is-current .accordion__content {
    grid-template-rows: 1fr;
}

.accordion .accordion__members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 22px 18px;
    padding-block: 9px 58px;
}

@media only screen and (max-width: 1023px) {
    .accordion .accordion__section {
        max-width: 100%;
    }

    .accordion .accordion__head {
        padding: 18px 0;
    }

    .accordion .accordion__head:after {
        width: 18px;
    }

    .accordion .accordion__members {
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion .accordion__head {
        font-size: 18px;
        padding: 15px 0;
    }

    .accordion .accordion__head:after {
        width: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .accordion .accordion__members {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*  Member  */

.member {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    color: #2D2D2D;
    font-size: 13px;
    line-height: 1.23;
}

.member p {
    margin-bottom: 0;
    margin-top: 0;
}

.member strong {
    color: #AA182C;
    font-weight: 700;
    text-transform: uppercase;
}

.member .member__wrapper {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.member .member__image {
    position: relative;
    padding-bottom: 68.05%;
    overflow: hidden;
}

.member .member__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.member .member__wrapper:is(a):hover .member__image img {
    transform: scale(1.1);
}

.member .member__content {
    flex-grow: 1;
    background-color: #fff;
    padding: 11px 5px 9px;
}

.member .member__content p:last-child:not(:only-child) {
    padding-inline: 20px;
}

.member .member__mail {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #AA182C;
}

.member .member__mail:hover:before {
    opacity: .67;
}

.member .member__mail:before {
    content: '';
    flex-shrink: 0;
    display: block;
    width: 14px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 12'%3E%3Cpath fill='%23fff' d='M11.6.8H2.5a2 2 0 0 0-2 2v6.5a2 2 0 0 0 2 2h9.1a2 2 0 0 0 2-2V2.8a2 2 0 0 0-2-2Zm-.4 1.3L7 5.2l-4.2-3h8.3Zm.4 7.9H2.5a.7.7 0 0 1-.7-.7V3l4.9 3.6a.7.7 0 0 0 .7 0L12.3 3v6.3a.7.7 0 0 1-.7.7Z'/%3E%3C/svg%3E");
    transition: opacity .4s ease;
}

/*  Nav Links  */

.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 4%;
}

.nav-links li {
    border-bottom: 3px solid currentColor;
}

.nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.07em;
    font-weight: 600;
    padding-block: 26px;
    transition: opacity .4s ease;
}

.nav-links a:hover {
    opacity: .5;
}

.nav-links a:after {
    content: '';
    flex-shrink: 0;
    display: block;
    width: 33px;
    aspect-ratio: 1.5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='22' fill='none' viewBox='0 0 33 22'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-width='4' d='m22 2.69 8 8.66-8 8.15'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M2 11.35h27.5'/%3E%3C/svg%3E");
}

@media only screen and (max-width: 1023px) {
    .nav-links ul {
        padding-right: 0;
    }

    .nav-links a {
        padding-block: 20px;
    }

    .nav-links a:after {
        width: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .nav-links a {
        font-size: 18px;
        padding-block: 15px;
    }

    .nav-links a:after {
        width: 25px;
    }
}

/*  Careers Content  */

.section-single {
    z-index: 2;
    position: relative;
    color: #434343;
    background: #F2F2F2;
    padding-block: 73px 75px;
}

.section-single .wrap {
    display: grid;
    grid-template-columns: 1fr 34.2%;
    grid-gap: 60px 6%;
    padding-inline: 46px;
}

.section-single .section__entry {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 56px;
}

.section-single .section__entry:last-child {
    margin-bottom: 0;
}

.section-single .section__entry p {
    margin-top: 0;
    margin-bottom: 20px;
}

.section-single .section__entry p:last-child {
    margin-bottom: 0;
}

.section-single .section__entry :is(strong, b, a) {
    color: #A41627;
}

.section-single .section__entry :is(strong, b) a,
.section-single .section__aside-entry :is(strong, b) a {
    text-decoration-thickness: 2px;
}

.section-single .section__aside {
    padding-top: 7px;
}

.section-single .section__aside-entry {
    font-size: 19px;
    line-height: 1.6;
    border-top: 3px solid #AA182C;
    border-bottom: 3px solid #AA182C;
    padding: 32px 6px;
    margin-bottom: 24px;
}

.section-single .section__aside-entry:last-child {
    margin-bottom: 0;
}

.section-single .section__aside-entry p {
    margin-top: 0;
}

.section-single .section__aside-entry p:last-child {
    margin-bottom: 0;
}

.section-single .section__aside-entry a {
    color: #469EBC;
}

.section-single .section__slider {
    margin-bottom: 24px;
}

.section-single .section__slider:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1023px) {
    .section-single {
        padding-block: 60px;
    }

    .section-single .wrap {
        grid-template-columns: 1fr 40%;
        grid-gap: 60px 5%;
        padding-inline: 30px;
    }

    .section-single .section__entry {
        margin-bottom: 45px;
    }

    .section-single .section__aside-entry {
        padding-block: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .section-single {
        padding-block: 45px;
    }

    .section-single .wrap {
        grid-template-columns: 100%;
        padding-inline: 20px;
    }

    .section-single .section__aside {
        padding-top: 0px;
    }

    .section-single .section__entry {
        font-size: 18px;
    }

    .section-single .section__entry p {
        margin-bottom: 10px;
    }

    .section-single .section__aside-entry {
        padding-block: 16px;
    }
}

/*  Swiper  */

body .swiper-pagination {
    --swiper-pagination-bullet-horizontal-gap: 0px;

    position: relative;
    inset: 0 !important;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 31px;
}

body .swiper-pagination:first-child {
    margin-top: 0;
}

body .swiper-pagination-bullet {
    display: block;
    margin: 0;
    opacity: 1;
    width: 10px;
    height: 10px;
    background-color: #C2C1C1;
}

body .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #AA182C;
}

/*  Slider Gallery  */

.slider-gallery .slider__image {
    position: relative;
    padding-bottom: 47.88%;
}

.slider-gallery .slider__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  Tiles  */

.tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: 0.07em;
    height: 100%;
}

.tile .tile__content {
    z-index: 1;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    min-height: 228px;
    padding: 20px 15%;
}

.tile .tile__content p {
    margin-top: 0;
}

.tile .tile__content p:last-child {
    margin-bottom: 0;
}

.tile .tile__image {
    z-index: 0;
    position: absolute;
    inset: 0;
}

.tile .tile__image:before {
    content: '';
    z-index: 1;
    position: absolute;
    inset: 0;
    background-color: #A41627BF;
    transition: background-color .4s ease;
}

.tile:is(a):hover .tile__image:before {
    background-color: rgba(0, 0, 0, 0.4);
}

.tile .tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1023px) {
    .tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .tile .tile__content {
        aspect-ratio: 1.6;
        min-height: initial;
    }
}

@media only screen and (max-width: 575px) {
    .tiles {
        grid-template-columns: repeat(1, 1fr);
    }

    .tile .tile__content {
        min-height: initial;
        aspect-ratio: 1.4;
    }
}

/*  Callout  */

.callout {
    position: relative;
    color: #FFF;
    padding-block: 64px;
}

.callout .wrap {
    z-index: 2;
    position: relative;
    padding-inline: 40px;
}

.callout .callout__entry {
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'proxima-nova-extra-condensed', Arial, sans-serif;
    font-size: 35px;
    line-height: 1.22;
}

.callout .callout__entry p {
    margin-top: 0;
}

.callout .callout__entry p:last-child {
    margin-bottom: 0;
}

.callout .callout__entry a {
    color: inherit;
    text-underline-offset: 0.14em;
}

.callout .callout__image {
    z-index: 0;
    position: absolute;
    inset: 0;
}

.callout .callout__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1023px) {
    .callout {
        padding-block: 60px;
    }

    .callout .wrap {
        padding-inline: 30px;
    }

    .callout .callout__entry {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .callout {
        padding-block: 48px;
    }

    .callout .wrap {
        padding-inline: 20px;
    }

    .callout .callout__entry {
        font-size: 28px;
    }
}

/*  Accordion Alt  */

.accordion-alt .accordion__section {
    background-color: #FFF;
    border-bottom: 3px solid #F2F2F2;
}

.accordion-alt .accordion__section:last-child {
    border-bottom: none;
}

.accordion-alt .accordion__head {
    text-decoration: none;
    vertical-align: middle;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
    outline: none;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #AA182C;
    text-align: left;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    padding: 25px 25px 22px;
    transition: opacity .4s ease, border-color .4s ease;
}

.accordion-alt .accordion__head:hover {
    opacity: .5;
}

.accordion-alt .accordion__head span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: calc(1em * 1.22);
}

.accordion-alt .accordion__head span:before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 100%;
    background-color: #00000069;
    margin-inline: 20px;
}

.accordion-alt .accordion__head span:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 21px;
    aspect-ratio: 1.62;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='13' fill='none' viewBox='0 0 21 13'%3E%3Cpath stroke='%23AA182C' stroke-width='3' d='m2 2 8.6 8L20 2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='13' fill='none' viewBox='0 0 21 13'%3E%3Cpath stroke='%23AA182C' stroke-width='3' d='m2 2 8.6 8L20 2'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center center;
    mask-position: center center;
    transition: transform .4s ease;
}

.accordion-alt .accordion__section.is-current .accordion__head {
    border-color: #F2F2F2;
}

.accordion-alt .accordion__section.is-current .accordion__head span:after {
    transform: rotate(180deg);
}

.accordion-alt .accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .6s ease;
}

.accordion-alt .accordion__section.is-current .accordion__content {
    grid-template-rows: 1fr;
}

.accordion-alt .accordion__content-inner {
    padding-inline: 6%;
    min-height: 0;
}

.accordion-alt .accordion__entry {
    color: #434343;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
    padding-block: 38px;
}

.accordion-alt .accordion__entry p {
    margin-top: 0;
}

.accordion-alt .accordion__entry p:last-child {
    margin-bottom: 0;
}

.accordion-alt .accordion__entry :is(ul, ol) {
    font-size: 1.0526em;
    font-weight: 400;
    line-height: 1.35;
    padding: 0 0 0 22px;
    margin: 0;
}

.accordion-alt .accordion__entry ul > li::marker {
    font-size: .8em;
}

@media only screen and (max-width: 1023px) {
    .accordion-alt .accordion__head {
        font-size: 22px;
        padding: 20px 24px 17px;
    }

    .accordion-alt .accordion__head span:before {
        margin-inline: 15px;
    }

    .accordion-alt .accordion__head span:after {
        width: 19px;
    }

    .accordion-alt .accordion__content-inner {
        padding-inline: 25px;
    }

    .accordion-alt .accordion__entry {
        padding-block: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-alt .accordion__head {
        font-size: 20px;
        padding: 16px 20px 12px;
    }

    .accordion-alt .accordion__head span {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        height: calc(1em * 1.22);
    }

    .accordion-alt .accordion__head span:before {
        margin-inline: 10px;
    }

    .accordion-alt .accordion__head span:after {
        width: 17px;
    }

    .accordion-alt .accordion__content-inner {
        padding-inline: 20px;
    }

    .accordion-alt .accordion__entry {
        font-size: 17px;
        padding-block: 20px;
    }
}

/*  Slider Testimonials  */

.slider-testimonials {
    position: relative;
    isolation: isolate;
    color: #FFF;
    padding: 52px min(9%, 40px) 52px min(13%, 50px);
}

.slider-testimonials .slider__head {
    text-transform: uppercase;
    font-size: 35px;
    font-family: 'proxima-nova-extra-condensed', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
}

.slider-testimonials .slider__head:last-child {
    margin-bottom: 0;
}

.slider-testimonials .slider__head p {
    margin-top: 0;
}

.slider-testimonials .slider__head p:last-child {
    margin-bottom: 0;
}

.slider-testimonials .slider__entry {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 700;
}

.slider-testimonials .slider__entry blockquote {
    margin: 0;
}

.slider-testimonials .slider__entry blockquote cite {
    text-transform: uppercase;
    font-style: normal;
}

.slider-testimonials .slider__entry p {
    margin-top: 0;
}

.slider-testimonials .slider__entry p:last-child {
    margin-bottom: 0;
}

.slider-testimonials .slider__image {
    z-index: -1;
    position: absolute;
    inset: 0;
}

.slider-testimonials .slider__image:before {
    content: '';
    z-index: 1;
    position: absolute;
    inset: 0;
    background-color: #AA182CCC;
}

.slider-testimonials .slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-testimonials .swiper-pagination {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 85px;
}

.slider-testimonials .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background-color: #C2C1C1;
}

.slider-testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FFF;
}

@media only screen and (max-width: 1023px) {
    .slider-testimonials .slider__head {
        font-size: 30px;
    }

    .slider-testimonials .slider__entry {
        font-size: 18px;
    }

    .slider-testimonials .swiper-pagination {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 50px;
    }

    .slider-testimonials .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}

/*  Slider Gallery  */

.slider-gallery {
    position: relative;
    isolation: isolate;
    color: #FFF;
}

.slider-gallery .slider__head:last-child {
    margin-bottom: 0;
}

.slider-gallery .swiper-pagination {
    justify-content: flex-start;
    gap: 12px;
}

.slider-gallery .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background-color: #C2C1C1;
}

.slider-gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FFF;
}

.slider-gallery .portrait-img img {
    aspect-ratio: 2/3;
    object-fit: cover;
    width: 100%;
}

@media only screen and (max-width: 1023px) {
    .slider-gallery .swiper-pagination {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 50px;
    }

    .slider-gallery .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}

/*  Page Header  */

@media (max-width: 575px) {
    .page-header--attorney-recruitment h1 {
        font-size: 40px;
    }
}

@media (max-width: 375px) {
    .page-header--attorney-recruitment h1 {
        font-size: 36px;
    }
}
