/*
Theme Name: Twenty Twenty-Four Child
Template: twentytwentyfour
Version: 1.0
*/

html {
    scroll-behavior: smooth;
}

main {
    margin-top: 0 !important;
}

@media (max-width:782px) {
    .wp-block-columns.flex-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

.fit-cover,
.fit-cover>video,
.fit-cover>img {
    object-fit: cover;
}

.h-full {
    height: 100%;
}

.child-h-full>* {
    height: 100%;
}

.child-w-full>* {
    width: 100%;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.sticky {
    position: sticky;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.inset-0 {
    inset: 0;
}

.top-50 {
    top: 50%;
}

.wp-block-template-part:has(> .template-part-parent-margin-0) {
    margin: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.highlighted-section {
    padding: 64px;
    background-color: rgb(255 255 255 / 30%);
}

.highlighted-section {
    backdrop-filter: blur(2px);
}

.filter-blur {
    backdrop-filter: blur(2px) brightness(0.7);
}

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    border: 1px solid lightgray;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    box-sizing: border-box;
}

.wpcf7-form input[type="submit"] {
    background-color: black;
    padding: 12px 16px;
    color: white;
    font-weight: 500;
    font-size: 18px;
    /* border: 1px solid rgba(56, 86, 184, 0.84); */
    transition: all 500ms ease;
    cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
    transform: scale(0.97);
}

.backdrop-dark {
    backdrop-filter: brightness(0.6);
}