html.remodal-is-locked {
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
} .remodal,
[data-remodal-id] {
display: none;
} .remodal-overlay {
position: fixed;
z-index: 9999;
top: -5000px;
right: -5000px;
bottom: -5000px;
left: -5000px;
display: none;
} .remodal-wrapper {
position: fixed;
z-index: 10000;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
overflow: auto;
text-align: center;
-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
display: inline-block;
height: 100%;
margin-left: -0.05em;
content: "";
} .remodal-overlay,
.remodal-wrapper {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
} .remodal {
position: relative;
outline: none;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
.remodal-is-initialized { display: inline-block;
}.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
-webkit-filter: blur(3px);
filter: blur(3px);
} .remodal-overlay {
background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
-webkit-animation-name: remodal-overlay-opening-keyframes;
animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
-webkit-animation-name: remodal-overlay-closing-keyframes;
animation-name: remodal-overlay-closing-keyframes;
} .remodal-wrapper {
padding: 10px 10px 0;
} .remodal {
box-sizing: border-box;
width: 100%;
margin-bottom: 10px;
padding: 35px;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
color: #2b2e38;
background: #fff;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
-webkit-animation-name: remodal-opening-keyframes;
animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
-webkit-animation-name: remodal-closing-keyframes;
animation-name: remodal-closing-keyframes;
} .remodal,
.remodal-wrapper:after {
vertical-align: middle;
} .remodal-close {
position: absolute;
top: 0;
left: 0;
display: block;
overflow: visible;
width: 35px;
height: 35px;
margin: 0;
padding: 0;
cursor: pointer;
-webkit-transition: color 0.2s;
transition: color 0.2s;
text-decoration: none;
color: #95979c;
border: 0;
outline: 0;
background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
color: #2b2e38;
}
.remodal-close:before {
font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
font-size: 25px;
line-height: 35px;
position: absolute;
top: 0;
left: 0;
display: block;
width: 35px;
content: "\00d7";
text-align: center;
} .remodal-confirm,
.remodal-cancel {
font: inherit;
display: inline-block;
overflow: visible;
min-width: 110px;
margin: 0;
padding: 12px 0;
cursor: pointer;
-webkit-transition: background 0.2s;
transition: background 0.2s;
text-align: center;
vertical-align: middle;
text-decoration: none;
border: 0;
outline: 0;
}
.remodal-confirm {
color: #fff;
background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
background: #66bb6a;
}
.remodal-cancel {
color: #fff;
background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
background: #ef5350;
} .remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
padding: 0;
border: 0;
} @-webkit-keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@-webkit-keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
} @media only screen and (min-width: 641px) {
.remodal {
max-width: 700px;
}
} .lt-ie9 .remodal-overlay {
background: #2b2e38;
}
.lt-ie9 .remodal {
width: 700px;
}.wpgmza-marker-library-dialog iframe{
display: block;
width: 100%;
height: 80vh;
}
input#wpgmza_add_address_map_editor {
width: 80% !important;
}
.wpgmza-marker-library-dialog {
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
max-width: 100%;
width: 1200px;
}
.wpgmza-marker-library-dialog #wpgmza-powered-by-mappity {
position: absolute;
float: unset;
top: 8px;
right: 5px;
}.cmplz-video.cmplz-iframe-styles{background-color:transparent}.cmplz-video.cmplz-hidden{visibility:hidden !important}.cmplz-blocked-content-notice{display:none}.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice,.cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice{display:block}.cmplz-blocked-content-container,.cmplz-wp-video{animation-name:cmplz-fadein;animation-duration:600ms;background:#FFF;border:0;border-radius:3px;box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;background-repeat:no-repeat !important;background-size:cover !important;height:inherit;position:relative}.cmplz-blocked-content-container.gmw-map-cover,.cmplz-wp-video.gmw-map-cover{max-height:100%;position:absolute}.cmplz-blocked-content-container.cmplz-video-placeholder,.cmplz-wp-video.cmplz-video-placeholder{padding-bottom:initial}.cmplz-blocked-content-container iframe,.cmplz-wp-video iframe{visibility:hidden;max-height:100%;border:0 !important}.cmplz-blocked-content-container .cmplz-custom-accept-btn,.cmplz-wp-video .cmplz-custom-accept-btn{white-space:normal;text-transform:initial;cursor:pointer;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:200px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus,.cmplz-wp-video .cmplz-custom-accept-btn:focus{border:1px dotted #cecece}.cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-wp-video .cmplz-blocked-content-notice{white-space:normal;text-transform:initial;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links{display:block;margin-bottom:10px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a{color:#fff}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body{display:block}.cmplz-blocked-content-container div div{display:none}.cmplz-wp-video .cmplz-placeholder-element{width:100%;height:inherit}@keyframes cmplz-fadein{from{opacity:0}to{opacity:1}}*,
::before,
::after {
box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
::before,
::after {
--tw-content: '';
} html {
line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; -o-tab-size: 4;
tab-size: 4; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-feature-settings: normal; font-variation-settings: normal; } body {
margin: 0; line-height: inherit; } 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;
text-decoration: inherit;
} b,
strong {
font-weight: bolder;
} code,
kbd,
samp,
pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 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; } button,
input,
optgroup,
select,
textarea {
font-family: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; } button,
select {
text-transform: none;
} button,
[type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: button; background-color: transparent; background-image: none; } :-moz-focusring {
outline: auto;
} :-moz-ui-invalid {
box-shadow: none;
} progress {
vertical-align: baseline;
} ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
} [type='search'] {
-webkit-appearance: textfield; outline-offset: -2px; } ::-webkit-search-decoration {
-webkit-appearance: none;
} ::-webkit-file-upload-button {
-webkit-appearance: button; font: inherit; } summary {
display: list-item;
} blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
margin: 0;
}
fieldset {
margin: 0;
padding: 0;
}
legend {
padding: 0;
}
ol,
ul,
menu {
list-style: none;
margin: 0;
padding: 0;
} dialog {
padding: 0;
} textarea {
resize: vertical;
} input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1; color: #9ca3af; }
input::placeholder,
textarea::placeholder {
opacity: 1; color: #9ca3af; } button,
[role="button"] {
cursor: pointer;
} :disabled {
cursor: default;
} img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
display: block; vertical-align: middle; } img,
video {
max-width: 100%;
height: auto;
} [hidden] {
display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: #fff;
border-color: #6b7280;
border-width: 1px;
border-radius: 0px;
padding-top: 0.5rem;
padding-right: 0.75rem;
padding-bottom: 0.5rem;
padding-left: 0.75rem;
font-size: 1rem;
line-height: 1.5rem;
--tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
outline: 2px solid transparent;
outline-offset: 2px;
--tw-ring-inset: var(--tw-empty,  );
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: #2563eb;
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder {
color: #6b7280;
opacity: 1;
}
input::placeholder,textarea::placeholder {
color: #6b7280;
opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper {
padding: 0;
}
::-webkit-date-and-time-value {
min-height: 1.5em;
text-align: inherit;
}
::-webkit-datetime-edit {
display: inline-flex;
}
::-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-top: 0;
padding-bottom: 0;
}
select {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: 2.5rem;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])) {
background-image: initial;
background-position: initial;
background-repeat: unset;
background-size: initial;
padding-right: 0.75rem;
-webkit-print-color-adjust: unset;
print-color-adjust: unset;
}
[type='checkbox'],[type='radio'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 0;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
display: inline-block;
vertical-align: middle;
background-origin: border-box;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
flex-shrink: 0;
height: 1rem;
width: 1rem;
color: #2563eb;
background-color: #fff;
border-color: #6b7280;
border-width: 1px;
--tw-shadow: 0 0 #0000;
}
[type='checkbox'] {
border-radius: 0px;
}
[type='radio'] {
border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus {
outline: 2px solid transparent;
outline-offset: 2px;
--tw-ring-inset: var(--tw-empty,  );
--tw-ring-offset-width: 2px;
--tw-ring-offset-color: #fff;
--tw-ring-color: #2563eb;
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked {
border-color: transparent;
background-color: currentColor;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
}
[type='checkbox']:checked {
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
[type='radio']:checked {
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
border-color: transparent;
background-color: currentColor;
}
[type='checkbox']:indeterminate {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
border-color: transparent;
background-color: currentColor;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
border-color: transparent;
background-color: currentColor;
}
[type='file'] {
background: unset;
border-color: inherit;
border-width: 0;
border-radius: 0;
padding: 0;
font-size: unset;
line-height: inherit;
}
[type='file']:focus {
outline: 1px solid ButtonText;
outline: 1px auto -webkit-focus-ring-color;
}
:root {
--prune: 81, 38, 55;
--darkred: 227, 44, 34;
--coral: 247, 183, 141;
--white: 255, 255, 255;
--black: 35, 27, 38;
--color-primary: var(--prune);
--color-secondary: var(--darkred);
--color-tertiary: var(--coral);
--text-h1: 7.5rem;
--text-h2: 5rem;
--text-h3: 3.5rem;
--text-h4: 1.75rem;
--text-large: 1.375rem; --text-larger: 1.563rem; --text-largest: 1.813rem; --swiper-theme-color: rgba(var(--color-secondary), 1) !important;
--swiper-navigation-color: rgba(var(--color-secondary), 1) !important;
--swiper-navigation-size: 35px !important;
--arrow-red: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-red.svg);
--arrow-white: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-white.svg);
--separator-arrow-red: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-down-red.svg);
--separator-arrow-white: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-down-white.svg);
--mail: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-mail-white.svg);
--map-banner: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/png/map-ecusson.png);
--map-banner-sm: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/map_banner_sm.svg);
--map-separator: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/png/map-separateur.png);
--map-image-background: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/png/map-photo-background.png);
--map-background-white: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/map-background-white.svg);
}
h1, h2,
.h1, .h2 {
font-family: Cormorant, serif;
text-align: center;
}
h1, .h1 {
font-size: var(--text-h1);
line-height: var(--text-h1);
}
h2, .h2 {
font-size: var(--text-h2);
line-height: var(--text-h2);
padding-bottom: 2rem;
font-weight: 300;
}
h3, .h3 {
font-size: var(--text-h3);
line-height: var(--text-h3);
font-weight: 300;
}
@font-face {
font-family: "Cormorant";
font-weight: 300;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/Cormorant/Cormorant-Light.ttf);
}
@font-face {
font-family: "Cormorant";
font-weight: 400;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/Cormorant/Cormorant-Regular.ttf);
}
@font-face {
font-family: "Open Sans";
font-weight: 300;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/OpenSans/OpenSans-Light.ttf);
}
@font-face {
font-family: "Open Sans";
font-weight: 400;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/OpenSans/OpenSans-Regular.ttf);
}
@font-face {
font-family: "Open Sans";
font-weight: 600;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/OpenSans/OpenSans-SemiBold.ttf);
}
@font-face {
font-family: "Open Sans";
font-weight: 700;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/OpenSans/OpenSans-Bold.ttf);
}
@font-face {
font-family: "Open Sans";
font-weight: 800;
src: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/fonts/OpenSans/OpenSans-ExtraBold.ttf);
}
.swiper-button-next,
.swiper-button-prev {
background-color: rgba(var(--white), 1);
height: 55px !important;
width: 55px !important;
margin-top: unset !important;
border: 2px solid rgba(var(--color-secondary), 1);
border-radius: 50%;
}
.swiper-button-next::after {
padding-left: 5px;
}
.swiper-button-prev::after {
padding-right: 5px;
}
article.page .wp-rte-content {
& h1,
& h2,
& h3,
& h4 {
margin: 2rem 0 0;
}
& p {
margin: 1rem 0;
}
& ul {
list-style-image: var(--arrow-red);
padding-left: 1rem;
& li {
margin: 1rem 0;
}
& ul {
list-style: circle;
padding-left: 2rem;
}
}
}
#primary img {
opacity: 0;
transform: translateY(10%);
transition: all 300ms ease-in-out;
&.is-visible {
opacity: 1;
transform: translateY(0);
}
}
*, ::before, ::after {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
}
::backdrop {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
}
#masthead {
#site-logo-wrapper {
z-index: 10;
position: absolute;
top: 0;
left: 1rem;
background: white;
padding: 0.5rem 1rem 1rem;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
}
#site-logo {
width: 7rem;
}
@media (min-width: 768px) {
#site-logo-wrapper {
left: 2rem;
padding: 1rem 2rem 2rem;
}
#site-logo {
width: 10rem;
}
}
@media (min-width: 1536px) {
#site-logo-wrapper {
top: -3rem;
z-index: 20;
padding: 2rem 4rem 3rem;
}
#site-logo {
width: 14rem;
}
}
}
#primary-menu #header-menu.isVisible {
right: 0;
padding: 0 3rem;
}
#menu-toggle {
& span {
transition: all ease-in-out 300ms;
}
&.close-btn {
& span:first-child {
opacity: 0;
}
& span:nth-child(2) {
transform: rotate(45deg);
}
& span:nth-child(2) {
width: 2.5rem;
}
& span:last-child {
transform: rotate(-45deg) translate(4px, -6px);
}
}
}
#primary-menu {
#header-menu {
position: absolute;
right: -100vw;
width: 100%;
padding: 3rem 0 0 3rem;
transition: right ease-in-out 300ms;
height: 100vh;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
text-align: center
}
#header-menu {
top: 3rem;
}
#header-menu {
height: 100vh;
}
#header-menu {
gap: 2rem;
}
#header-menu {
background-color: rgba(var(--color-primary), 0.95);
}
#header-menu {
&.isVisible {
right: 0;
.sub-menu {
font-size: 1rem;
line-height: 1.5rem;
}
}
}
.sub-menu {
margin: 1rem
}
.sub-menu {
font-weight: 400;
}
.sub-menu {
.menu-item:not(:last-child) {
padding-bottom: 1rem;
}
}
@media (min-width: 1024px) {
#header-menu {
width: -moz-fit-content;
width: fit-content;
position: unset;
background: unset;
padding: 0;
}
#header-menu {
height: 100%;
}
#header-menu {
flex-direction: row;
}
#header-menu {
gap: 0px;
}
.sub-menu {
margin: unset;
}
.menu-item {
padding-bottom: unset;
}
.menu-item {
display: flex;
}
.menu-item {
height: 100%;
}
.menu-item {
align-items: center;
}
.menu-item {
padding-left: 1rem;
padding-right: 1rem;
}
.menu-item {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.menu-item:hover {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-primary), var(--tw-bg-opacity));
}
.menu-item-has-children {
position: relative;
&:hover {
.sub-menu {
opacity: 1;
top: 3rem;
pointer-events: all;
}
}
}
.menu-item-has-children .sub-menu {
position: absolute;
left: -2rem;
top: 6rem;
pointer-events: none;
opacity: 0
}
.menu-item-has-children .sub-menu {
z-index: -10;
}
.menu-item-has-children .sub-menu {
background-color: rgba(var(--color-primary), 0.7);
}
.menu-item-has-children .sub-menu {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.menu-item-has-children .sub-menu {
&::after {
min-height: 100%;
}
.menu-item {
display: flex;
align-items: center;
width: 100%;
white-space: nowrap;
padding: 1rem 2rem;
position: relative;
transition: all ease-in-out 250ms;
&::before {
content: "";
display: inline-block;
background: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-red.svg) no-repeat center center;
background-size: contain;
width: 10px;
height: 17px;
margin-right: 1rem;
}
&:not(:last-child)::after {
content: "";
border-bottom: 1px solid #fff;
position: absolute;
bottom: 0;
display: block;
width: 4rem;
left: 2rem;
transition: opacity ease-in-out 250ms;
}
&:hover {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-primary), var(--tw-bg-opacity));
}
&:hover {
&::after {
opacity: 0;
}
}
}
}
}
}
#footer-contact,
#contact-form {
&::after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
}
&::after {
z-index: 20;
}
&::after {
height: 100%;
}
&::after {
width: 100%;
}
&::after {
background-image: var(--map-background-white);
}
&::after {
background-size: cover;
}
&::after {
background-position: center;
}
&::after {
background-repeat: no-repeat;
}
.contact-form-container {
margin-bottom: 4rem;
}
.wpforms-hidden,
.wpforms-label-hide {
display: none;
}
.wpforms-field {
margin-bottom: 1rem;
& input:not(input[type='checkbox']),
& textarea {
width: 100%;
max-height: 20rem;
background: transparent;
border-top: unset;
border-left: unset;
border-right: unset
}
& input:not(input[type='checkbox']),
& textarea {
border-bottom-width: 1px;
}
& input:not(input[type='checkbox']),
& textarea {
border-color: rgba(var(--white), 0.6);
}
& input:not(input[type='checkbox']),
& textarea {
&:focus {
box-shadow: 0 0 0 2px rgba(var(--white), 1);
}
}
& input[type='checkbox'] {
margin-right: 5px;
}
& textarea {
min-height: 10rem;
}
}
.wpforms-submit {
height: 4rem;
}
.wpforms-submit {
width: 100%;
}
.wpforms-submit {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-secondary), var(--tw-bg-opacity));
}
.wpforms-submit {
text-align: center;
}
.wpforms-submit {
font-size: 1.25rem;
line-height: 1.75rem;
}
.wpforms-submit {
font-weight: 700;
}
.wpforms-submit {
text-transform: uppercase;
}
.wpforms-submit {
--tw-text-opacity: 1;
color: rgba(var(--white), var(--tw-text-opacity));
}
.wpforms-submit {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.wpforms-submit:hover {
background-color: rgba(var(--color-secondary), 0.8);
}
.wpforms-submit:hover {
--tw-text-opacity: 1;
color: rgba(var(--white), var(--tw-text-opacity));
}
.wpforms-confirmation-container {
padding: 2rem;
}
.wpforms-confirmation-container {
border-width: 1px;
}
.wpforms-confirmation-container {
border-color: rgba(var(--white), 0.6);
}
.wpforms-confirmation-container {
background-color: rgba(var(--white), 0.2);
}
.wpforms-confirmation-container {
font-weight: 700;
}
}
::-moz-placeholder {
color: white !important;
opacity: 1;
}
::placeholder {
color: white !important;
opacity: 1;
}
footer {
.footer-map iframe {
width: 100%;
height: 615px;
}
.footer-menu {
#menu-primary_menu {
& > .menu-item > a {
font-weight: 700;
}
& > .menu-item > a {
white-space: nowrap;
}
.menu-item-has-children {
display: flex;
}
.menu-item-has-children {
flex-direction: column;
}
.menu-item-has-children {
gap: 1rem;
}
}
}
#bottom-bar-footer {
& li {
padding: 0 1rem;
}
@media (min-width: 768px) {
& li {
padding: 0;
&:not(:first-child) {
&::before {
content: "–";
padding: 0 1rem;
}
}
}
}
}
}
#home-slider-text-container {
margin-top: -3rem;
@media (min-width: 768px) {
margin-top: 0;
}
@media (min-width: 1024px) {
&::after {
height: 48rem;
margin: unset;
}
}
&::before, &::after {
content: "";
display: block;
width: 4rem;
height: 4rem;
position: absolute;
left: 50%;
background: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-red.svg) no-repeat center center;
background-size: contain;
}
&::before {
top: -4rem;
transform: translateX(-50%) rotate(90deg);
}
&::after {
bottom: -4rem;
transform: translateX(-50%) rotate(-90deg);
}
@media (min-width: 1280px) {
&::before,
&::after {
width: 7rem;
height: 7rem;
}
&::before {
top: -7rem;
}
&::after {
bottom: -7rem;
}
}
@media (min-width: 1536px) {
&::before,
&::after {
width: 10rem;
height: 10rem;
}
&::before {
top: -10rem;
}
&::after {
bottom: -10rem;
}
}
}
#home-qualifications {
@media (min-width: 1024px) {
.qualification {
position: relative;
&:not(:last-child)::after {
content: "";
display: block;
position: absolute;
top: 50%;
right: -2rem;
width: 1px;
height: 20rem;
transform: translateY(-50%);
}
&:not(:last-child)::after {
--tw-bg-opacity: 1;
background-color: rgba(var(--white), var(--tw-bg-opacity));
}
}
}
}
#home-latest-news {
&:not(.swiper-initialized) {
.swiper-wrapper {
display: grid;
grid-template-columns: repeat(3, 520px);
gap: 2rem;
overflow: auto;
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0);
}
}
}
}
#arego-team-page {
.associate {
&:not(:last-child) {
border-bottom: 1px solid rgba(var(--color-secondary),0.7);
}
}
}
body.single-post #page .post-header .post-title {
&::before, &::after {
display: none;
}
}
#page .post-header {
.post-thumbnail {
position: relative;
overflow: hidden;
&::before {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 10rem;
}
&::before {
background-image: var(--map-banner-sm);
}
&::before {
background-repeat: no-repeat;
}
&::before {
background-position: center;
}
&::before {
background-size: contain;
}
@media (min-width: 768px) {
&::before {
height: 15rem;
}
}
@media (min-width: 1280px) {
&::before {
height: 20rem;
}
}
@media (min-width: 1536px) {
&::before {
height: 27rem;
}
} & picture {
position: relative;
z-index: -10;
}
& img {
min-height: 15rem;
max-height: 60rem;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center center;
object-position: center center;
}
}
.post-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
&::before, &::after {
content: "";
display: block;
width: 2rem;
height: 2rem;
position: absolute;
left: 50%;
background: url(https://www.arego-avocats.fr/wp-content/themes/arego/src/img/svg/picto-arrow-red.svg) no-repeat center center;
background-size: contain;
}
&::before {
top: -2rem;
transform: translateX(-50%) rotate(90deg);
}
&::after {
bottom: -2rem;
transform: translateX(-50%) rotate(-90deg);
}
@media (min-width: 768px) {
&::before,
&::after {
width: 5rem;
height: 5rem;
}
&::before {
top: -4rem;
}
&::after {
bottom: -5rem;
}
}
@media (min-width: 1536px) {
&::before,
&::after {
width: 10rem;
height: 10rem;
}
&::before {
top: -10rem;
}
&::after {
bottom: -10rem;
}
}
}
}
.post-navigation .nav-links {
display: flex;
justify-content: space-between;
.nav-next {
display: flex;
}
.nav-next {
align-items: center;
}
.nav-next {
font-size: 1.125rem;
line-height: 1.75rem;
}
.nav-next {
font-weight: 700;
}
.nav-next {
text-transform: uppercase;
}
.nav-next {
&::after {
content: "";
display: inline-block;
background: var(--arrow-red) center center no-repeat;
background-size: contain;
width: 2rem;
height: 2rem;
transition: transform 250ms ease-in-out;
}
&:hover {
&::after {
transform: translateX(1rem);
}
}
}
.nav-previous {
display: flex;
}
.nav-previous {
align-items: center;
}
.nav-previous {
font-size: 1.125rem;
line-height: 1.75rem;
}
.nav-previous {
font-weight: 700;
}
.nav-previous {
text-transform: uppercase;
}
.nav-previous {
&::before {
content: "";
display: inline-block;
background: var(--arrow-red) center center no-repeat;
background-size: contain;
width: 2rem;
height: 2rem;
transform: rotate(180deg);
transition: transform 250ms ease-in-out;
}
&:hover {
&::before {
transform: translateX(-1rem) rotate(180deg);
}
}
}
}
.container {
width: 100%;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 1626px) {
.container {
max-width: 1626px;
}
}
.visible {
visibility: visible;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.-bottom-12 {
bottom: -3rem;
}
.-left-8 {
left: -2rem;
}
.-left-\[3\.53rem\] {
left: -3.53rem;
}
.bottom-0 {
bottom: 0px;
}
.left-0 {
left: 0px;
}
.left-1\/2 {
left: 50%;
}
.right-0 {
right: 0px;
}
.right-8 {
right: 2rem;
}
.top-0 {
top: 0px;
}
.top-1\/2 {
top: 50%;
}
.top-4 {
top: 1rem;
}
.-z-20 {
z-index: -20;
}
.-z-30 {
z-index: -30;
}
.z-10 {
z-index: 10;
}
.z-30 {
z-index: 30;
}
.z-50 {
z-index: 50;
}
.m-auto {
margin: auto;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.my-12 {
margin-top: 3rem;
margin-bottom: 3rem;
}
.my-16 {
margin-top: 4rem;
margin-bottom: 4rem;
}
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.my-32 {
margin-top: 8rem;
margin-bottom: 8rem;
}
.my-40 {
margin-top: 10rem;
margin-bottom: 10rem;
}
.my-8 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.-mt-12 {
margin-top: -3rem;
}
.-mt-8 {
margin-top: -2rem;
}
.mb-10 {
margin-bottom: 2.5rem;
}
.mb-12 {
margin-bottom: 3rem;
}
.mb-16 {
margin-bottom: 4rem;
}
.mb-20 {
margin-bottom: 5rem;
}
.mb-24 {
margin-bottom: 6rem;
}
.mb-32 {
margin-bottom: 8rem;
}
.mb-4 {
margin-bottom: 1rem;
}
.mb-8 {
margin-bottom: 2rem;
}
.mt-12 {
margin-top: 3rem;
}
.mt-16 {
margin-top: 4rem;
}
.mt-28 {
margin-top: 7rem;
}
.block {
display: block;
}
.flex {
display: flex;
}
.\!inline-flex {
display: inline-flex !important;
}
.grid {
display: grid;
}
.hidden {
display: none;
}
.h-1 {
height: 0.25rem;
}
.h-12 {
height: 3rem;
}
.h-4 {
height: 1rem;
}
.h-52 {
height: 13rem;
}
.h-9 {
height: 2.25rem;
}
.h-fit {
height: -moz-fit-content;
height: fit-content;
}
.h-full {
height: 100%;
}
.h-screen {
height: 100vh;
}
.max-h-\[40rem\] {
max-height: 40rem;
}
.w-1\/2 {
width: 50%;
}
.w-10 {
width: 2.5rem;
}
.w-11\/12 {
width: 91.666667%;
}
.w-4 {
width: 1rem;
}
.w-4\/5 {
width: 80%;
}
.w-40 {
width: 10rem;
}
.w-5\/6 {
width: 83.333333%;
}
.w-6 {
width: 1.5rem;
}
.w-8 {
width: 2rem;
}
.w-fit {
width: -moz-fit-content;
width: fit-content;
}
.w-full {
width: 100%;
}
.w-screen {
width: 100vw;
}
.basis-1\/2 {
flex-basis: 50%;
}
.basis-full {
flex-basis: 100%;
}
.-translate-x-1\/2 {
--tw-translate-x: -50%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
--tw-translate-y: -50%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
cursor: pointer;
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.flex-wrap {
flex-wrap: wrap;
}
.items-end {
align-items: flex-end;
}
.items-center {
align-items: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.justify-around {
justify-content: space-around;
}
.gap-0 {
gap: 0px;
}
.gap-0\.5 {
gap: 0.125rem;
}
.gap-1 {
gap: 0.25rem;
}
.gap-12 {
gap: 3rem;
}
.gap-16 {
gap: 4rem;
}
.gap-20 {
gap: 5rem;
}
.gap-4 {
gap: 1rem;
}
.gap-8 {
gap: 2rem;
}
.overflow-hidden {
overflow: hidden;
}
.whitespace-nowrap {
white-space: nowrap;
}
.break-words {
overflow-wrap: break-word;
}
.rounded {
border-radius: 0.25rem;
}
.rounded-full {
border-radius: 9999px;
}
.border {
border-width: 1px;
}
.border-4 {
border-width: 4px;
}
.border-b {
border-bottom-width: 1px;
}
.border-b-0 {
border-bottom-width: 0px;
}
.border-l {
border-left-width: 1px;
}
.border-t {
border-top-width: 1px;
}
.border-primary {
--tw-border-opacity: 1;
border-color: rgba(var(--color-primary), var(--tw-border-opacity));
}
.border-secondary {
--tw-border-opacity: 1;
border-color: rgba(var(--color-secondary), var(--tw-border-opacity));
}
.bg-black {
--tw-bg-opacity: 1;
background-color: rgba(var(--black), var(--tw-bg-opacity));
}
.bg-primary {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-primary), var(--tw-bg-opacity));
}
.bg-primary\/50 {
background-color: rgba(var(--color-primary), 0.5);
}
.bg-primary\/70 {
background-color: rgba(var(--color-primary), 0.7);
}
.bg-secondary {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-secondary), var(--tw-bg-opacity));
}
.bg-tertiary\/25 {
background-color: rgba(var(--color-tertiary), 0.25);
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgba(var(--white), var(--tw-bg-opacity));
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
}
.p-12 {
padding: 3rem;
}
.p-4 {
padding: 1rem;
}
.p-8 {
padding: 2rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.px-8 {
padding-left: 2rem;
padding-right: 2rem;
}
.px-9 {
padding-left: 2.25rem;
padding-right: 2.25rem;
}
.py-8 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.pb-0 {
padding-bottom: 0px;
}
.pb-12 {
padding-bottom: 3rem;
}
.pb-32 {
padding-bottom: 8rem;
}
.pb-4 {
padding-bottom: 1rem;
}
.pb-8 {
padding-bottom: 2rem;
}
.pl-12 {
padding-left: 3rem;
}
.pr-8 {
padding-right: 2rem;
}
.pt-16 {
padding-top: 4rem;
}
.pt-20 {
padding-top: 5rem;
}
.pt-6 {
padding-top: 1.5rem;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.font-body {
font-family: "Open Sans", sans-serif;
}
.font-heading {
font-family: Cormorant, serif;
}
.text-\[9\.375rem\] {
font-size: 9.375rem;
}
.text-h2 {
font-size: var(--text-h2);
line-height: var(--text-h2);
}
.text-h3 {
font-size: var(--text-h3);
line-height: var(--text-h3);
}
.text-h4 {
font-size: var(--text-h4);
line-height: var(--text-h4);
}
.text-large {
font-size: var(--text-large);
line-height: 30px;
}
.text-larger {
font-size: var(--text-larger);
line-height: 34px;
}
.text-largest {
font-size: var(--text-largest);
line-height: 30px;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.text-xs {
font-size: 0.75rem;
line-height: 1rem;
}
.font-bold {
font-weight: 700;
}
.font-extrabold {
font-weight: 800;
}
.font-thin {
font-weight: 100;
}
.uppercase {
text-transform: uppercase;
}
.italic {
font-style: italic;
}
.text-black {
--tw-text-opacity: 1;
color: rgba(var(--black), var(--tw-text-opacity));
}
.text-darkred {
--tw-text-opacity: 1;
color: rgba(var(--darkred), var(--tw-text-opacity));
}
.text-primary {
--tw-text-opacity: 1;
color: rgba(var(--color-primary), var(--tw-text-opacity));
}
.text-secondary {
--tw-text-opacity: 1;
color: rgba(var(--color-secondary), var(--tw-text-opacity));
}
.text-tertiary {
--tw-text-opacity: 1;
color: rgba(var(--color-tertiary), var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgba(var(--white), var(--tw-text-opacity));
}
.text-white\/20 {
color: rgba(var(--white), 0.2);
}
.mix-blend-multiply {
mix-blend-mode: multiply;
}
.shadow {
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.line-after:not(:last-child)::after {
content: "|";
margin: 0 .5rem;
}
@media (min-width: 1280px) {
.line-after:not(:last-child)::after {
margin: 0 1rem;
}
}
.title-separator {
position: relative;
display: block;
left: 50%;
transform: translateX(-50%);
height: 3rem;
width: 3rem;
background-size: contain;
transition: all 250ms ease-in-out;
background-repeat: no-repeat;
background-position: center;
&::before, &::after {
content: "";
display: inline-block;
height: 1px;
width: 5rem;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: all 250ms ease-in-out 250ms;
}
&::before {
left: -6rem;
}
&::after {
right: -6rem;
}
@media (min-width: 768px) {
&::before, &::after {
width: 13rem;
}
&::before {
left: -16rem;
}
&::after {
right: -16rem;
}
}
&.red-arrow {
background-image: var(--separator-arrow-red);
}
&.red-arrow {
&::before, &::after {
--tw-bg-opacity: 1;
background-color: rgba(var(--black), var(--tw-bg-opacity));
}
}
&.white-arrow {
background-image: var(--separator-arrow-white);
}
&.white-arrow {
&::before, &::after {
--tw-bg-opacity: 1;
background-color: rgba(var(--white), var(--tw-bg-opacity));
}
}
}
#page .wp-rte-content {
& h2 {
&:hover {
& + .title-separator {
transform: translate(-50%, -1rem) rotate(180deg);
transition: all 250ms ease-in-out 250ms;
&::before,
&::after {
transition: all 250ms ease-in-out;
width: 0;
opacity: 0;
}
&::before {
left: 0;
}
&::after {
right: 0;
}
}
}
}
}
.map-separator {
width: 100%;
height: 3rem;
background-image: var(--map-separator);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
@media (min-width: 1024px) {
height: 5rem;
}
}
.arrow-after {
display: flex;
align-items: center;
gap: 0.5rem;
&::after {
content: "";
display: block;
width: 2rem;
height: 2rem;
}
&::after {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
&::after {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
&:hover {
&::after {
transform: translateX(1rem);
}
}
&.arrow-white-after {
&::after {
background-image: var(--arrow-white);
}
&::after {
background-repeat: no-repeat;
}
&::after {
background-position: center;
}
&::after {
background-size: contain;
}
}
&.arrow-red-after {
&::after {
background-image: var(--arrow-red);
}
&::after {
background-repeat: no-repeat;
}
&::after {
background-position: center;
}
&::after {
background-size: contain;
}
}
}
.social {
position: relative;
padding: 22px 7px;
height: 65px;
display: flex;
align-items: flex-end;
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem;
border-bottom-right-radius: 1rem;
border-bottom-left-radius: 1rem;
--tw-bg-opacity: 1;
background-color: rgba(var(--color-secondary), var(--tw-bg-opacity));
> * {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
> * {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
&:hover {
> * {
transform: translateY(-10px);
}
}
}
.map-image-background {
position: relative;
z-index: 20;
&::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: -4rem;
left: -2rem;
}
&::after {
z-index: -20;
}
&::after {
--tw-bg-opacity: 1;
background-color: rgba(var(--color-primary), var(--tw-bg-opacity));
}
&::before {
content: "";
display: block;
height: 100%;
width: 100%;
position: absolute;
top: -2rem;
}
&::before {
z-index: -10;
}
&::before {
background-image: var(--map-image-background);
}
&::before {
background-size: contain;
}
&::before {
background-repeat: no-repeat;
}
&.bg-to-right {
&::before {
right: -2rem;
}
}
&.bg-to-left {
&::before {
left: 2rem;
}
}
@media (min-width: 1024px) {
&::before, &::after {
height: calc(100% + 8rem);
}
&::after {
width: 50%;
left: 50%;
transform: translateX(-50%);
}
&::before {
top: -4rem;
}
&.bg-to-right {
&::before {
right: -50%;
}
}
&.bg-to-left {
&::before {
left: -50%;
}
}
}
}
.zoom-hover {
& img {
transition: all ease-in-out 250ms;
}
&:hover {
& img {
transform: scale(1.1);
}
}
}
#about-us {
.rte {
& h4 {
margin: 1rem;
}
}
}
.post-categories .category:not(:last-child)::after {
content: " — ";
}
:root {
--prune: 81, 38, 55;
--darkred: 227, 44, 34;
--coral: 247, 183, 141;
--white: 255, 255, 255;
--black: 35, 27, 38;
--color-primary: var(--prune);
--color-secondary: var(--darkred);
--color-tertiary: var(--coral);
--text-h1: 7.5rem;
--text-h2: 5rem;
--text-h3: 3.5rem;
--text-h4: 1.75rem;
--text-large: 1.375rem; --text-larger: 1.563rem; --text-largest: 1.813rem; --swiper-theme-color: rgba(var(--color-secondary), 1) !important;
--swiper-navigation-color: rgba(var(--color-secondary), 1) !important;
--swiper-navigation-size: 35px !important;
}
.hover\:border-b-2:hover {
border-bottom-width: 2px;
}
.hover\:bg-transparent:hover {
background-color: transparent;
}
.hover\:pb-px:hover {
padding-bottom: 1px;
}
.hover\:text-primary:hover {
--tw-text-opacity: 1;
color: rgba(var(--color-primary), var(--tw-text-opacity));
}
.prose-p\:mb-8 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
margin-bottom: 2rem;
}
@media (min-width: 640px) {
.sm\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sm\:flex-row {
flex-direction: row;
}
}
@media (min-width: 768px) {
.md\:mb-12 {
margin-bottom: 3rem;
}
.md\:mb-20 {
margin-bottom: 5rem;
}
.md\:mt-20 {
margin-top: 5rem;
}
.md\:block {
display: block;
}
.md\:w-2\/3 {
width: 66.666667%;
}
.md\:w-3\/4 {
width: 75%;
}
.md\:w-3\/6 {
width: 50%;
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:flex-row {
flex-direction: row;
}
.md\:flex-row-reverse {
flex-direction: row-reverse;
}
.md\:gap-12 {
gap: 3rem;
}
.md\:gap-8 {
gap: 2rem;
}
.md\:px-9 {
padding-left: 2.25rem;
padding-right: 2.25rem;
}
.md\:pb-20 {
padding-bottom: 5rem;
}
.md\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.md\:text-h2 {
font-size: var(--text-h2);
line-height: var(--text-h2);
}
.md\:text-h3 {
font-size: var(--text-h3);
line-height: var(--text-h3);
}
.md\:text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
}
@media (min-width: 1024px) {
.lg\:absolute {
position: absolute;
}
.lg\:-bottom-20 {
bottom: -5rem;
}
.lg\:-left-12 {
left: -3rem;
}
.lg\:-top-\[6\.53rem\] {
top: -6.53rem;
}
.lg\:left-4 {
left: 1rem;
}
.lg\:left-8 {
left: 2rem;
}
.lg\:top-1\/2 {
top: 50%;
}
.lg\:my-60 {
margin-top: 15rem;
margin-bottom: 15rem;
}
.lg\:mt-28 {
margin-top: 7rem;
}
.lg\:mt-40 {
margin-top: 10rem;
}
.lg\:mt-48 {
margin-top: 12rem;
}
.lg\:mt-9 {
margin-top: 2.25rem;
}
.lg\:block {
display: block;
}
.lg\:flex {
display: flex;
}
.lg\:hidden {
display: none;
}
.lg\:h-full {
height: 100%;
}
.lg\:w-1\/2 {
width: 50%;
}
.lg\:w-2\/3 {
width: 66.666667%;
}
.lg\:w-3\/4 {
width: 75%;
}
.lg\:w-5\/6 {
width: 83.333333%;
}
.lg\:w-\[45\%\] {
width: 45%;
}
.lg\:w-fit {
width: -moz-fit-content;
width: fit-content;
}
.lg\:-translate-y-1\/2 {
--tw-translate-y: -50%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.lg\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lg\:flex-row {
flex-direction: row;
}
.lg\:flex-row-reverse {
flex-direction: row-reverse;
}
.lg\:justify-end {
justify-content: flex-end;
}
.lg\:border-l-0 {
border-left-width: 0px;
}
.lg\:border-t {
border-top-width: 1px;
}
.lg\:pb-24 {
padding-bottom: 6rem;
}
.lg\:pl-4 {
padding-left: 1rem;
}
.lg\:pt-0 {
padding-top: 0px;
}
.lg\:pt-24 {
padding-top: 6rem;
}
.lg\:pt-40 {
padding-top: 10rem;
}
.lg\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.lg\:font-normal {
font-weight: 400;
}
}
@media (min-width: 1280px) {
.xl\:mx-8 {
margin-left: 2rem;
margin-right: 2rem;
}
.xl\:mb-0 {
margin-bottom: 0px;
}
.xl\:mb-20 {
margin-bottom: 5rem;
}
.xl\:mb-24 {
margin-bottom: 6rem;
}
.xl\:mb-28 {
margin-bottom: 7rem;
}
.xl\:h-8 {
height: 2rem;
}
.xl\:w-1\/2 {
width: 50%;
}
.xl\:w-4\/5 {
width: 80%;
}
.xl\:w-4\/6 {
width: 66.666667%;
}
.xl\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.xl\:flex-row {
flex-direction: row;
}
.xl\:flex-col {
flex-direction: column;
}
.xl\:items-start {
align-items: flex-start;
}
.xl\:justify-end {
justify-content: flex-end;
}
.xl\:gap-0 {
gap: 0px;
}
.xl\:gap-20 {
gap: 5rem;
}
.xl\:gap-4 {
gap: 1rem;
}
.xl\:px-0 {
padding-left: 0px;
padding-right: 0px;
}
.xl\:px-12 {
padding-left: 3rem;
padding-right: 3rem;
}
.xl\:py-24 {
padding-top: 6rem;
padding-bottom: 6rem;
}
.xl\:pl-8 {
padding-left: 2rem;
}
.xl\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.xl\:text-h1 {
font-size: var(--text-h1);
line-height: var(--text-h1);
}
.xl\:text-h2 {
font-size: var(--text-h2);
line-height: var(--text-h2);
}
.xl\:text-large {
font-size: var(--text-large);
line-height: 30px;
}
.xl\:text-larger {
font-size: var(--text-larger);
line-height: 34px;
}
}
@media (min-width: 1536px) {
.\32xl\:z-20 {
z-index: 20;
}
.\32xl\:flex-1 {
flex: 1 1 0%;
}
.\32xl\:flex-row {
flex-direction: row;
}
.\32xl\:gap-40 {
gap: 10rem;
}
.\32xl\:text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
}
.\32xl\:text-h1 {
font-size: var(--text-h1);
line-height: var(--text-h1);
}
}