:root {
--accessi-accent: #129ed9;
--accessi-accent-light: #b8eaff;
--accessi-accent-lighter: #f1fbff;
--accessi-accent-darker: #0f7bb3;
--accessi-white: #fff;
--accessi-black-soften: #111111;
}
.inprogress {
outline: 2px solid red !important;
outline-offset: 2px;
}
.needtest {
outline: 2px solid blue !important;
outline-offset: -2px;
}
.accessi-disabled {
pointer-events: none;
opacity: 0.5;
cursor: not-allowed;
}
.accessi-cursor-pointer {
cursor: pointer;
}
.accessi-access-btn {
padding: 0.5rem;
line-height: 0;
position: fixed;
bottom: 2rem;
right: 2rem;
z-index: 9999;
border-radius: 1000px;
&:hover,
&:focus,
&:active,
&:focus-visible {
outline: 1px solid var(--accessi-accent);
}
& span.accessi-active-indicator {
display: none !important;
}
&.accessi-active {
outline: 1px solid red;
span.accessi-active-indicator {
display: block !important;
position: absolute !important;
top: auto !important;
bottom: -1.5rem !important;
left: 50% !important;
transform: translateX(-50%) !important;
color: #fff !important;
background-color: #111 !important;
font-size: 1rem !important;
border-radius: 2rem !important;
line-height: 1 !important;
padding: 0.75rem 1rem !important;
text-align: center !important;
}
}
}
.accessi-modal {
font-family: system-ui, -apple-system, Arial, 'Segoe UI', Verdana, Georgia, Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
& :is(h1, h2, h3, h4, h5, h6, p, span, a, li) {
font-family: inherit;
margin: 0;
}
--inline-offset: 1.5rem;
--max-width: 90vw;
--head-foot-height: 2rem;
border-radius: 1rem;
background-color: var(--accessi-white);
display: none;
position: fixed;
top: auto;
bottom: 2rem;
left: auto;
right: var(--inline-offset);
border: 1px solid #ccc;
z-index: 9999;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
min-width: min(480px, var(--max-width));
max-width: var(--max-width);
height: 70dvh;
overflow: clip;
&.is-open {
display: block;
}
& .accessi-modal__content {
display: flex;
flex-direction: column;
gap: 1rem;
overflow: hidden;
height: 100%;
& .accessi-modal__header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
gap: 1rem;
padding: 2rem 1rem;
max-height: var(--head-foot-height);
background-color: var(--accessi-accent-lighter);
& .accessi-header-icons {
width: 100%;
}
& .accessi-modal__controls {
line-height: 0;
}
& .accessi-modal__title {
font-size: 1rem;
font-weight: 600;
& h4 {
font-size: 1rem;
font-weight: 500;
}
}
& .accessi-modal__close {
line-height: 0;
}
}
& .accessi-modal__main {
height: calc(100% - calc(2 * var(--head-foot-height)));
overflow: hidden scroll;
padding: 0.5rem;
& .accessi-accessibility-accordion-container {
border: 1px solid var(--accessi-accent-light);
border-radius: 1rem;
overflow: clip;
margin-bottom: 0.5rem;
& .accessi-accessibility-accordion-title {
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: nowrap;
gap: 1rem;
font-size: 1.25rem;
background-color: var(--accessi-accent);
color: var(--accessi-accent-lighter);
padding: 1rem;
transition: 300ms;
font-weight: 500;
& span.accessi-accessibility-accordion-icon {
transition: 700ms ease;
}
&.active {
font-weight: 700;
& span.accessi-accessibility-accordion-icon {
transform: rotateX(180deg);
}
}
}
& .accessi-accessibility-accordion-content {
gap: 1.5rem;
text-align: center;
padding-inline: 0.5rem;
max-height: 0;
transition: 300ms ease;
background-color: var(--accessi-white);
&.active {
max-height: 1000px;
padding-block: 0.5rem;
}
& .accessi-accessibility-mode {
border: 1px solid var(--accessi-accent-light);
border-radius: 0.5rem;
padding: 0.75rem 1rem;
text-align: center;
font-size: 1.125rem;
transition: 300ms ease;
position: relative;
background-color: var(--accessi-white);
color: var(--accessi-black-soften);
&.active {
&.accessibility-option-togle {
background-color: var(--accessi-accent);
color: var(--accessi-white);
}
&.accessibility-option-slider {
background-color: var(--accessi-accent);
color: var(--accessi-white);
}
&:hover {
color: var(--accessi-black-soften);
}
}
&.accessibility-option-togle {
}
&.accessibility-option-slider {
--ui-slider-height: 0.6rem;
--ui-dlider-handle-size: calc(2 * var(--ui-slider-height));
display: flex;
flex-direction: column;
gap: 1rem;
& .ui-widget.ui-widget-content {
background-color: var(--accessi-accent-light);
height: var(--ui-slider-height);
& span.ui-slider-handle {
border-radius: 50%;
width: var(--ui-dlider-handle-size);
height: var(--ui-dlider-handle-size);
background-color: var(--accessi-accent);
}
}
& button.accessi-reset-slider {
color: var(--accessi-black-soften);
background-color: #ffffff00;
border: 1px solid #ffffff00;
font-weight: 400;
font-size: 1rem;
align-self: center;
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
}
&.active {
& .ui-widget.ui-widget-content {
background-color: var(--accessi-white);
& span.ui-slider-handle {
background-color: var(--accessi-accent-light);
}
}
& button.accessi-reset-slider {
color: var(--accessi-white);
font-weight: 700;
cursor: pointer;
border-color: var(--accessi-white);
}
}
}
&:hover {
border-color: var(--accessi-accent);
&.accessibility-option-togle {
background-color: var(--accessi-accent-darker);
color: var(--accessi-white);
}
}
& span.notice {
position: absolute;
top: auto;
bottom: -0.75rem;
left: 50%;
transform: translate(-50%, 0%);
width: fit-content;
font-size: 0.75rem;
background: #111;
color: #fff;
padding: 0.125rem 0.25rem;
border-radius: 0.5rem;
}
}
}
}
}
& .accessi-modal__footer {
max-height: var(--head-foot-height);
padding: 0.5rem;
background-color: var(--accessi-accent-light);
& .mp-copyright {
text-align: center;
& a.mp-copyright-link {
transition: 300ms;
color: var(--accessi-accent);
text-decoration: none;
& .mp-copyright-img {
transform: translate(-50%, 0%);
background-color: var(--accessi-white);
padding: 10px 20px;
border-radius: 10px;
box-shadow: 0px 0px 24px 0px #8b0dbb;
max-width: 150px;
position: absolute;
top: auto;
bottom: 2rem;
left: 50%;
transition: all 200ms;
opacity: 0;
visibility: hidden;
transition-timing-function: ease-in-out;
}
&:hover {
color: var(--accessi-black-soften);
& .mp-copyright-img {
visibility: visible;
opacity: 1;
}
}
}
}
}
}
}
@media screen and (max-width: 600px) {
a.mp-copyright-link {
& .mp-copyright-img {
opacity: 0 !important;
visibility: hidden !important;
display: none;
}
}
.accessi-modal {
& .accessi-modal__content {
& .accessi-modal__header {
& .accessi-header-icons {
width: 75%;
}
}
}
}
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
border: 1px solid #c5c5c5;
background: #f6f6f6;
font-weight: normal;
color: #454545;
}
.ui-slider-horizontal .ui-slider-handle {
top: -0.3em;
margin-left: -0.6em;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.2em;
height: 1.2em;
cursor: default;
-ms-touch-action: none;
touch-action: none;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 3px;
}
.ui-widget-content {
border: 1px solid #dddddd;
background: #ffffff;
color: #333333;
}
.ui-widget {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
}
.ui-slider {
position: relative;
text-align: left;
}:root {
--grid-cols: 12;
} .mp-grid {
display: grid;
grid-template-rows: auto;
grid-template-columns: 1fr;
grid-template-columns: repeat(12, 1fr);
gap: 1rem;
} @media screen and (max-width: 600px) {
.mp-col-span-sm-1 {
grid-column: span 1;
}
.mp-col-span-sm-2 {
grid-column: span 2;
}
.mp-col-span-sm-3 {
grid-column: span 3;
}
.mp-col-span-sm-4 {
grid-column: span 4;
}
.mp-col-span-sm-5 {
grid-column: span 5;
}
.mp-col-span-sm-6 {
grid-column: span 6;
}
.mp-col-span-sm-7 {
grid-column: span 7;
}
.mp-col-span-sm-8 {
grid-column: span 8;
}
.mp-col-span-sm-9 {
grid-column: span 9;
}
.mp-col-span-sm-10 {
grid-column: span 10;
}
.mp-col-span-sm-11 {
grid-column: span 11;
}
.mp-col-span-sm-12 {
grid-column: span 12;
}
} @media screen and (min-width: 601px) {
.mp-col-span-lg-1 {
grid-column: span 1;
}
.mp-col-span-lg-2 {
grid-column: span 2;
}
.mp-col-span-lg-3 {
grid-column: span 3;
}
.mp-col-span-lg-4 {
grid-column: span 4;
}
.mp-col-span-lg-5 {
grid-column: span 5;
}
.mp-col-span-lg-6 {
grid-column: span 6;
}
.mp-col-span-lg-7 {
grid-column: span 7;
}
.mp-col-span-lg-8 {
grid-column: span 8;
}
.mp-col-span-lg-9 {
grid-column: span 9;
}
.mp-col-span-lg-10 {
grid-column: span 10;
}
.mp-col-span-lg-11 {
grid-column: span 11;
}
.mp-col-span-lg-12 {
grid-column: span 12;
}
}:root {
--accessi-outline-width: 2px;
--accessi-outline-offset: 4px;
--accessi-reading-mask: rgba(0, 0, 0, 0.8);
} body.accessi-readable-font *:not(i) {
font-family: Arial, Helvetica, Verdana, sans-serif !important;
} body.accessi-dyslexia-font,
body.accessi-dyslexia-font h1,
body.accessi-dyslexia-font h1 span,
body.accessi-dyslexia-font h2,
body.accessi-dyslexia-font h2 span,
body.accessi-dyslexia-font h3,
body.accessi-dyslexia-font h3 span,
body.accessi-dyslexia-font h4,
body.accessi-dyslexia-font h4 span,
body.accessi-dyslexia-font h5,
body.accessi-dyslexia-font h5 span,
body.accessi-dyslexia-font h6,
body.accessi-dyslexia-font h6 span,
body.accessi-dyslexia-font a,
body.accessi-dyslexia-font p,
body.accessi-dyslexia-font li a,
body.accessi-dyslexia-font label,
body.accessi-dyslexia-font input,
body.accessi-dyslexia-font select,
body.accessi-dyslexia-font textarea,
body.accessi-dyslexia-font legend,
body.accessi-dyslexia-font code,
body.accessi-dyslexia-font pre,
body.accessi-dyslexia-font dd,
body.accessi-dyslexia-font dt,
body.accessi-dyslexia-font span,
body.accessi-dyslexia-font blockquote {
font-family: 'OpenDyslexic', serif !important;
} body.accessi-readable-font *::before,
body.accessi-readable-font *::after,
body.accessi-dyslexia-font *::before,
body.accessi-dyslexia-font *::after {
font-family: inherit !important;
} body.accessi-highlight-titles h1,
body.accessi-highlight-titles h2,
body.accessi-highlight-titles h3,
body.accessi-highlight-titles h4,
body.accessi-highlight-titles h5,
body.accessi-highlight-titles h6,
body.accessi-highlight-titles [role='heading'] {
outline-style: solid !important;
outline-color: var(--accessi-accent) !important;
outline-width: var(--accessi-outline-width) !important;
outline-offset: var(--accessi-outline-offset) !important;
} body.accessi-highlight-links a,
[ng-click*=''] {
outline-style: solid !important;
outline-color: #28a228 !important;
outline-width: var(--accessi-outline-width) !important;
outline-offset: var(--accessi-outline-offset) !important;
} body.accessi-text-magnifier .accessi-text-magnifier-tooltip {
position: fixed;
padding: 16px;
border-radius: 4px;
background: #333;
color: #fff;
font-size: 36px !important;
line-height: 1.5;
z-index: 999999;
word-break: break-word;
max-width: 680px;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
background-color: #333333 !important;
color: #ffffff !important;
font-size: 36px !important;
}     body.accessi-align-left,
body.accessi-align-left h1,
body.accessi-align-left h1 span,
body.accessi-align-left h2,
body.accessi-align-left h2 span,
body.accessi-align-left h3,
body.accessi-align-left h3 span,
body.accessi-align-left h4,
body.accessi-align-left h4 span,
body.accessi-align-left h5,
body.accessi-align-left h5 span,
body.accessi-align-left h6,
body.accessi-align-left h6 span,
body.accessi-align-left p,
body.accessi-align-left li,
body.accessi-align-left label,
body.accessi-align-left input,
body.accessi-align-left select,
body.accessi-align-left textarea,
body.accessi-align-left legend,
body.accessi-align-left code,
body.accessi-align-left pre,
body.accessi-align-left dd,
body.accessi-align-left dt,
body.accessi-align-left span,
body.accessi-align-left blockquote {
text-align: left !important;
} body.accessi-align-center,
body.accessi-align-center h1,
body.accessi-align-center h1 span,
body.accessi-align-center h2,
body.accessi-align-center h2 span,
body.accessi-align-center h3,
body.accessi-align-center h3 span,
body.accessi-align-center h4,
body.accessi-align-center h4 span,
body.accessi-align-center h5,
body.accessi-align-center h5 span,
body.accessi-align-center h6,
body.accessi-align-center h6 span,
body.accessi-align-center p,
body.accessi-align-center li,
body.accessi-align-center label,
body.accessi-align-center input,
body.accessi-align-center select,
body.accessi-align-center textarea,
body.accessi-align-center legend,
body.accessi-align-center code,
body.accessi-align-center pre,
body.accessi-align-center dd,
body.accessi-align-center dt,
body.accessi-align-center span,
body.accessi-align-center blockquote {
text-align: center !important;
} body.accessi-align-right,
body.accessi-align-right h1,
body.accessi-align-right h1 span,
body.accessi-align-right h2,
body.accessi-align-right h2 span,
body.accessi-align-right h3,
body.accessi-align-right h3 span,
body.accessi-align-right h4,
body.accessi-align-right h4 span,
body.accessi-align-right h5,
body.accessi-align-right h5 span,
body.accessi-align-right h6,
body.accessi-align-right h6 span,
body.accessi-align-right p,
body.accessi-align-right li,
body.accessi-align-right label,
body.accessi-align-right input,
body.accessi-align-right select,
body.accessi-align-right textarea,
body.accessi-align-right legend,
body.accessi-align-right code,
body.accessi-align-right pre,
body.accessi-align-right dd,
body.accessi-align-right dt,
body.accessi-align-right span,
body.accessi-align-right blockquote {
text-align: right !important;
}        html.accessi-dark-contrast
*
:not(.slider):not(.toggle-text-on):not(.toggle-text-off):not(.accessi-option-icon):not(.acc-excluded *):not(
.accessi-modal *
),
html.accessi-dark-contrast > blockquote,
html.accessi-dark-contrast > .reset-button {
color: #fff !important;
background-color: #181818 !important;
} html.accessi-invert-colors {
-webkit-filter: invert(1) !important;
filter: invert(1) !important;
-moz-filter: invert(1) !important;
-ms-filter: invert(1) !important;
-o-filter: invert(1) !important;
} html.accessi-light-contrast
*
:not(.slider):not(.toggle-text-on):not(.toggle-text-off):not(.acc-excluded *):not(.accessi-modal *),
html.accessi-light-contrast > blockquote,
html.accessi-light-contrast > .reset-button {
color: #075f39 !important;
background-color: #fff !important;
fill: var(--accessi-text);
} html.accessi-monochrome {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
} html.accessi-high-contrast {
-webkit-filter: contrast(135%);
filter: contrast(135%);
-moz-filter: contrast(135%);
-ms-filter: contrast(135%);
-o-filter: contrast(135%);
} html.accessi-high-saturation {
filter: saturate(140%);
-webkit-filter: saturate(140%);
-moz-filter: saturate(140%);
-ms-filter: saturate(140%);
-o-filter: saturate(140%);
} html.accessi-low-saturation {
-webkit-filter: saturate(80%);
filter: saturate(80%);
-moz-filter: saturate(80%);
-ms-filter: saturate(80%);
-o-filter: saturate(80%);
}      body.accessi-hide-images img,
body.accessi-hide-images video {
opacity: 0 !important;
visibility: hidden !important;
}
body.accessi-hide-images * {
background-image: none !important;
} .accessi-reading-guide-element {
display: flex;
justify-content: center;
position: fixed;
top: 0;
left: auto;
right: auto;
margin: auto;
max-width: 90%;
pointer-events: none;
z-index: 999999;
width: 60%;
height: 10px;
border-radius: 10px;
background-color: #007cba;
border: 2px solid #000;
&::before {
content: '';
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #000;
margin-top: -12px;
}
} body.accessi-stop-animations * {
-webkit-transition: none !important;
-moz-transition: none !important;
-ms-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation-fill-mode: forwards !important;
-moz-animation-fill-mode: forwards !important;
-ms-animation-fill-mode: forwards !important;
-o-animation-fill-mode: forwards !important;
animation-fill-mode: forwards !important;
-webkit-animation-iteration-count: 1 !important;
-moz-animation-iteration-count: 1 !important;
-ms-animation-iteration-count: 1 !important;
-o-animation-iteration-count: 1 !important;
animation-iteration-count: 1 !important;
-webkit-animation-duration: 0.01s !important;
-moz-animation-duration: 0.01s !important;
-ms-animation-duration: 0.01s !important;
-o-animation-duration: 0.01s !important;
animation-duration: 0.01s !important;
transition-timing-function: step-end !important;
transition-duration: 0s !important;
animation-timing-function: step-end !important;
animation-iteration-count: 1 !important;
animation-duration: 0s !important;
} body.accessi-reading-mask .accessi-reading-mask-top,
body.accessi-reading-mask .accessi-reading-mask-bottom {
display: block;
position: fixed;
left: 0;
right: 0;
width: 100%;
z-index: 999999;
background-color: var(--accessi-reading-mask);
}
body.accessi-reading-mask .accessi-reading-mask-top {
top: 0;
bottom: auto;
}
body.accessi-reading-mask .accessi-reading-mask-bottom {
bottom: 0;
top: auto;
} body.accessi-highlight-hover *:hover {
outline-style: solid !important;
outline-color: var(--accessi-accent) !important;
outline-width: var(--accessi-outline-width) !important;
outline-offset: var(--accessi-outline-offset) !important;
} body.accessi-highlight-focus *:focus {
outline-style: solid !important;
outline-color: var(--accessi-accent) !important;
outline-width: var(--accessi-outline-width) !important;
outline-offset: var(--accessi-outline-offset) !important;
} body.accessi-large-cursor,
body.accessi-large-cursor * {
cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 33.33 50'%3E%3Cpath fill='%23000' d='M16.67,49.5a.56.56,0,0,1-.5-.31L10.29,36.43,1.46,47.22a.56.56,0,0,1-.42.2l-.18,0a.56.56,0,0,1-.36-.51V1A.54.54,0,0,1,.83.54.52.52,0,0,1,1,.5a.57.57,0,0,1,.39.16L32.68,31.91a.54.54,0,0,1-.39.92H18.55l5.9,12.78a.51.51,0,0,1,0,.42.53.53,0,0,1-.29.3l-7.29,3.13A.52.52,0,0,1,16.67,49.5Z'/%3E%3Cpath fill='%23fff' d='M2,3.35l28,28H16.21l1.31,2.84,5.16,11.17-5.53,2.37L12,36.53l-1.33-2.9-2,2.47L2,44.19V3.35M1,0a1.14,1.14,0,0,0-.4.08A1,1,0,0,0,0,1V46.87a1.06,1.06,0,0,0,.69,1,1.07,1.07,0,0,0,.35.06,1.06,1.06,0,0,0,.81-.38l8.32-10.17,5.55,12a1,1,0,0,0,1.36.51l7.29-3.12a1,1,0,0,0,.53-1.39L19.34,33.33h13A1,1,0,0,0,33,31.55L1.78.3A1.09,1.09,0,0,0,1,0Z'/%3E%3C/svg%3E")
15 0,
default !important;
}
body.accessi-large-cursor * input,
body.accessi-large-cursor * textarea,
body.accessi-large-cursor * select,
body.accessi-large-cursor * a,
body.accessi-large-cursor * button,
body.accessi-large-cursor * .accessi-option-toggle,
body.accessi-large-cursor * [role='button'],
body.accessi-large-cursor * input,
body.accessi-large-cursor * textarea,
body.accessi-large-cursor * select:hover,
body.accessi-large-cursor * a:hover,
body.accessi-large-cursor * button:hover,
body.accessi-large-cursor * .accessi-option-toggle:hover,
body.accessi-large-cursor * [role='button']:hover,
body.accessi-large-cursor .accessi-cursor-pointer {
cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='m12.6 27.5c-0.1 0-0.1-0.1-0.2-0.1-0.8-0.6-1.6-1.3-2.4-2-1.1-0.9-2.3-1.9-3.2-2.7-0.6-0.5-1.3-0.8-1.9-1-0.4-0.1-0.8-0.1-1.1 0-0.2 0.1-0.4 0.3-0.6 0.6-0.2 0.4-0.3 1-0.2 1.8 0 0.7 0.3 1.4 0.6 2.2 0.5 1.1 1.1 2.1 1.6 2.7l0.1 0.1 9.4 13.6c0.1 0.2 0.2 0.4 0.2 0.6 0.2 1.6 0.5 2.7 1 3.5 0.4 0.5 0.8 0.8 1.4 0.8h14.7 0.1c0.9 0 1.8-0.3 2.5-0.8 0.8-0.6 1.6-1.5 2.3-2.7v-0.1c0.3-0.5 0.6-1.1 1-1.6 1.5-2.5 2.8-4.7 3-7.8l-0.1-4.3v-0.2-1c0-2.8 0.1-6.3-2.5-6.8h-1.6c0 0.8-0.1 1.6-0.1 2.4 0 0.7-0.1 1.4-0.1 2 0 0.7-0.6 1.3-1.2 1.3s-1.3-0.5-1.3-1.2c0-0.6 0-1.4 0.1-2.2 0.2-2.7 0.4-5.7-1.8-6.1h-1.6-0.3c0 1 0 2-0.1 2.9 0 0.7-0.1 1.4-0.1 2 0 0.7-0.6 1.3-1.2 1.3-0.7 0-1.2-0.6-1.2-1.3 0-0.6 0-1.4 0.1-2.2 0.2-2.7 0.4-5.7-1.8-6.1h-1.6-0.3v4.9c0 0.7-0.6 1.3-1.2 1.3-0.7 0-1.2-0.6-1.2-1.3v-13c0-2.2-0.9-3.6-2-4.1-0.4-0.2-0.9-0.3-1.3-0.3s-0.9 0.1-1.3 0.3c-1.1 0.6-2 2-2 4.2v22.8c0 0.7-0.6 1.3-1.2 1.3-0.7 0-1.2-0.6-1.2-1.3l-0.2-2.4zm11.6-14.8h0.3 1.7 0.3c2.3 0.4 3.3 1.7 3.7 3.4 0.2-0.1 0.3-0.1 0.5-0.1h1.7 0.3c2.5 0.4 3.4 1.9 3.8 3.8h0.2 1.7 0.3c4.7 0.7 4.6 5.5 4.6 9.3v1l0.1 4.4v0.1c-0.2 3.7-1.6 6.2-3.3 9-0.3 0.5-0.6 0.9-0.9 1.6v0.1c-0.9 1.5-1.9 2.7-3.1 3.5s-2.5 1.2-3.9 1.3h-0.1-14.8c-1.5 0-2.6-0.6-3.5-1.9-0.7-1-1.1-2.5-1.4-4.3l-9.2-13.3c-0.5-0.7-1.3-1.9-1.9-3.2-0.4-1-0.7-2-0.8-3-0.1-1.2 0.1-2.2 0.4-2.9 0.4-0.9 1.1-1.6 1.9-1.9s1.6-0.4 2.5-0.2c1 0.2 2.1 0.7 3 1.5 0.8 0.6 2 1.7 3.2 2.7l1 0.8v-17.4c0-3.3 1.5-5.5 3.3-6.4 0.9-0.4 1.7-0.6 2.6-0.6 0.8 0 1.7 0.2 2.4 0.6 1.9 1 3.4 3.1 3.4 6.4v5.7z'/%3E%3Cpath d='m12.6 27.5c-0.1 0-0.1-0.1-0.2-0.1-0.8-0.6-1.6-1.3-2.4-2-1.1-0.9-2.3-1.9-3.2-2.7-0.6-0.5-1.3-0.8-1.9-1-0.4-0.1-0.8-0.1-1.1 0-0.2 0.1-0.4 0.3-0.6 0.6-0.2 0.4-0.3 1-0.2 1.8 0 0.7 0.3 1.4 0.6 2.2 0.5 1.1 1.1 2.1 1.6 2.7l0.1 0.1 9.4 13.6c0.1 0.2 0.2 0.4 0.2 0.6 0.2 1.6 0.5 2.7 1 3.5 0.4 0.5 0.8 0.8 1.4 0.8h14.7 0.1c0.9 0 1.8-0.3 2.5-0.8 0.8-0.6 1.6-1.5 2.3-2.7v-0.1c0.3-0.5 0.6-1.1 1-1.6 1.5-2.5 2.8-4.7 3-7.8l-0.1-4.3v-0.2-1c0-2.8 0.1-6.3-2.5-6.8h-1.6c0 0.8-0.1 1.6-0.1 2.4 0 0.7-0.1 1.4-0.1 2 0 0.7-0.6 1.3-1.2 1.3s-1.3-0.5-1.3-1.2c0-0.6 0-1.4 0.1-2.2 0.2-2.7 0.4-5.7-1.8-6.1h-1.6-0.3c0 1 0 2-0.1 2.9 0 0.7-0.1 1.4-0.1 2 0 0.7-0.6 1.3-1.2 1.3-0.7 0-1.2-0.6-1.2-1.3 0-0.6 0-1.4 0.1-2.2 0.2-2.7 0.4-5.7-1.8-6.1h-1.6-0.3v4.9c0 0.7-0.6 1.3-1.2 1.3s-1.2-0.6-1.2-1.3v-13c0-2.2-0.9-3.6-2-4.1-0.4-0.2-0.9-0.3-1.3-0.3s-0.9 0.1-1.3 0.3c-1.1 0.6-2 2-2 4.2v22.8c0 0.7-0.6 1.3-1.2 1.3-0.7 0-1.2-0.6-1.2-1.3l-0.2-2.4z' fill='%23fff'/%3E%3C/svg%3E%0A")
15 0,
auto !important;
}.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}.mp-notice {
border-left: 4px solid;
padding: 15px;
margin: 15px 0;
border-radius: 4px;
background-color: #f9f9f9;
&.mp-notice-info {
border-color: #0073aa;
background-color: #e8f4fa;
}
&.mp-notice-success {
border-color: #46b450;
background-color: #eafbe7;
}
&.mp-notice-warning {
border-color: #ffb900;
background-color: #fff8e5;
}
&.mp-notice-danger {
border-color: #dc3232;
background-color: #faeaea;
}
}.tldr-summary[aria-label="Summary"] {
padding: var(--mp-padding);
margin: var(--mp-margin);
border-width: var(--mp-border_width);
background-color: var(--mp-background);
border-color: var(--mp-border_color);
border-radius: var(--mp-border_radius);
border-style: solid;
& .tldr-title {
font-size: var(--mp-title_size);
color: var(--mp-title_color);
margin-block-start: 0 !important;
margin-block-end: 0.5rem !important;
font-weight: var(--mp-font-weight);
}
& p {
font-size: var(--mp-font_size);
color: var(--mp-text_color);
&:last-child {
margin-bottom: 0 !important;
}
}
}
@media (max-width: 768px) {
.tldr-summary[aria-label="Summary"] {
padding: var(--mp-padding-mobile);
margin: var(--mp-margin-mobile);
border-width: var(--mp-border_width-mobile);
border-radius: var(--mp-border_radius-mobile);
& .tldr-title {
font-size: var(--mp-title_size-mobile);
font-weight: var(--mp-font-weight-mobile);
}
& p {
font-size: var(--mp-font_size-mobile);
color: var(--mp-text_color-mobile);
}
}
}.tldr-summary {
--mp-padding: 2rem 1.5rem 2rem 1.5rem;
--mp-margin: 3rem 0rem 3rem 0rem;
--mp-border_width: 1px 1px 1px 1px;
--mp-border_radius: 1rem 1rem 1rem 1rem;
--mp-title_size: 1.75rem;
--mp-font_size: 1rem;
--mp-font-weight: 700;
--mp-title_color: #052E44;
--mp-text_color: #4B5563;
--mp-border_color: #052E44;
--mp-background: #FFFFFF;
}
@media (max-width: 768px) {
.tldr-summary {
--mp-padding-mobile: 1rem 1rem 1rem 1rem;
--mp-margin-mobile: 2rem 0rem 2rem 0rem;
--mp-border_width-mobile: 1px 1px 1px 1px;
--mp-border_radius-mobile: 1rem 1rem 1rem 1rem;
--mp-title_size-mobile: 1.5rem;
--mp-font_size-mobile: 1rem;
--mp-font-weight-mobile: 700;
--mp-title_color-mobile: #052E44;
--mp-text_color-mobile: #4B5563;
--mp-border_color-mobile: #052E44;
--mp-background-mobile: #FFFFFF;
}
}.mp-faq-wrapper {
margin-top: 1em;
}
.mp-faq-item {
margin-bottom: 1em;
border-bottom: 1px solid #ddd;
}
.mp-faq-question {
background: none;
border: none;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
width: 100%;
text-align: left;
padding: 0.5rem 0.75rem;
& .mp-faq-question-title {
font-size: 1.1em;
font-weight: bold;
}
}
.mp-faq-question:is(:hover, :focus, .active) {
background-color: #8b0dbb;
color: #fff;
}
.mp-faq-answer {
overflow: hidden;
max-height: 0;
transition: max-height 0.3s ease;
margin: 1.5rem 1rem 0.5rem;
}@font-face {
font-family: "lg";
src: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/lg.woff2?io9a6k) format("woff2"), url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/lg.ttf?io9a6k) format("truetype"), url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/lg.woff?io9a6k) format("woff"), url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/lg.svg?io9a6k#lg) format("svg");
font-weight: normal;
font-style: normal;
font-display: block;
}
.lg-icon { font-family: "lg" !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lg-container {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.lg-next,
.lg-prev {
background-color: rgba(0, 0, 0, 0.45);
border-radius: 2px;
color: #999;
cursor: pointer;
display: block;
font-size: 22px;
margin-top: -10px;
padding: 8px 10px 9px;
position: absolute;
top: 50%;
z-index: 1084;
outline: none;
border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
opacity: 0 !important;
cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
display: none;
}
.lg-next {
right: 20px;
}
.lg-next:before {
content: "\e095";
}
.lg-prev {
left: 20px;
}
.lg-prev:after {
content: "\e094";
}
@-webkit-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-moz-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-ms-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-webkit-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@-moz-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@-ms-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
.lg-outer.lg-right-end .lg-object {
-webkit-animation: lg-right-end 0.3s;
-o-animation: lg-right-end 0.3s;
animation: lg-right-end 0.3s;
position: relative;
}
.lg-outer.lg-left-end .lg-object {
-webkit-animation: lg-left-end 0.3s;
-o-animation: lg-left-end 0.3s;
animation: lg-left-end 0.3s;
position: relative;
}
.lg-toolbar {
z-index: 1082;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.lg-media-overlap .lg-toolbar {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
color: #999;
cursor: pointer;
float: right;
font-size: 24px;
height: 47px;
line-height: 27px;
padding: 10px 0;
text-align: center;
width: 50px;
text-decoration: none !important;
outline: medium none;
will-change: color;
-webkit-transition: color 0.2s linear;
-o-transition: color 0.2s linear;
transition: color 0.2s linear;
background: none;
border: none;
box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
color: #fff;
}
.lg-toolbar .lg-close:after {
content: "\e070";
}
.lg-toolbar .lg-maximize {
font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
content: "\e90a";
}
.lg-toolbar .lg-download:after {
content: "\e0f2";
}
.lg-sub-html {
color: #eee;
font-size: 16px;
padding: 10px 40px;
text-align: center;
z-index: 1080;
opacity: 0;
-webkit-transition: opacity 0.2s ease-out 0s;
-o-transition: opacity 0.2s ease-out 0s;
transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
margin: 0;
font-size: 13px;
font-weight: bold;
}
.lg-sub-html p {
font-size: 12px;
margin: 5px 0 0;
}
.lg-sub-html a {
color: inherit;
}
.lg-sub-html a:hover {
text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
position: absolute;
bottom: 0;
right: 0;
left: 0;
}
.lg-error-msg {
font-size: 14px;
color: #999;
}
.lg-counter {
color: #999;
display: inline-block;
font-size: 16px;
padding-left: 20px;
padding-top: 12px;
height: 47px;
vertical-align: middle;
}
.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
opacity: 0;
-webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
-moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
-o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
opacity: 0;
-moz-transform: scale3d(0.5, 0.5, 0.5);
-o-transform: scale3d(0.5, 0.5, 0.5);
-ms-transform: scale3d(0.5, 0.5, 0.5);
-webkit-transform: scale3d(0.5, 0.5, 0.5);
transform: scale3d(0.5, 0.5, 0.5);
will-change: transform, opacity;
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
opacity: 1;
-moz-transform: scale3d(1, 1, 1);
-o-transform: scale3d(1, 1, 1);
-ms-transform: scale3d(1, 1, 1);
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.lg-icon:focus-visible {
color: #fff;
border-radius: 3px;
outline: 1px dashed rgba(255, 255, 255, 0.6);
}
.lg-toolbar .lg-icon:focus-visible {
border-radius: 8px;
outline-offset: -5px;
}
.lg-group:after {
content: "";
display: table;
clear: both;
}
.lg-container {
display: none;
outline: none;
}
.lg-container.lg-show {
display: block;
}
.lg-on {
scroll-behavior: unset;
}
.lg-overlay-open {
overflow: hidden;
}
.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
opacity: 0;
will-change: transform, opacity;
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
opacity: 0;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
opacity: 0;
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
opacity: 0;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
opacity: 0;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
.lg-outer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1050;
text-align: left;
opacity: 0.001;
outline: none;
will-change: auto;
overflow: hidden;
-webkit-transition: opacity 0.15s ease 0s;
-o-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-outer * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
opacity: 1;
}
.lg-outer.lg-visible {
opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
-webkit-transition-duration: inherit !important;
transition-duration: inherit !important;
-webkit-transition-timing-function: inherit !important;
transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg-content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.lg-outer .lg-inner {
width: 100%;
position: absolute;
left: 0;
top: 0;
bottom: 0;
-webkit-transition: opacity 0s;
-o-transition: opacity 0s;
transition: opacity 0s;
white-space: nowrap;
}
.lg-outer .lg-item {
display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
background: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/images/loading.gif) no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
display: inline-block;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
.lg-outer .lg-img-wrap {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
white-space: nowrap;
font-size: 0;
}
.lg-outer .lg-item.lg-complete {
background-image: none;
}
.lg-outer .lg-item.lg-current {
z-index: 1060;
}
.lg-outer .lg-object {
display: inline-block;
vertical-align: middle;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
display: none;
}
.lg-outer.lg-hide-download .lg-download {
opacity: 0.75;
pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
position: absolute;
top: 50%;
left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
-webkit-transform: translate3d(0, 0%, 0);
transform: translate3d(0, 0%, 0);
opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
opacity: 1;
transition: opacity 0.2s ease-out 0.15s;
}
.lg-outer .lg-media-cont {
text-align: center;
display: inline-block;
vertical-align: middle;
position: relative;
}
.lg-outer .lg-media-cont .lg-object {
width: 100% !important;
height: 100% !important;
}
.lg-outer .lg-has-iframe .lg-media-cont {
-webkit-overflow-scrolling: touch;
overflow: auto;
}
.lg-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1040;
background-color: #000;
opacity: 0;
will-change: auto;
-webkit-transition: opacity 333ms ease-in 0s;
-o-transition: opacity 333ms ease-in 0s;
transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
-webkit-transition: none 0s ease 0s !important;
-moz-transition: none 0s ease 0s !important;
-o-transition: none 0s ease 0s !important;
transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
-webkit-transition: opacity 0.1s ease 0s;
-moz-transition: opacity 0.1s ease 0s;
-o-transition: opacity 0.1s ease 0s;
transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
-webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
-moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
-o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-container {
display: none;
}
.lg-container.lg-show {
display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
opacity: 1;
}
.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
position: absolute;
}
.lg-inline .lg-backdrop {
z-index: 1;
}
.lg-inline .lg-outer {
z-index: 2;
}
.lg-inline .lg-maximize:after {
content: "\e909";
}
.lg-components {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
will-change: transform;
-webkit-transition: -webkit-transform 0.35s ease-out 0s;
-moz-transition: -moz-transform 0.35s ease-out 0s;
-o-transition: -o-transform 0.35s ease-out 0s;
transition: transform 0.35s ease-out 0s;
z-index: 1080;
position: absolute;
bottom: 0;
right: 0;
left: 0;
}
.lg-outer .lg-thumb-outer {
background-color: #0d0a0a;
width: 100%;
max-height: 350px;
overflow: hidden;
float: left;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
text-align: center;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
text-align: left;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
text-align: right;
}
.lg-outer.lg-single-item .lg-thumb-outer {
display: none;
}
.lg-outer .lg-thumb {
padding: 5px 0;
height: 100%;
margin-bottom: -5px;
display: inline-block;
vertical-align: middle;
}
@media (min-width: 768px) {
.lg-outer .lg-thumb {
padding: 10px 0;
}
}
.lg-outer .lg-thumb-item {
cursor: pointer;
float: left;
overflow: hidden;
height: 100%;
border-radius: 2px;
margin-bottom: 5px;
will-change: border-color;
}
@media (min-width: 768px) {
.lg-outer .lg-thumb-item {
border-radius: 4px;
border: 2px solid #fff;
-webkit-transition: border-color 0.25s ease;
-o-transition: border-color 0.25s ease;
transition: border-color 0.25s ease;
}
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
border-color: rgb(169, 7, 7);
}
.lg-outer .lg-thumb-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.lg-outer.lg-can-toggle .lg-item {
padding-bottom: 0;
}
.lg-outer .lg-toggle-thumb:after {
content: "\e1ff";
}
.lg-outer.lg-animate-thumb .lg-thumb {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}.footer__titles{
width:fit-content;
border-bottom: 1px solid;font-weight:600;
}
footer a {
transition: color .5s;
}
footer a:hover {
color: #BE202F !important;
}header#site-header {
position: sticky;
top: 0;
z-index: 10;
background-color:#fff;
}
nav#site-navigation {
margin-right: auto;
z-index: 10;
}
.site__logo {
width: 13rem;
display: flex;
}
.header-top__wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.header-top{
border-bottom: 1px solid  #B3B3B3;
padding-block: 1rem;
}
.header-bot {
padding-block: 1rem;
box-shadow: 0 0 .5rem #B3B3B340;
}
.header-bot__wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
position:relative;
}
ul#primary-menu {
display: flex;
align-items: center;
position: relative;
gap: 1.5rem;
}
ul#primary-menu .menu-item{
position:relative;
justify-content:space-between;
}
ul#primary-menu .menu-item a{
display: flex;
align-items:center;
gap:.5rem;
font-size: .875rem;
line-height: 2;
color: #052E44;
transition:.5s;
}
ul#primary-menu .menu-item:hover > a{
color :#BE202F;
}
ul#primary-menu .sub-menu{
position: absolute;
background-color: #fff;
padding: .75rem .875rem .625rem;
display: flex;
flex-direction: column;
gap: .5rem;
min-width: max-content;
border-radius: .5rem;
box-shadow: 0 0 1rem #B3B3B380;
opacity: 0;
visibility: hidden;
overflow: hidden;
transition: .5s;
top: 100%;
left:0;
transition-delay:.2s;
}
ul#primary-menu .menu-item:hover > .sub-menu{
opacity: 1;
visibility: visible;
overflow: visible;
}
ul#primary-menu .menu-item.menu-item-has-children{
display: flex;
align-items: center;
gap:.25rem;
}
ul#primary-menu .menu-item.menu-item-has-children::after{
content: '\e90a';
font-family: 'icomoon';
display: flex;
align-items: center;
justify-content: center;
font-size: 0.5rem;
color: #BE202F;
pointer-events: none;
}
ul#primary-menu .sub-menu .menu-item.menu-item-has-children::after{
transform:rotate(-90deg);
}
.header-top__right{
display:flex;
align-items:center;
gap:3rem;
}
.phone-number-item.color-primary a {
font-weight: 600 !important;
color: #052E44;
transition:.5s;
}
span.phone-title.font-heading-h6.font-weight-400 {
margin-left: 1rem;
color: #052E44;
}
.phone-number-item.color-primary a:hover{
color : #BE202F;
}
.header-bot__lang a{
display: flex;
align-items: center;
gap: .5rem;
font-size: .875rem;
}
.header-bot__lang img{
width: 1rem;
object-fit:contain;
flex-shrink:0;
}
.header-bot__search {
display: flex
;
align-items: center;
justify-content: center;
font-size: .875rem;
color: #052E44;
cursor: pointer;
}
ul#primary-menu .sub-menu .sub-menu{
left: 100%;
}
ul#primary-menu .sub-menu .sub-menu {
left: calc(100% + .9375rem);
top: -.75rem;
z-index: 1;
box-shadow: .5rem 0 1rem #B3B3B380;
} #mask {
position: fixed;
z-index: 480;
background: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
right: 0;
bottom: 0;
display: none;
}
#menumobile {
position: fixed;
top: 0;
bottom: 0;
left: -300px;
width: 250px;
background-color: #fff;
z-index: 999999;
transition: all 0.5s;
box-sizing: border-box;
overflow: hidden;
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
overflow-y: auto;
}
#menumobile img {
max-width: 8rem;
}
#nomenumobile {
cursor: pointer;
transition: all 0.5s;
width: 25px;
height: 25px;
background: #BE202F;
font-size:1rem;
text-align: center;
border-radius: 3px;
display: inline-flex;
color: #fff;
align-items: center;
justify-content: center;
color:#fff;
}
.tel-mm a {
background: var(--bg_footer);
color: #fff;
padding: 10px 15px;
display: block;
text-align: center;
}
.tel-mm a:before {
content: '';
width: 6px;
height: 6px;
margin-left: 10px;
background: var(--color2);
display: inline-block;
border-radius: 100%;
animation: pulse 2s infinite;
position: relative;
top: -1px;
}
.come-menumobile {
left: 0 !important;
}
.title-mm {
background-color: var(--color1);
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.title-mm img {
user-select: none;
}
.btn-mm {
padding: 0 20px;
margin-top: 20px;
}
.btn-mm a {
display: flex;
}
.title-sub-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
flex-flow: row-reverse;
}
.title-sub-head strong {
font-family: var(--bold_font);
}
.main-mm {
padding: 10px 20px;
}
.main-mm ul li a {
display: block;
padding: 8px 0;
position: relative;
width: 80%;
}
.main-mm ul li > .sub-menu {
position: fixed;
top: 0;
bottom: 0;
width: 250px;
background-color: #fff;
left: -250px;
transition: 0.3s;
z-index: 9;
padding: 20px;
}
.childer::before {
transform: rotate(-90deg);
content: '\e90a';
font-family: 'icomoon';
font-size: 10px;
margin-left: .125rem;
}
.childer {
position: absolute;
right: -25%;
cursor: pointer;
top: .5rem;
width: 24px;
height: 24px;
border-radius: 4px;
background-color: var(--pl-blue);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
line-height: 1;
}
.come-submenu {
left: 0 !important;
}
.sub-closer::before {
content: '\e90a';
font-family: 'icomoon';
font-size: .6875rem;
transform: rotate(90deg);
margin-right: .25rem;
}
.sub-closer {
cursor: pointer;
top: .5rem;
width: 24px;
height: 24px;
border-radius: 4px;
color: #fff;
background-color: #BE202F;
overflow: hidden;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.title-subcome {
color: var(--pl-blue);
position: relative;
top: 2px;
font-size: 1.125rem;
}
i.header-mm.icon-bar {
font-size: 1.25rem;
color: var(--pl-blue);
cursor: pointer;
}
form#searchform {
display: none; 
width: 100%;
position: absolute;
top: calc(100% + 1rem);
background-color: #f1e6da;
padding: 1.5rem ;
border-radius: 0 0 1rem 1rem;
}
form#searchform .d-flex{
gap: 1.5rem;
}
form#searchform input{
border:0;
background-color: #fff;
padding:.75rem;
border-radius:.5rem;
}
form#searchform input[type=text]{
flex-grow: 1;
}
form#searchform input:focus {
outline: none;
}
form#searchform input[type=submit]{
cursor: pointer;
padding: .75rem 4rem;
transition: .5s;
}
form#searchform input[type=submit]:hover{
background-color: #BE202F;
color: #fff;
}
@media (max-width:991.98px) {
.header-top__right,
.header-bot{
display:none;
}
.site__logo {
width: 10rem;
}
.site__logo img {
width: 100%;
}
}
@media (max-width:575.98px) {
.site__logo {
width: 8rem;
}
}.single-team-intro {
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/team-intro.png);
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
border-radius: 1.25rem;
padding: 4.5rem 5.5rem 2.5rem;
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 4rem;
position: relative;
}
.single-team-intro-title {
color: #fff;
font-size: 4rem;
line-height: 1;
}
.single-team-image {
position: absolute;
bottom: 0;
right: 3rem;
max-width: 22rem;
max-height: 22rem;
}
.single-team-image img {
object-fit: contain;
height: 100%;
}
.team-aside {
padding-left: 5rem;
}
.single-team-section:not(:last-child) {
margin-bottom: 4rem;
}
.team-editor-content :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
margin-top: 4rem;
}
.single-team-section :is(h1, h2, h3, h4, h5, h6) {
font-size: 2.75rem;
color: #052e44;
margin-bottom: 1.5rem;
}
.single_team_sidebar_section:not(:last-child) {
margin-bottom: 4rem;
}
.single_team_sidebar_section ul {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding-left: 0.75rem;
}
.single_team_sidebar_section li {
display: flex;
font-size: 1.125rem;
line-height: 1.5;
color: #4b5563;
text-wrap-style: balance;
gap: 1rem;
}
.single_team_sidebar_section li::before {
content: '';
display: flex;
width: 0.25rem;
height: 0.25rem;
border-radius: 0.5rem;
background-color: #4b5563;
transform: translateY(0.625rem);
flex-shrink: 0;
}
.single_team_sidebar_section h2 {
color: #052e44;
font-size: 2rem;
line-height: 1;
margin-bottom: 1.5rem;
}
.team-editor-content p {
text-align: justify;
}
.team-editor-content {
font-size: 1rem;
color: #4b5563;
line-height: 1.5;
& p:not(:last-child) {
margin-bottom: 0.5rem;
}
}
.team-editor-education p,
.team-editor-content ul,
.team-editor-education ul {
color: #4b5563;
font-size: 1rem;
line-height: 1.5;
}
.team-editor-content ul:not(:last-child),
.team-editor-education ul:not(:last-child) {
margin-bottom: 0.5rem;
}
.team-editor-content ul li {
font-weight: 700;
text-align: left !important;
text-wrap-style: balance;
}
.team-editor-content ul li,
.team-editor-education ul li {
gap: 0.5rem;
text-wrap-style: balance;
padding-left: 1rem;
position: relative;
}
.team-editor-content ul li::before,
.team-editor-education ul li::before {
content: '';
margin-right: 0.5rem;
width: 0.25rem;
height: 0.25rem;
border-radius: 0.5rem;
background-color: #4b5563;
display: block;
position: absolute;
top: 0.625rem;
left: 0;
flex-shrink: 0;
}
.team-editor-content ul li::before {
background-color: #ab1527;
}
.team-editor-education :is(h1, h2, h3, h4, h5, h6) {
font-size: 1.0625rem !important;
font-weight: 700;
color: #4b5563;
margin-bottom: 0.25rem;
}
.team-practice_areas a:hover {
color: #ab1527;
}
.team-practice_areas i {
font-size: 0.8rem;
transform: rotate(270deg) translateY(0.3rem);
}
.team-practice_areas a {
text-decoration: none;
color: #4b5563;
transition: 0.5s;
font-size: 1rem;
}
.team-practice_areas {
display: flex;
align-items: center;
gap: 1rem;
}
.row-team {
row-gap: 1.5rem;
}
.team__item {
padding: 1.5rem;
background-color: #fff;
box-shadow: 0px 0.25rem 1rem 0px #22222214;
border-radius: 1rem;
}
.team__item__img {
display: block;
margin-bottom: 1.25rem;
}
.team__item img {
width: 100%;
object-fit: cover;
border-radius: 1rem;
}
.team__item__more:hover {
background-color: #052e44;
color: #fff;
}
.team__item__more {
display: inline-block;
border: 1px solid #052e44;
padding: 0.375rem 1rem;
border-radius: 1.5rem;
width: 10rem;
text-align: center;
margin-top: 1.75rem;
transition: 0.5s;
}
.team_item_name {
color: #000;
font-size: 1.5rem;
line-height: 1;
display: inline-block;
}
.team_item_position {
color: #515151;
margin-bottom: 0.375rem;
display: inline-block;
line-height: 1;
font-size: 0.9375rem;
}
.team_item_mail {
display: block;
font-size: 1.25rem;
font-weight: 600;
color: #be202f;
margin-top: 1.25rem;
}
.item_team_info .d-flex span {
color: #052e44;
margin-left: 1.5rem;
}
.item_team_info .d-flex a {
font-size: 1rem;
font-weight: 600;
color: #052e44;
}
.item_team_info .d-flex i {
color: #be202f;
font-size: 1.125rem;
}
.item_team_info .d-flex {
gap: 0.5rem;
}
.item_team_info {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-top: 1rem;
}
.single-team-intro {
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/team-intro.png);
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
border-radius: 1.25rem;
padding: 4.5rem 5.5rem 2.5rem;
}
.single-team-intro-position {
color: #fff;
font-size: 2rem;
line-height: 1;
margin-top: 0.5rem;
font-family: var(--font-family-title);
}
.single-team-info {
display: flex;
flex-direction: column;
}
.single-team-info a i {
font-size: 1.3125rem;
display: flex;
transform: translateY(0.125rem);
}
.single-team-info a {
color: #fff !important;
align-items: baseline;
display: flex;
width: fit-content;
gap: 0.625rem;
}
.single-team-info-title {
color: #fff;
font-size: 3.75rem;
line-height: 1;
margin-bottom: 1.5rem;
margin-top: 3rem;
font-family: var(--font-family-title);
}
.single-team-info {
display: flex;
flex-direction: column;
gap: 1rem;
}
.swiper.sw-single-team {
padding: 0.5rem !important;
margin: -0.5rem !important;
}
@media (min-width: 576px) {
.swiper.sw-single-team {
padding: 1rem !important;
margin: -1rem !important;
}
}
@media (max-width: 1199.98px) {
.team_item_name {
font-size: 1.3125rem;
}
.team__item {
padding: 1rem;
}
}
@media (max-width: 991.98px) {
.single-team-section :is(h1, h2, h3, h4, h5, h6) {
font-size: 1.75rem;
margin-bottom: 0.5rem;
}
.team-aside {
padding-left: unset;
margin-top: 2.5rem;
}
.team-editor-content :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
margin-top: 2rem;
}
.single_team_sidebar_section:not(:last-child) {
margin-bottom: 2.75rem;
}
.single-team-section:not(:last-child) {
margin-bottom: 2.75rem;
}
.single_team_sidebar_section h2 {
font-size: 1.75rem;
}
.single_team_sidebar_section li {
font-size: 1rem;
}
.single_team_sidebar_section li {
gap: 0.5rem;
}
.heading-section__title {
font-size: 1.75rem;
}
.heading-section {
margin-bottom: 1.75rem !important;
}
.single-team-image { position: revert;
}
.single-team-intro {
padding: 1.5rem;
flex-direction: column;
align-items: stretch;
gap: 2rem;
}
.single-team-intro-title {
font-size: 2.125rem;
}
.single-team-info-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
margin-top: 2rem;
}
.single-team-intro-position {
color: #fff;
font-size: 1.375rem;
margin-top: 0.5rem;
margin-bottom: 1rem;
}
}
@media (min-width: 992px) {
.single-team-intro-content {
width: 60%;
}
}@font-face {
font-family: swiper-icons;
src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
font-weight: 400;
font-style: normal
}
:root {
--swiper-theme-color: #BE202F
}
:host {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1
}
.swiper {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
z-index: 1;
display: block
}
.swiper-vertical > .swiper-wrapper {
flex-direction: column
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
box-sizing: content-box
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
transform: translate3d(0px, 0, 0)
}
.swiper-horizontal {
touch-action: pan-y
}
.swiper-vertical {
touch-action: pan-x
}
.swiper-slide {
flex-shrink: 0;
width: 100%;
height: 100%;
position: relative;
transition-property: transform;
display: block
}
.swiper-slide-invisible-blank {
visibility: hidden
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
height: auto
}
.swiper-autoheight .swiper-wrapper {
align-items: flex-start;
transition-property: transform, height
}
.swiper-backface-hidden .swiper-slide {
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
perspective: 1200px
}
.swiper-3d .swiper-wrapper {
transform-style: preserve-3d
}
.swiper-3d {
perspective: 1200px
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
transform-style: preserve-3d
}
.swiper-css-mode > .swiper-wrapper {
overflow: auto;
scrollbar-width: none;
-ms-overflow-style: none
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
display: none
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
scroll-snap-align: start start
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
scroll-snap-type: x mandatory
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
scroll-snap-type: y mandatory
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
scroll-snap-type: none
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
scroll-snap-align: none
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
content: '';
flex-shrink: 0;
order: 9999
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
scroll-snap-align: center center;
scroll-snap-stop: always
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
margin-inline-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
height: 100%;
min-height: 1px;
width: var(--swiper-centered-offset-after)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
margin-block-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
width: 100%;
min-width: 1px;
height: var(--swiper-centered-offset-after)
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10
}
.swiper-3d .swiper-slide-shadow {
background: rgba(0, 0, 0, .15)
}
.swiper-3d .swiper-slide-shadow-left {
background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-3d .swiper-slide-shadow-right {
background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-3d .swiper-slide-shadow-top {
background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-3d .swiper-slide-shadow-bottom {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-lazy-preloader {
width: 42px;
height: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
z-index: 10;
transform-origin: 50%;
box-sizing: border-box;
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
border-radius: 50%;
border-top-color: transparent
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
animation: swiper-preloader-spin 1s infinite linear
}
.swiper-lazy-preloader-white {
--swiper-preloader-color: #fff
}
.swiper-lazy-preloader-black {
--swiper-preloader-color: #000
}
@keyframes swiper-preloader-spin {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(360deg)
}
}
.swiper-virtual .swiper-slide {
-webkit-backface-visibility: hidden;
transform: translateZ(0)
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
content: '';
position: absolute;
left: 0;
top: 0;
pointer-events: none
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
height: 1px;
width: var(--swiper-virtual-size)
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
width: 1px;
height: var(--swiper-virtual-size)
}
:root {
--swiper-navigation-size: 44px
}
.swiper-button-next,
.swiper-button-prev {
position: absolute;
top: var(--swiper-navigation-top-offset, 50%);
width: calc(var(--swiper-navigation-size)/ 44 * 27);
height: var(--swiper-navigation-size);
margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
z-index: 10;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--swiper-navigation-color, var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
opacity: .35;
cursor: auto;
pointer-events: none
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
opacity: 0;
cursor: auto;
pointer-events: none
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
display: none !important
}
.swiper-button-next svg,
.swiper-button-prev svg {
width: 100%;
height: 100%;
object-fit: contain;
transform-origin: center
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
transform: rotate(180deg)
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
left: var(--swiper-navigation-sides-offset, 10px);
right: auto
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto
}
.swiper-button-lock {
display: none
}
.swiper-button-next:after,
.swiper-button-prev:after {
font-family: swiper-icons;
font-size: var(--swiper-navigation-size);
text-transform: none !important;
letter-spacing: 0;
font-variant: initial;
line-height: 1
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
content: 'prev'
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
content: 'next'
}
.swiper-pagination {
position: absolute;
text-align: center;
transition: .3s opacity;
transform: translate3d(0, 0, 0);
z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
opacity: 0
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
display: none !important
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
bottom: var(--swiper-pagination-bottom, 8px);
top: var(--swiper-pagination-top, auto);
left: 0;
width: 100%
}
.swiper-pagination-bullets-dynamic {
overflow: hidden;
font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transform: scale(.33);
position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
transform: scale(.33)
}
.swiper-pagination-bullet {
width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
display: inline-block;
border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
background: var(--swiper-pagination-bullet-inactive-color, #000);
opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}
button.swiper-pagination-bullet {
border: none;
margin: 0;
padding: 0;
box-shadow: none;
-webkit-appearance: none;
appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
cursor: pointer
}
.swiper-pagination-bullet:only-child {
display: none !important
}
.swiper-pagination-bullet-active {
opacity: var(--swiper-pagination-bullet-opacity, 1);
background: var(--swiper-pagination-color, var(--swiper-theme-color))
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
right: var(--swiper-pagination-right, 8px);
left: var(--swiper-pagination-left, auto);
top: 50%;
transform: translate3d(0px, -50%, 0)
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
display: block
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
top: 50%;
transform: translateY(-50%);
width: 8px
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
display: inline-block;
transition: .2s transform, .2s top
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
left: 50%;
transform: translateX(-50%);
white-space: nowrap
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transition: .2s transform, .2s left
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transition: .2s transform, .2s right
}
.swiper-pagination-fraction {
color: var(--swiper-pagination-fraction-color, inherit)
}
.swiper-pagination-progressbar {
background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: var(--swiper-pagination-color, var(--swiper-theme-color));
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transform: scale(0);
transform-origin: left top
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
transform-origin: right top
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
width: 100%;
height: var(--swiper-pagination-progressbar-size, 4px);
left: 0;
top: 0
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
width: var(--swiper-pagination-progressbar-size, 4px);
height: 100%;
left: 0;
top: 0
}
.swiper-pagination-lock {
display: none
}
.swiper-scrollbar {
border-radius: var(--swiper-scrollbar-border-radius, 10px);
position: relative;
touch-action: none;
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
display: none !important
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
position: absolute;
left: var(--swiper-scrollbar-sides-offset, 1%);
bottom: var(--swiper-scrollbar-bottom, 4px);
top: var(--swiper-scrollbar-top, auto);
z-index: 50;
height: var(--swiper-scrollbar-size, 4px);
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
position: absolute;
left: var(--swiper-scrollbar-left, auto);
right: var(--swiper-scrollbar-right, 4px);
top: var(--swiper-scrollbar-sides-offset, 1%);
z-index: 50;
width: var(--swiper-scrollbar-size, 4px);
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}
.swiper-scrollbar-drag {
height: 100%;
width: 100%;
position: relative;
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
border-radius: var(--swiper-scrollbar-border-radius, 10px);
left: 0;
top: 0
}
.swiper-scrollbar-cursor-drag {
cursor: move
}
.swiper-scrollbar-lock {
display: none
}
.swiper-zoom-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
max-width: 100%;
max-height: 100%;
object-fit: contain
}
.swiper-slide-zoomed {
cursor: move;
touch-action: none
}
.swiper .swiper-notification {
position: absolute;
left: 0;
top: 0;
pointer-events: none;
opacity: 0;
z-index: -1000
}
.swiper-free-mode > .swiper-wrapper {
transition-timing-function: ease-out;
margin: 0 auto
}
.swiper-grid > .swiper-wrapper {
flex-wrap: wrap
}
.swiper-grid-column > .swiper-wrapper {
flex-wrap: wrap;
flex-direction: column
}
.swiper-fade.swiper-free-mode .swiper-slide {
transition-timing-function: ease-out
}
.swiper-fade .swiper-slide {
pointer-events: none;
transition-property: opacity
}
.swiper-fade .swiper-slide .swiper-slide {
pointer-events: none
}
.swiper-fade .swiper-slide-active {
pointer-events: auto
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
pointer-events: auto
}
.swiper.swiper-cube {
overflow: visible
}
.swiper-cube .swiper-slide {
pointer-events: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 1;
visibility: hidden;
transform-origin: 0 0;
width: 100%;
height: 100%
}
.swiper-cube .swiper-slide .swiper-slide {
pointer-events: none
}
.swiper-cube.swiper-rtl .swiper-slide {
transform-origin: 100% 0
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
pointer-events: auto
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
pointer-events: auto;
visibility: visible
}
.swiper-cube .swiper-cube-shadow {
position: absolute;
left: 0;
bottom: 0px;
width: 100%;
height: 100%;
opacity: .6;
z-index: 0
}
.swiper-cube .swiper-cube-shadow:before {
content: '';
background: #000;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
filter: blur(50px)
}
.swiper-cube .swiper-slide-next + .swiper-slide {
pointer-events: auto;
visibility: visible
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
z-index: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.swiper.swiper-flip {
overflow: visible
}
.swiper-flip .swiper-slide {
pointer-events: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 1
}
.swiper-flip .swiper-slide .swiper-slide {
pointer-events: none
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
pointer-events: auto
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
z-index: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.swiper-creative .swiper-slide {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
overflow: hidden;
transition-property: transform, opacity, height
}
.swiper.swiper-cards {
overflow: visible
}
.swiper-cards .swiper-slide {
transform-origin: center bottom;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
overflow: hidden
}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}*,
::after,
::before,
::backdrop,
::file-selector-button {
box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; } html,
:host {
line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; -webkit-tap-highlight-color: transparent; } hr {
height: 0; color: inherit; border-top-width: 1px; } abbr:where([title]) {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
} h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
} a {
color: inherit;
-webkit-text-decoration: inherit;
text-decoration: inherit;
} b,
strong {
font-weight: bolder;
} code,
kbd,
samp,
pre {
font-family: --theme(
--default-mono-font-family,
ui-monospace,
SFMono-Regular,
Menlo,
Monaco,
Consolas,
'Liberation Mono',
'Courier New',
monospace
); font-feature-settings: --theme(--default-mono-font-feature-settings, normal); font-variation-settings: --theme(--default-mono-font-variation-settings, normal); font-size: 1em; } small {
font-size: 80%;
} sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
} table {
text-indent: 0; border-color: inherit; border-collapse: collapse; } :-moz-focusring {
outline: auto;
} progress {
vertical-align: baseline;
} summary {
display: list-item;
} ol,
ul,
menu {
list-style: none;
} img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
display: block; vertical-align: middle; } img,
video {
max-width: 100%;
height: auto;
} button,
input,
select,
optgroup,
textarea,
::file-selector-button {
font: inherit; font-feature-settings: inherit; font-variation-settings: inherit; letter-spacing: inherit; color: inherit; border-radius: 0; background-color: transparent; opacity: 1; } :where(select:is([multiple], [size])) optgroup {
font-weight: bolder;
} :where(select:is([multiple], [size])) optgroup option {
padding-inline-start: 20px;
} ::file-selector-button {
margin-inline-end: 4px;
} ::placeholder {
opacity: 1;
} @supports (not (-webkit-appearance: -apple-pay-button)) or
(contain-intrinsic-size: 1px) {
::placeholder {
color: color-mix(in oklab, currentcolor 50%, transparent);
}
} textarea {
resize: vertical;
} ::-webkit-search-decoration {
-webkit-appearance: none;
} ::-webkit-date-and-time-value {
min-height: 1lh; text-align: inherit; } ::-webkit-datetime-edit {
display: inline-flex;
} ::-webkit-datetime-edit-fields-wrapper {
padding: 0;
}
::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
padding-block: 0;
} :-moz-ui-invalid {
box-shadow: none;
} button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
appearance: button;
} ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
} [hidden]:where(:not([hidden='until-found'])) {
display: none !important;
}@font-face {
font-family: 'icomoon';
src: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/icomoon.eot?rni7yd);
src: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/icomoon.eot?rni7yd#iefix) format('embedded-opentype'),
url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/icomoon.ttf?rni7yd) format('truetype'), url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/icomoon.woff?rni7yd) format('woff'),
url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/icomoon.svg?rni7yd#icomoon) format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^='icon-'],
[class*=' icon-'] { font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
content: '\e90f';
}
.icon-bar:before {
content: '\e90e';
}
.icon-arrow:before {
content: '\e90c';
}
.icon-download:before {
content: '\e90d';
}
.icon-address:before {
content: '\e908';
}
.icon-clock:before {
content: '\e909';
}
.icon-chevron-down:before {
content: '\e90a';
}
.icon-more:before {
content: '\e90b';
}
.icon-facebook:before {
content: '\e900';
}
.icon-linkedin:before {
content: '\e901';
}
.icon-twitter:before {
content: '\e902';
}
.icon-instagram:before {
content: '\e903';
}
.icon-search:before {
content: '\e904';
}
.icon-email:before {
content: '\e905';
}
.icon-phone:before {
content: '\e906';
}
.icon-marker:before {
content: '\e907';
}
@font-face {
font-family: 'Prata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/Prata-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/fonts/Hind-Medium.ttf) format('truetype');
}
html {
scroll-behavior: smooth;
} :root { --font-size-h1: clamp(1.875rem, 4vw, 4rem); --font-size-h2: clamp(1.875rem, 4vw, 2.75rem); --font-size-h3: clamp(1.75rem, 4vw, 2.5rem); --font-size-h4: clamp(1.5rem, 3vw, 1.875rem); --font-size-h5: clamp(1.25rem, 2.5vw, 1.5rem); --font-size-h6: clamp(1.125rem, 2vw, 1.25rem); --font-size-h7: clamp(1.125rem, 1.8vw, 1.125rem);  --font-size-body1: clamp(1rem, 2vw, 1.25rem); --font-size-body2: clamp(0.875rem, 1.8vw, 1rem); --font-size-body3: 0.75rem;  --font-size-button: clamp(0.875rem, 1.8vw, 1rem);  --font-family-title: 'Prata', serif;
--font-family-body: 'Hind', sans-serif; --font-weight-h1: 600;
--font-weight-h2: 600;
--font-weight-h3: 600; --font-weight-h4: 500;
--font-weight-h5: 500;
--font-weight-h6: 500;
--font-weight-body1: 500; --font-weight-body2: 400; --font-weight-body3: 400;
--font-weight-button: 600;  --letter-spacing-title: -0.02em;
--letter-spacing-button: 0.03em; --line-height-body1: 1.4;
--line-height-body2: 1.4;
--line-height-body3: 1.4;
}  :root {
--color-black: hsl(0, 0%, 0%);
--color-white: hsl(0, 0%, 100%);
--color-primary: #1c2964;
--color-secondary: #1f2a44;
--color-tertiary: #4b5563;
--color-quaternary: #b3b3b3;
--color-quinary: #f1e6da;
--color-senary: #c19a6b;
--color-septenary: #c03951;
--color-octonary: #be202f;
--color-nonary: #4b2e39;
--color-transparent: hsla(0, 0%, 0%, 0);
--pl-blue: #052e44;
}  h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-family-title);
}
.title-h1 {
font-family: var(--font-family-title);
font-size: var(--font-size-h1) !important;
font-weight: var(--font-weight-h1);
letter-spacing: var(--letter-spacing-title);
line-height: 1.2;
margin-bottom: 1rem;
}
.heading-2 {
font-family: var(--font-family-title);
font-size: var(--font-size-h2) !important;
font-weight: var(--font-weight-h2);
letter-spacing: var(--letter-spacing-title);
line-height: 1.25;
margin-bottom: 1rem;
}
.heading-3 {
font-family: var(--font-family-body);
font-size: var(--font-size-h3) !important;
font-weight: var(--font-weight-h3);
letter-spacing: var(--letter-spacing-title);
line-height: 1.3;
margin-bottom: 1rem;
}
.heading-4 {
font-family: var(--font-family-title);
font-size: var(--font-size-h4) !important;
font-weight: var(--font-weight-h4);
letter-spacing: var(--letter-spacing-title);
line-height: 1.35;
margin-bottom: 1rem;
}
.heading-5 {
font-family: var(--font-family-title);
font-size: var(--font-size-h5) !important;
font-weight: var(--font-weight-h5);
letter-spacing: var(--letter-spacing-title);
line-height: 1.4;
margin-bottom: 1rem;
}
.heading-6 {
font-family: var(--font-family-title);
font-size: var(--font-size-h6) !important;
font-weight: var(--font-weight-h6);
letter-spacing: var(--letter-spacing-title);
line-height: 1.4;
margin-bottom: 1rem;
}
.heading-7 {
font-family: var(--font-family-title);
font-size: var(--font-size-h7) !important;
font-weight: var(--font-weight-h6);
letter-spacing: var(--letter-spacing-title);
line-height: 1.4;
margin-bottom: 1rem;
}  .body-text-1 {
font-family: var(--font-family-body);
font-size: var(--font-size-body1);
font-weight: var(--font-weight-body1);
line-height: var(--line-height-body1);
margin-bottom: 1rem;
}
.body-text-2,
p.body-text-2 {
font-family: var(--font-family-body);
font-size: var(--font-size-body2);
font-weight: var(--font-weight-body2);
line-height: var(--line-height-body2);
margin-bottom: 1rem;
}
.body-text-3,
p.body-text-3 {
font-family: var(--font-family-body);
font-size: var(--font-size-body3);
font-weight: var(--font-weight-body3);
line-height: var(--line-height-body3);
margin-bottom: 1rem;
}  .button-text {
font-family: var(--font-family-body);
font-size: var(--font-size-button);
font-weight: var(--font-weight-button);
letter-spacing: var(--letter-spacing-button);
text-transform: uppercase;
}  .font-weight-100 {
font-weight: 100 !important;
}
.font-weight-200 {
font-weight: 200 !important;
}
.font-weight-300 {
font-weight: 300 !important;
}
.font-weight-400 {
font-weight: 400 !important;
}
.font-weight-500 {
font-weight: 500 !important;
}
.font-weight-600 {
font-weight: 600 !important;
}
.font-weight-700 {
font-weight: 700 !important;
}
.font-weight-800 {
font-weight: 800 !important;
}
.font-weight-900 {
font-weight: 900 !important;
}  .text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-balance {
text-wrap: balance;
}
@media (min-width: 992px) {
.text-lg-left {
text-align: left;
}
.text-lg-center {
text-align: center;
}
.text-lg-right {
text-align: right;
}
}  .text-primary {
color: var(--color-primary) !important;
}
.text-secondary {
color: var(--color-secondary) !important;
}
.text-white {
color: var(--color-white) !important;
}
.text-black {
color: var(--color-black) !important;
}
.text-tertiary {
color: var(--color-tertiary) !important;
}
.text-quinary {
color: var(--color-quinary) !important;
}
.text-dark {
color: #0e151d !important;
}
.text-quaternary {
color: var(--color-quaternary) !important;
}
.text-octonary {
color: var(--color-octonary) !important;
}
.text-pl-blue {
color: var(--pl-blue) !important;
}  .bg-primary {
background-color: var(--color-primary) !important;
}
.bg-secondary {
background-color: var(--color-secondary) !important;
}
.bg-white {
background-color: var(--color-white) !important;
}
.bg-black {
background-color: var(--color-black) !important;
}
.bg-tertiary {
background-color: var(--color-tertiary) !important;
}
.bg-quinary {
background-color: var(--color-quinary) !important;
}
.bg-dark {
background-color: #0e151d;
}
.bg-pl-blue {
background-color: var(--pl-blue) !important;
}
.bg-octonary {
background-color: var(--color-octonary) !important;
}
.bg-transparent {
background-color: var(--color-transparent) !important;
}  .bordered {
border-width: 1px !important;
border-style: solid !important;
}
.border-primary {
border-color: var(--color-primary) !important;
}
.border-secondary {
border-color: var(--color-secondary) !important;
}
.border-white {
border-color: var(--color-white) !important;
}
.border-black {
border-color: var(--color-black) !important;
}
.border-tertiary {
border-color: var(--color-tertiary) !important;
}
.border-quinary {
border-color: var(--color-quinary) !important;
}
.border-quaternary {
border-color: var(--color-quaternary) !important;
}
.border-octonary {
border-color: var(--color-octonary) !important;
}
.border-pl-blue {
border-color: var(--pl-blue) !important;
} .rounded {
border-radius: 1.25rem;
}
.rounded-circle {
border-radius: 50%;
}
.rounded-sm {
border-radius: 0.25rem;
}
.rounded-md {
border-radius: 0.5rem;
}
.rounded-lg {
border-radius: 0.75rem;
}
.rounded-xl {
border-radius: 1rem;
} .w-25 {
width: 25% !important;
}
.w-50 {
width: 50% !important;
}
.w-75 {
width: 75% !important;
}
.w-100 {
width: 100% !important;
}
.w-auto {
width: auto !important;
}
.h-25 {
height: 25% !important;
}
.h-50 {
height: 50% !important;
}
.h-75 {
height: 75% !important;
}
.h-100 {
height: 100% !important;
}
.h-auto {
height: auto !important;
} html,
body {
font-family: var(--font-family-body);
}
.row-reverse {
flex-direction: row-reverse;
}
.heading-section__title span,
.heading-section__desc span,
.title-red {
color: var(--color-octonary);
}
.sw-pg--center {
justify-content: center;
align-items: center;
display: flex;
}
.aic {
align-items: center;
}
.button {
background-color: var(--pl-blue);
color: #fff;
font-weight: 600;
font-size: 1rem;
height: 3rem;
padding: 0.75rem 1rem;
border-radius: 1.25rem;
transition: 0.5s;
display: flex;
min-width: 10rem;
width: fit-content;
align-items: center;
justify-content: center;
text-transform: capitalize;
}
.button:hover {
background-color: var(--color-octonary);
}
.button-link {
background-color: var(--color-transparent);
color: var(--color-octonary);
font-size: 1rem;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
transition: 300ms;
&:hover {
color: var(--color-octonary);
text-decoration: underline;
}
}
.button-white {
background-color: var(--color-white);
color: var(--color-black);
font-weight: 600;
font-size: 1rem;
padding: 1rem 2rem;
border-radius: 1.25rem;
transition: 300ms;
border: 1px solid var(--color-white);
&:hover {
background-color: var(--pl-blue);
color: var(--color-white);
}
}
.bg-pattern {
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/pattern2.png);
background-size: 100%;
background-position: center center;
background-repeat: no-repeat;
} nav ul.nav {
position: relative;
color: var(--pl-blue);
& *,
& *::before,
& *::after {
transition: 100ms;
}
& > .menu-item.nav-item {
--indicator-offset: 0.25rem;
margin-inline: calc(4 * var(--indicator-offset));
position: relative;
&::before {
content: '';
width: 0px;
height: 2px;
position: absolute;
background-color: currentcolor;
bottom: -2px;
left: calc(-1 * var(--indicator-offset));
}
&:hover::before {
width: calc(100% + calc(2 * var(--indicator-offset)));
}
}
& ul > .menu-item {
color: var(--pl-blue);
}
& .dropdown {
& .dropdown-toggle::after {
content: '';
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA4IDUiIGZpbGw9Im5vbmUiPgogIDxwYXRoIGQ9Ik0xLjAwNzgxIDEuMTgxNEw0LjAwNzgxIDQuMTgxNEw3LjAwNzgxIDEuMTgxNCIgc3Ryb2tlPSIjQkUyMDJGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
--arrow-size: 0.75rem;
width: var(--arrow-size);
height: var(--arrow-size);
background-size: var(--arrow-size);
display: inline-block;
margin-left: 0.5rem;
background-position: center;
background-repeat: no-repeat;
}
& .dropdown-menu {
opacity: 0;
visibility: hidden;
transition: 300ms;
position: absolute;
top: 2rem;
padding: 0rem;
border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
background-color: #ffffff;
& .menu-item {
padding-inline: 0.5rem;
padding-block: 0.325rem;
font-size: 90%; &:hover {
background-color: var(--pl-blue);
color: var(--color-white);
}
&:first-child {
border-radius: 0.5rem 0.5rem 0rem 0rem;
}
&:last-child {
border-radius: 0rem 0rem 0.5rem 0.5rem;
}
}
}
& .dropdown-item {
display: block;
white-space: nowrap;
}
&:hover .dropdown-menu {
opacity: 1;
visibility: visible;
box-shadow: 0 0 2px 0px #00000040;
border: 1px solid #052e4440;
z-index: 100;
}
}
}  footer {
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/pattern3.png);
background-size: cover;
background-position: center center;
& .menu .menu-item {
margin-block: 0.25rem;
padding-block: 0.25rem;
}
} .heading-section {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
gap: 1.5rem;
margin-bottom: 3.75rem;
}
.heading-section__desc {
text-align: center;
text-wrap-style: balance;
font-size: 1rem;
color: #4b5563;
line-height: 1.25;
}
.heading-section__title {
text-align: center;
text-wrap-style: balance;
font-size: 2.75rem;
color: #052e44;
line-height: 1.25;
}
.heading-section__btn {
color: #be202f;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-size: 1rem;
font-weight: 600;
transition: color 0.5s;
text-transform: capitalize;
}
.heading-section__btn:hover {
color: #052e44;
}
.heading-section__btn i {
transition: transform 0.5s;
}
.heading-section__btn:hover i {
transform: rotate(45deg);
}
.space--lg {
margin-block: 7.5rem;
}
.btns__wrapper {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}
@media (max-width: 991.98px) {
.heading-section {
margin-bottom: 1.75rem;
}
.heading-section__title {
font-size: 1.75rem;
}
.space--lg {
margin-block: 3.5rem;
}
}
.related-posts-section {
& .related-posts-section--posts {
& .card {
box-shadow: 0px 4px 16px 0px rgba(34, 34, 34, 0.08);
border-radius: 1rem;
}
}
}
section.search #sidebar-search {
border: 1px solid #aaaaaa;
width: 100%;
padding: 0.75rem;
border-radius: 0.75rem;
outline: none;
font-size: 1rem;
}
.main-content {
font-size: 1rem;
line-height: 1.65;
color: #4b5563;
}
.main-content img {
display: block;
margin: 1rem auto;
border-radius: 1.25rem;
}
.main-content {
& h1 {
font-size: 2.5rem;
}
& h2 {
font-size: 1.875rem;
}
& h3 {
font-size: 1.5rem;
}
& h4 {
font-size: 1.25rem;
}
& h5 {
font-size: 1.125rem;
}
& h6 {
font-size: 1.125rem;
}
}
@media (max-width: 991.98px) {
.main-content {
& h1 {
font-size: 1.75rem;
}
& h2 {
font-size: 1.5rem;
}
& h3 {
font-size: 1.25rem;
}
& h4 {
font-size: 1.125rem;
}
& h5 {
font-size: 1.125rem;
}
& h6 {
font-size: 1.125rem;
}
}
}
.main-content :is(h1, h2, h3, h4, h5, h6) {
margin-block: 3.5rem 1.5rem;
}
#modular-page > div:first-child {
margin-top: 3rem !important;
}
@media (max-width: 991.98px) {
.main-content :is(h1, h2, h3, h4, h5, h6) {
margin-block: 3.5rem 1.5rem;
}
}
.anchor-link {
width: 1rem;
position: absolute;
left: 50%;
top: -2.5rem;
}
@media (min-width: 1024px) {
.anchor-link {
top: -8rem;
}
} span.swiper-pagination-bullet {
--swiper-bullet-size: 0.675rem;
width: var(--swiper-bullet-size);
height: var(--swiper-bullet-size);
border-radius: 1000px;
transition: 300ms;
&:hover {
background-color: var(--color-octonary);
}
&.swiper-pagination-bullet-active {
width: calc(2 * var(--swiper-bullet-size));
}
}
.main-top {
padding-block-start: 3rem;
}
@media (max-width: 991.98px) {
.main-top {
padding-block-start: 2rem;
}
} main article .main-content :is(p, ul, li) a {
text-decoration: underline;
text-decoration-color: var(--pl-blue);
position: relative;
transition: 300ms;
&::before {
content: '';
position: absolute;
width: 0%;
background-color: var(--pl-blue);
bottom: 2px;
transition: 150ms;
height: 4px;
border-radius: 1rem;
}
&:hover {
text-decoration: none;
&::before {
width: 100%;
}
}
}  .pagination-wrapper {
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
& .page-numbers {
--item-size: 2.25rem;
display: flex;
width: var(--item-size);
height: var(--item-size);
align-items: center;
padding: 0.5rem;
color: var(--pl-blue, #052e44);
font-family: var(--font-family-body);
font-size: 1rem;
border-radius: 1000px;
justify-content: center;
transition: 300ms;
&:not(.dots) {
&.current,
&:hover {
background-color: #e6b9bf;
font-weight: 700;
color: var(--color-octonary);
}
}
}
}  .mp-breadcrumb .rank-math-breadcrumb {
font-size: 0.875rem;
& span {
color: var(--pl-blue);
&.separator {
margin-inline: 0.5rem;
}
}
& a {
color: var(--color-octonary);
}
}
.section-hero .hero__content .mp-breadcrumb {
margin-bottom: 0 !important;
margin-top: 2rem;
}  .mp-faq-wrapper {
& .mp-faq-item {
padding-block: 1.25rem;
padding-inline: 1.25rem; border-radius: 1.25rem;
background-color: var(--pl-blue);
border: none;
&:has(.active) { }
& .mp-faq-question {
--icon-size: 2rem;
position: relative;
color: #fff;
font-family: var(--font-family-title);
font-size: 1.5rem;
font-style: normal;
font-weight: 600;
line-height: normal;
background-color: transparent;
border: none;
padding-inline: 0 3rem;
text-wrap: auto;
transition: 300ms;
& .mp-faq-question-title {
margin: 0 !important;
color: #fff;
font-family: var(--font-family-title);
font-size: 1.5rem;
font-style: normal;
transition: 300ms;
&:hover {
color: var(--color-quaternary);
}
&.active {
color: var(--color-quaternary);
&::after {
opacity: 1;
transform: scale(1) rotate(90deg);
background-color: var(--pl-blue);
border-radius: 1000px;
}
}
}
&::before,
&::after {
content: '';
transition: 700ms;
position: absolute;
top: calc(50% - calc(var(--icon-size) / 2));
left: auto;
right: 0;
background-size: var(--icon-size);
width: var(--icon-size);
height: var(--icon-size);
}
&::before,
&::after {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath opacity='0.5' d='M15.9735 29.3114C23.3253 29.3114 29.285 23.3516 29.285 15.9999C29.285 8.64821 23.3253 2.68848 15.9735 2.68848C8.62184 2.68848 2.66211 8.64821 2.66211 15.9999C2.66211 23.3516 8.62184 29.3114 15.9735 29.3114Z' fill='white'/%3E%3Cpath d='M14.6828 11.3007C14.2929 10.9108 13.6608 10.9108 13.2709 11.3007C12.881 11.6906 12.881 12.3227 13.2709 12.7126L16.5584 16.0001L13.2709 19.2876C12.881 19.6775 12.881 20.3096 13.2709 20.6995C13.6608 21.0894 14.2929 21.0894 14.6828 20.6995L18.6763 16.706C19.0661 16.3162 19.0661 15.684 18.6763 15.2941L14.6828 11.3007Z' fill='%23252B37'/%3E%3C/svg%3E");
}
&::after { opacity: 0;
transform: scale(0) rotate(0deg);
}
&:hover {
color: var(--color-quaternary);
}
&.active {
color: var(--color-quaternary);
&::after {
opacity: 1;
transform: scale(1) rotate(90deg);
background-color: var(--pl-blue);
border-radius: 1000px;
}
}
}
.mp-faq-wrapper {
& .mp-faq-item {
& .mp-faq-question {
& .mp-faq-question-title {
margin: 0 !important;
color: #fff;
font-family: var(--font-family-title);
font-size: 1.5rem;
font-style: normal;
transition: 300ms;
&:hover {
color: var(--color-quaternary);
}
&.active {
color: var(--color-quaternary);
&::after {
opacity: 1;
transform: scale(1) rotate(90deg);
background-color: var(--pl-blue);
border-radius: 1000px;
}
}
}
}
}
}
& .mp-faq-answer {
color: #fff !important;
font-size: 1rem;
font-family: var(--font-family-body);
font-style: normal;
font-weight: 400;
line-height: normal;
margin: 0; & p {
color: #fff !important;
}
}
}
} .section-box-info.box-info-simple-center {
& .box-info_row {
& .box-info-item {
padding: 2.5rem 3rem;
background-color: #fff;
border-radius: 0.90831rem;
border: 0.73px solid rgba(2, 0, 39, 0.25);
box-shadow: 0 4px 17px 0 rgba(34, 34, 34, 0.08);
& .box-info-item-title {
text-align: center;
& span {
color: var(--color-octonary);
}
}
}
}
& .block_boxinfo_cards__text_foot {
text-align: center;
& :is(b, strong) {
color: var(--color-octonary);
}
}
}
.author-box-container {
& .author-box {
padding: 2rem 1rem;
position: relative;
&::before {
content: '';
z-index: -1;
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/ctabg.png);
background-size: contain;
background-repeat: no-repeat;
background-position: top;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0.25;
}
& .author-img {
max-height: 10rem;
object-fit: contain;
width: auto;
}
& .author-box--content {
& .author-title {
margin-top: 1rem;
position: relative;
margin-bottom: 1.5rem !important;
--border-length: 2.5rem;
&::before {
content: '';
display: block;
left: 0;
top: auto;
bottom: 0;
width: var(--border-length);
height: 2px;
border-radius: 2rem;
background-color: var(--color-octonary);
position: absolute;
}
}
}
}
}
@media (max-width: 991px) {
.author-box-container {
& .author-box {
justify-content: center;
& .author-box--content {
& .author-name,
& .author-title,
& .author-text {
text-align: center;
}
& .author-title::before {
width: calc(2 * var(--border-length)) !important;
left: calc(50% - var(--border-length)) !important;
}
}
}
}
} .post-content table {
margin-bottom: 2rem;
& thead * {
font-size: var(--font-size-h3);
color: var(--pl-blue) !important;
font-weight: 400 !important;
}
& tbody {
border-radius: 2rem;
& tr {
--th-border-height: 1.625rem;
text-align: center;
& th {
background-color: var(--pl-blue);
color: #fff !important;
padding-block: 2rem;
line-height: 1;
&:first-child {
border-radius: 1rem 0 0 0;
}
&:last-child {
border-radius: 0 1rem 0 0;
}
&:not(:last-child) {
position: relative;
&::after {
content: '';
position: absolute;
left: auto;
top: calc(50% - var(--th-border-height) / 2);
width: 2px;
right: 0;
height: var(--th-border-height);
background-color: #fff;
border-radius: 2rem;
}
}
}
&:nth-child(odd) td {
background-color: #ecf4fd;
}
&:nth-child(even) td {
background-color: #fff;
}
& td {
padding: 1rem;
color: var(--pl-blue) !important;
}
&:last-child td {
&:first-child {
border-radius: 0 0 0 1rem;
}
&:last-child {
border-radius: 0 0 1rem 0;
}
}
& :is(td, th) {
}
}
}
}  .mp-pl-shortcode {
padding: 2rem 1rem;
margin: 1.5rem 0 2rem;
background-color: var(--pl-blue);
background-image: url(//www.prestigelaw.com/wp-content/themes/marketing-planet-theme/assets/img/ctabg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: top;
display: flex;
flex-direction: column;
gap: 1rem;
border-radius: 1.25rem;
& .custom-title {
text-align: center;
text-wrap-style: balance;
font-size: clamp(1.5rem, 4vw, 1.75rem);
color: #ffffff;
margin: 0;
}
& .custom-text {
text-align: center;
text-wrap-style: balance;
font-size: 1rem;
color: #ffffff;
}
& .btn.btn-primary {
margin: 0 auto;
color: #052e44;
font-size: 1rem;
padding: 0.625rem 1.5rem;
border-radius: 1.25rem;
background: #fff;
font-weight: 600;
transition: 0.5s;
&:hover {
background-color: var(--color-octonary);
}
}
} article.main-content {
& :is(ul, ol) {
list-style: revert;
padding-inline-start: 2rem;
& li {
margin-bottom: 0.5rem;
}
}
}.contact-section {
margin-block: 6rem;
position: relative;
& .col-12.contact-form {
& .contact-form--content {
& .contact-form--title {
& span {
color: var(--color-octonary);
}
}
& p.contact-form--subtitle {
& span {
color: var(--color-octonary);
font-weight: 700;
}
}
}
}
& .contact-form textarea::placeholder,
& .contact-form input::placeholder {
color: var(--color-tertiary);
font-size: 1rem;
}
& .contact-form select {
color: var(--color-tertiary);
}
& .contact-form textarea,
& .contact-form select,
& .contact-form input {
border: 1px solid #aaaaaa;
width: 100%;
padding: 0.75rem;
border-radius: 0.75rem;
outline: none;
font-size: 1rem;
}
& .wpcf7 {
box-shadow: 0px 3.81px 16.2px 0px #22222214;
background-color: #fff;
padding: 2.5rem;
border-radius: 1rem;
margin-top: 2rem;
}
& p.wpcf7-contact-form-not-found {
color: var(--color-octonary);
text-align: center;
}
& .contact-form input[type='submit']:hover {
background-color: var(--color-octonary);
}
& .contact-form input[type='submit'] {
background-color: var(--pl-blue);
color: #fff;
cursor: pointer;
display: block;
text-align: center;
transition: 0.5s;
}
& .form-check p {
color: var(--color-tertiary);
font-size: 0.75rem;
line-height: 1.75;
}
& .contact-form--title {
text-align: center;
font-size: 2.75rem;
margin-bottom: 1rem;
color: var(--pl-blue);
}
& .contact-form--subtitle {
color: var(--color-tertiary);
font-size: 1rem;
text-align: center;
font-weight: 600;
text-wrap-style: balance;
}
& .form-check .wpcf7-list-item label {
display: flex;
gap: 1rem;
}
& .form-check .wpcf7-list-item label input[type='checkbox'] {
width: 1.5rem;
height: 1.5rem;
flex-shrink: 0;
border-radius: 0.25rem !important;
cursor: pointer;
}
}
@media (max-width: 991.98px) {
.contact-section {
margin-block: 4rem;
& .wpcf7 {
padding: 1.5rem 0.5rem;
}
& .section-block_content .d-flex {
justify-content: center;
}
& .section-block_content img {
margin-inline: auto;
}
}
}.blog-post-container {
& h1 {
font-size: var(--font-size-h2);
font-weight: 400 !important;
line-height: 1.2;
color: var(--color-primary);
}
& h2 {
font-size: var(--font-size-h4);
font-weight: var(--font-weight-h4);
line-height: 1.4;
color: var(--color-primary);
margin-block: 3rem 1rem;
}
& h3 {
font-size: var(--font-size-h5);
font-weight: var(--font-weight-h5);
line-height: 1.4;
color: var(--color-primary);
margin-block: 2rem 0.75rem;
}
& h4,
& h5,
& h6 {
font-size: var(--font-size-h6);
font-weight: var(--font-weight-h6);
line-height: 1.4;
color: var(--color-primary);
margin-block: 1.5rem 0.5rem;
}
& .post-thumbnail {
& img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 1.25rem;
}
}
& .post-content {
& :not(h1, h2, h3, h4, h5, h6, span) {
color: var(--color-tertiary);
}
& :is(strong, em, b) {
font-weight: 700;
}
& p {
font-size: 1rem;
&:not(:last-child) {
margin-bottom: 0.75rem;
}
}
& a {
color: var(--color-octonary);
text-decoration: underline;
transition: 300ms ease-in-out;
&:hover {
color: var(--color-secondary);
}
}
& :is(ul, ol) {
list-style: revert;
padding: revert;
margin: revert;
}
}
}