:root{ --obs_diagonal_radius_large: 30px;
--border-radius-small: 6px;
--border-radius-medium: 12px;
}
.afb_content {
display: flex;
flex-direction: column;
gap: clamp(20px, 3.5vw, 40px);
} .afb_tekstblok {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(15px, 2.5vw, 30px);
align-items: start;
align-content: start;
}
.afb_tekstblok.afb_full_width {
grid-template-columns: 1fr;
}
.afb_tekstblok_foto img {
width: 100%;
height: auto;
border-radius: var(--border-radius-medium);
object-fit: cover;
}
.afb_tekstblok_tekst {
display: flex;
flex-direction: column;
gap: clamp(12px, 1.3vw, 15px);
} .afb_fotos {
display: flex;
flex-direction: column;
gap: clamp(15px, 1.8vw, 20px);
}
.afb_fotos_header {
display: flex;
flex-direction: column;
gap: 10px;
}
.afb_fotos_gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
gap: clamp(15px, 3.5vw, 40px);
}
.afb_fotos_item {
height: clamp(180px, 18vw, 220px);
position: relative;
cursor: pointer;
overflow: hidden;
border-radius: var(--border-radius-medium);
}
.afb_fotos_item img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: var(--border-radius-medium);
transition: transform 0.3s ease;
}
.afb_fotos_item:hover img {
transform: scale(1.05);
}
.afb_fotos_item_overlay {
position: absolute;
inset: 0;
background: rgba(6, 80, 86, 0.6);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.afb_fotos_item:hover .afb_fotos_item_overlay {
opacity: 1;
}
.afb_fotos_item_overlay svg {
color: #fff;
width: 32px;
height: 32px;
} .afb_banner {
position: relative;
padding: clamp(25px, 4vw, 40px) clamp(15px, 4vw, 40px);
border-radius: var(--obs_diagonal_radius_large);
text-align: center;
overflow: hidden;
}
.afb_banner.obs_banner_primary {
background-color: var(--primary);
}
.afb_banner.obs_banner_secondary,
.afb_banner.obs_banner_bg {
background-color: var(--secondary);
}
.afb_banner_bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
z-index: 1;
}
.afb_banner_overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(6, 80, 86, 0.85) 0%, rgba(6, 80, 86, 0.95) 100%);
z-index: 2;
}
.afb_banner_content {
position: relative;
z-index: 3;
display: flex;
flex-direction: column;
gap: clamp(12px, 1.3vw, 15px);
align-items: center;
align-content: center;
justify-content: center;
} .afb_lightbox {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.95);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.afb_lightbox_container {
height: calc(100% - var(--obs_header_size));
width: 100%;
display: flex;
flex-direction: column;
padding: clamp(15px, 2vw, 20px);
box-sizing: border-box;
} .afb_lightbox_header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 15px;
}
.afb_lightbox_counter {
color: #fff;
font-family: var(--bodyfont);
font-size: clamp(12px, 1.1vw, 14px);
opacity: 0.8;
}
.afb_lightbox_actions {
display: flex;
gap: 10px;
}
.afb_lightbox_btn {
background: rgba(255, 255, 255, 0.1);
border: none;
color: #fff;
width: clamp(38px, 3.5vw, 44px);
height: clamp(38px, 3.5vw, 44px);
border-radius: var(--border-radius-small);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}
.afb_lightbox_btn:hover {
background: rgba(255, 255, 255, 0.2);
} .afb_lightbox_main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
min-height: 0;
}
.afb_lightbox_image_wrapper {
max-width: 100%;
max-height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.afb_lightbox_image {
max-width: 100%;
max-height: 60vh;
object-fit: contain;
border-radius: var(--border-radius-medium);
}
.afb_lightbox_nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.1);
border: none;
color: #fff;
width: clamp(36px, 3vw + 22px, 50px);
height: clamp(36px, 3vw + 22px, 50px);
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}
.afb_lightbox_nav:hover {
background: rgba(255, 255, 255, 0.2);
}
.afb_lightbox_prev { left: clamp(10px, 2vw, 20px); }
.afb_lightbox_next { right: clamp(10px, 2vw, 20px); } .afb_lightbox_thumbs {
padding-top: 20px;
display: flex;
justify-content: center;
}
.afb_lightbox_thumbs_track {
display: flex;
gap: 10px;
overflow-x: auto;
padding: 5px;
max-width: 100%;
}
.afb_lightbox_thumb {
flex-shrink: 0;
width: clamp(45px, 6vw, 70px);
height: clamp(32px, 4.5vw, 50px);
border-radius: var(--border-radius-small);
overflow: hidden;
cursor: pointer;
opacity: 0.5;
transition: opacity 0.3s ease, transform 0.3s ease;
border: 2px solid transparent;
}
.afb_lightbox_thumb:hover {
opacity: 0.8;
}
.afb_lightbox_thumb_active {
opacity: 1;
border-color: #fff;
}
.afb_lightbox_thumb img {
width: 100%;
height: 100%;
object-fit: cover;
} .afb_lightbox .animated {
animation-duration: 0.3s;
}
.afb_banner.obs_banner_secondary > .afb_banner_content > .obs_moduleheader{
color: var(--primary);
}
.afb_banner.obs_banner_primary > .afb_banner_content > .obs_subheader,
.afb_banner.obs_banner_secondary > .afb_banner_content > .obs_subheader,
.afb_banner.obs_banner_bg > .afb_banner_content > .obs_subheader{
color: white !important;
font-size: 22px;
}
.afb_banner.obs_banner_secondary > .afb_banner_content > .obs_text{
color: var(--bg )!important;
}
.afb_banner.obs_banner_primary > .afb_banner_content > .obs_moduleheader{
color: var(--secondary) !important;
font-size: 30px;
}
.afb_banner.obs_banner_primary > .afb_banner_content > .obs_text {
color: white;
}
.afb_banner.obs_banner_bg > .afb_banner_content > *{
color: white !important;
}
.afb_backbtn > a {
padding-left: 0;
padding-top: 3px!important;
float: left;
cursor: pointer;
text-decoration: underline;
color: var(--primary)!important;
} @media (max-width: 768px) {
.afb_tekstblok {
grid-template-columns: 1fr;
}
.afb_tekstblok.obs_foto_links .afb_tekstblok_foto,
.afb_tekstblok.obs_foto_rechts .afb_tekstblok_foto {
order: -1;
}
.afb_lightbox_image {
max-height: 45vh;
}
.obs_initiatieven_showmore {
margin-top: 80px!important;
}
}
a.obs_btn{
border-radius: 40px;
padding: 10px 20px;
background-color: var(--secondary);
color: white;
font-weight: 800;
font-size: 20px;
text-decoration: none;
display: inline-block;
text-align: center;
margin-bottom: 20px;
margin-top: 20px;
}.nf-form-layout {
font-family: var(--bodyfont);
} .nf-form-layout nf-rows-wrap {
display: flex;
flex-direction: column;
gap: 0px;
}
.nf-form-layout nf-row {
display: block;
}
.nf-form-layout nf-cells {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
}
.nf-form-layout nf-fields,
.nf-form-layout nf-field,
.nf-form-layout nf-section {
display: block;
} .nf-form-layout .nf-cell {
box-sizing: border-box;
min-width: 0;
} .nf-form-layout .field-wrap {
display: flex;
flex-direction: column;
gap: 0px;
} .nf-form-layout .nf-field-label label {
font-family: var(--bodyfont);
font-size: 16px;
font-weight: 600;
color: var(--gcid-body-color);
line-height: 1.4;
} .nf-form-layout .ninja-forms-req-symbol {
color: #d32f2f;
} .nf-form-layout input.ninja-forms-field:not([type="submit"]):not([type="checkbox"]):not([type="file"]),
.nf-form-layout textarea.ninja-forms-field {
padding: 17px 20px;
border-radius: var(--border-radius-small, 3px) !important;
font-family: var(--bodyfont);
font-size: 15px;
color: #a18fa4;
font-weight: 500;
transition: all 0.3s ease;
background-color: #fff;
width: 100%;
box-sizing: border-box;
border: 0px solid red;
}
.nf-form-layout input.ninja-forms-field:not([type="submit"]):not([type="checkbox"])::placeholder,
.nf-form-layout textarea.ninja-forms-field::placeholder {
color: var(--text);
font-size: 17px;
}
.nf-form-layout input.ninja-forms-field:not([type="submit"]):not([type="checkbox"]):not([type="file"]):focus,
.nf-form-layout textarea.ninja-forms-field:focus {
outline: none;
border-color: var(--secondary);
box-shadow: var(--shadow-md);
} .nf-form-layout input[type="submit"].ninja-forms-field {
background-color: var(--secondary);
color: #ffffff;
padding: 10px 20px;
padding-top: 12px;
border: none;
border-radius: 50px;
font-family: var(--headerfont);
font-size: 18px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
margin: 0;
}
.nf-form-layout input[type="submit"].ninja-forms-field:hover {
transform: translateY(-2px);
box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px;
}
.nf-form-layout input[type="submit"].ninja-forms-field:active {
transform: translateY(0px);
box-shadow: var(--shadow-md);
}
.nf-form-layout input[type="submit"].ninja-forms-field:focus {
outline: 3px solid rgba(0, 0, 0, 0.1);
outline-offset: 2px;
} .nf-form-layout .nf-fu-fileinput-button {
background-color: var(--secondary);
color: #ffffff;
padding: 11px 30px;
border: none;
border-radius: var(--srl_diagonal_radius, 4px);
font-family: var(--headerfont);
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
margin: 0;
}
.nf-form-layout .nf-fu-fileinput-button:hover {
transform: translateY(-2px);
box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px;
}
.nf-form-layout .nf-fu-fileinput-button:active {
transform: translateY(0px);
box-shadow: var(--shadow-md);
} .nf-form-layout .nf-fu-button-cancel {
background: none;
border: 1px solid #ccc;
color: #666;
padding: 6px 12px;
border-radius: var(--border-radius-small, 3px);
font-family: var(--bodyfont);
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
} .nf-form-layout .checkbox-wrap {
flex-direction: row;
align-items: flex-start;
gap: 12px; }
.nf-form-layout .checkbox-wrap .nf-field-element {
order: 1;
flex-shrink: 0;
}
.nf-form-layout .checkbox-wrap .nf-field-label {
order: 2;
}
.nf-form-layout input[type="checkbox"].ninja-forms-field {
margin-top: 4px;
width: 18px;
height: 18px;
cursor: pointer;
accent-color: var(--primary);
} .nf-form-layout .nf-error-wrap.nf-error:not(:empty) {
background-color: var(--secondary);
padding: 5px 8px;
border-radius: 2px !important;
font-size: 14px;
color: white;
font-weight: 700;
}
.nf-form-layout .nf-error-wrap.nf-error:not(:empty) > *{
color: white;
} .nf-form-layout .nf-form-fields-required {
font-family: var(--bodyfont);
font-size: 14px;
color: #666;
margin-bottom: 10px;
display: none;
}
.nf-field-label > label > a{
color: var(--secondary)!important;
}
div.field-wrap > div.nf-field-label > label::after {
background-color: white!important;
width: 25px!important;
height: 25px!important;
left: -30px!important;
top: 0px!important;
}
.checkbox-container.label-right label:before {
left: -29px!important;
top: -4px!important;
}
.nf-field-label{
display: none!important;
}
div.submit-wrap > .nf-field-element {
display: flex;
flex-direction: row;
justify-content: center;
}
.nf-response-msg::after {
content:"";
position:absolute;
top: 0px;
left: 30px;
height:50px;
width: 40px;
background-image: url(//obsdebladwijzer.ruw-web.nl/wp-content/uploads/2026/06/bookmark.svg);
background-size: contain;
background-position:center top;
background-repeat: no-repeat;
}
.nf-response-msg {
background-color: #fcf6ed;
padding: 50px;
text-align: center;
border-radius: 15px;
margin: 40px 0px;
color: #4a1e50;
font-size: 20px;
font-weight: 700;
position: relative;
}
.nf-response-msg > h3 {
color: #EB5F5A;
font-weight: 600;
letter-spacing: -0.02em;
font-family: 'Exo', Helvetica, Arial, Lucida, sans-serif !important;
font-size: clamp(1.125rem, 1.0739rem + 0.2273vw, 1.25rem);
}
.nf-response-msg > h2, 
.nf-response-msg > h1 {
color: var(--primary);
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 15px;
margin-top: 5px;
font-family: 'Zeitung Black',Helvetica,Arial,Lucida,sans-serif;
font-size: clamp(1.375rem, 0.9148rem + 2.0455vw, 2.5rem);
}
.nf-response-msg::before {
content:"";
position:absolute;
bottom: -20px;
right: 30px;
height:70px;
width: 50px;
transform: rotate(5deg);
background-image: url(//obsdebladwijzer.ruw-web.nl/wp-content/uploads/2026/06/Path-72.svg);
background-size: contain;
background-position:center top;
background-repeat: no-repeat;
}:root{
--header-height: 130px;
--header-primary-height: 95px;
--header-secondary-height: 35px;
--primary: #4A1E4F;
--secondary: #EB5E5A;
--font: "zeitung", sans-serif;
}
.obs_header {
width: 100%;
position:fixed;
top: 0px;
left: 0px;
height: var(--header-height);
background-color: white;
display: flex;
flex-direction: column;
gap: 0px;
}
.obs_header .obs_header_secondary,
.obs_header .obs_header_primary {
display: flex;
width: 100%;
flex-direction: column;
align-content: center;
align-items: center;
height: var(--header-primary-height);
}
.obs_header .obs_header_secondary{
align-items: right;
height: var(--header-secondary-height);
background-color: #361539;
}
.obs_header .obs_header_secondary .obs_header_secondary_content,
.obs_header .obs_header_primary .obs_header_primary_content {
width: 80%;
max-width: 1400px;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.obs_header .obs_header_primary .obs_header_primary_content .obs_header_logo {
width: 230px;
height: 70px;
background-image: url(//obsdebladwijzer.ruw-web.nl/wp-content/uploads/2026/06/logo-obs-de-bladwijzer.svg);
background-size: contain;
background-repeat: no-repeat;
background-position:center;
cursor: pointer;
}
.obs_header .obs_header_primary .obs_header_primary_content .obs_header_links {}
.obs_header .obs_header_secondary .obs_header_secondary_content {
justify-content: right;
}
.obs_header .obs_header_secondary .obs_header_secondary_content .obs_header_links {}
ul.obs_header_menu{
padding: 0px!important;
display: flex;
flex-direction: row;
gap: 20px;
list-style: none;
align-items: center;
}
ul.obs_header_menu > li.menu-item{
padding: 0px!important;
list-style: none;
}
ul.obs_header_menu > li.menu-item > a{
font-size: 18px;
font-family: var(--font);
color: var(--primary);
font-weight: 800;
letter-spacing: -0.02em;
font-family: 'Zeitung',Helvetica,Arial,Lucida,sans-serif!important;
}
ul#menu-obs-secondary > li.menu-item > a{
color: white!important;
font-size: 15px;
font-weight: 700;
}
ul.obs_header_menu > li.obs-header-action.menu-item{
padding: 7px 16px!important;
background-color: var(--secondary);
border-radius: 30px;
}
ul.obs_header_menu > li.obs-header-action.menu-item > a{
color: white;
}
.obs_header_loggedin{
top: 32px;
}
.obs_header_spacer{
height: var(--header-height);
}
.obs_header_spacer_loggedin{
height: calc(var(--header-height) + 32px);
}
ul.obs_header_menu > li.obs-header-action.menu-item.current-menu-item{
background-color: var(--primary)!important;
}
ul.obs_header_menu > li.obs-header-action.menu-item.current-menu-item > a{
color: white!important;
} .obs_header_hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.obs_header_hamburger span {
display: block;
width: 24px;
height: 3px;
background-color: var(--primary);
border-radius: 2px;
} .obs_header_overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 9998;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.obs_header_overlay.obs_open {
opacity: 1;
pointer-events: auto;
} .obs_header_drawer {
position: fixed;
top: 0;
right: 0;
width: 300px;
max-width: 85vw;
height: 100vh;
background: white;
z-index: 9999;
transform: translateX(100%);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
padding: 24px;
box-sizing: border-box;
box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.obs_header_drawer.obs_open {
transform: translateX(0);
}
.obs_header_drawer_close {
align-self: flex-end;
background: none;
border: none;
cursor: pointer;
font-size: 24px;
color: var(--primary);
padding: 0;
line-height: 1;
margin-bottom: 24px;
font-family: var(--font);
} .obs_header_drawer ul.obs_header_menu {
flex-direction: column;
align-items: flex-start;
gap: 4px;
width: 100%;
}
.obs_header_drawer ul.obs_header_menu > li.menu-item {
width: 100%;
}
.obs_header_drawer ul.obs_header_menu > li.menu-item > a {
display: block;
padding: 10px 0;
font-size: 20px;
}
.obs_header_drawer ul.obs_header_menu > li.menu-item:last-child {
padding: 7px 16px!important;
background-color: var(--secondary);
border-radius: 30px;
margin-top: 12px;
width: fit-content;
}
.obs_header_drawer ul.obs_header_menu > li.menu-item:last-child > a {
color: white;
padding: 0;
}
.obs_header_drawer ul.obs_header_menu > li.menu-item:last-child.current-menu-item {
background-color: var(--primary)!important;
} @media (max-width: 768px) {
.obs_header {
height: var(--header-primary-height);
}
.obs_header_spacer {
height: var(--header-primary-height);
}
.obs_header_spacer_loggedin {
height: calc(var(--header-primary-height) + 32px);
}
.obs_header .obs_header_secondary {
display: none;
}
.obs_header .obs_header_primary .obs_header_primary_content .obs_header_links {
display: none;
}
.obs_header_hamburger {
display: flex;
}
}
@media (max-width: 767px) {
li.current_page_item{
padding-left: 20px!important;
border-radius: 2px;
position:relative;
background: linear-gradient(to bottom, #bccde0 0%,#a3c1e2 14%,#a8c3e0 51%,#a3c1e2 90%,#91afd6 94%,#91afd6 100%); }
li.current_page_item::after
{
content:"";
width: 20px;
height: 30px;
position:absolute;
right: 10px;
top: 0px;
background-size: contain;
background-repeat: no-repeat;
background-position: top center;
background-image: url(//obsdebladwijzer.ruw-web.nl/wp-content/uploads/2026/06/bookmark.svg);
}
li.current_page_item > a{
color: white!important;
padding-left: 20px!important;
}
} .obs_header_spacer {
height: var(--header-height);
width: 100%;
float: left;
}  
.ob_header_spacer_loggedin {
height: calc(var(--header-height) + 32px);
}
li.current-menu-item > a {
color: var(--secondary)!important;
}
ul.obs_header_menu#menu-obs-secondary > li.current-menu-item > a {
color: var(--secondary)!important;
}.obs_infoslider_slide{
width: 100%;
aspect-ratio: 4/3;
border-radius: 15px;
border: 3px solid #84C9C7;
position:relative;
background-size: cover;
background-position: center;
}
.obs_infoslider_content{
position:absolute;
bottom: clamp(1.25rem, 0.7386rem + 2.2727vw, 2.5rem);
left: clamp(1.25rem, 0.7386rem + 2.2727vw, 2.5rem);
}
.obs_infoslider_content > h3
{
color: white;
font-size: clamp(1.25rem, 0.7386rem + 2.2727vw, 2.5rem);
}
.obs_infoslider_content > p
{
color: white;
font-size: clamp(1.0625rem, 0.9858rem + 0.3409vw, 1.25rem);
}
.ob_infoslider_buttons {
display: flex;
justify-content: center;
gap: 15px;
float: left;
width: 100%;
flex-direction: column;
align-items: stretch;
}
.obs_infoslider_content_btn{
padding: 14px 22px;
border-radius: 50px;
font-size: clamp(1.0625rem, 0.9858rem + 0.3409vw, 1.25rem);
font-family: "Zeitung Black", Helvetica, Arial, Lucida, sans-serif;
text-align: left;
position:relative;
cursor: pointer;
border: 0px solid red;
color: var(--primary);
background-color: rgba(0,0,0,0);
}
.obs_infoslider_content_btn::before{
content: "";
background-color: #E8D6B1;
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
border-radius: 50px;
transition: all 500ms cubic-bezier(0.000, 0.565, 0.000, 0.995); transition-timing-function: cubic-bezier(0.000, 0.565, 0.000, 0.995); }
.obs_infoslider_content_btn::after{
content: '';
position: absolute;
right: 15px;
top: calc(50% - 15px);
width: 30px;
height: 30px;
background-color: #E8D6B1;
opacity: 0;
border-radius: 50px;
z-index: -1;
transition: all 500ms cubic-bezier(0.000, 0.565, 0.000, 0.995); transition-timing-function: cubic-bezier(0.000, 0.565, 0.000, 0.995); }
.obs_infoslider_content_btn:hover::after{
background-color: var(--secondary);
opacity: 1;
}
.obs_infoslider_content_btn:hover{
color: var(--secondary);
}
.obs_infoslider_content_btn.active::after{
background-color: var(--secondary);
width: 100%;
height: 100%;
top: 0px;
right: 0px;
opacity: 1;
}
.obs_infoslider_content_btn.active{
color: white!important;
}
.obs_infoslider_content_btn.active:before{
background-color: var(--secondary);
}
.ob_infoslider_buttons.obs_btngroup_white > .obs_infoslider_content_btn::before{
background-color: #FCF6ED!important;
}
.obs_infoslider_body_wrapper{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background: #371539;
background: linear-gradient(15deg,rgba(55, 21, 57, 0.77) 6%, rgba(55, 21, 57, 0.2) 52%, rgba(55, 21, 57, 0) 79%);
border-radius: 15px;
}
ul.slick-dots,
ul.slick-dots > li,
ul.slick-dots > li > button{
padding: 0px!important;
margin: 0px!important;
list-style: none!important;
list-style-type: none!important;
}
ul.slick-dots{
margin-top: 30px!important;
bottom: -40px;
}
ul.slick-dots > li > button{
font-size: 0px!important;
width: 10px!important;
height: 10px!important;
border-radius: 50%;
background-color: #4A1E4F;
transition: all 500ms cubic-bezier(0.000, 0.565, 0.000, 0.995); transition-timing-function: cubic-bezier(0.000, 0.565, 0.000, 0.995); opacity: 1;
}
ul.slick-dots > li > button::before{
display: none!important;
}
ul.slick-dots > li.slick-active > button{
background-color: var(--secondary);
}.obs_header_tilt {
width: 100%;
float: left;
aspect-ratio: 456/552;
height: 100%;
position: relative;
transform-style: preserve-3d;
margin-bottom: -20px;
margin-top: -100px;
}
.obs_header_tilt .obs_header_tilt_img {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
background-position: center bottom;
background-repeat: no-repeat;
background-size: contain;
transform-style: preserve-3d;
}
.obs_header_tilt .obs_header_tilt_img.obs_tilt_img_4 {
z-index: 4;
transform: translateZ(0px) scale(0.9);
}
.obs_header_tilt .obs_header_tilt_img.obs_tilt_img_3 {
z-index: 3;
transform: translateZ(30px) scale(0.857);
}
.obs_header_tilt .obs_header_tilt_img.obs_tilt_img_2 {
z-index: 2;
transform: translateZ(70px) scale(0.8)  ;
}
.obs_header_tilt .obs_header_tilt_img.obs_tilt_img_1 {
z-index: 1;
transform: translateZ(130px) scale(.2);
aspect-ratio: 1/1;
height: unset!important;
top: unset;
bottom: 0px;
}div#wpadminbar{
z-index: 999999999999999999999999!important;
}