/*
Theme Name:   Property Scan
Theme URI:    https://zephyrus.digital/
Description:  Twenty Twenty Three Child Theme
Author:       Neil Harper
Author URI:   https://zephyrus.digital
Template:     twentytwentythree
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain:  property-scan
*/
/* ========================== */
/* Custom Menu Styling */
/* ========================== */
@media screen and (max-width: 37rem) {
  .wp-block-navigation__container {
    padding: 2rem;
    color: rgba(0,0,0,0.5);
  }  
    
}

/* ========================== */
/* Custom page Styling */
/* ========================== */

/* Home Page Styling */
.home .wp-block-post-title {
    display: none;
}

/* ========================== */
/* Custom Block Styling */
/* ========================== */
/* Bi Lingual Hero Block */
.hero-statement-wrapper {
    position: relative;
    display: block;
    min-height: 20rem;
}
.hero-statement {
    position: absolute;
    inset: 0;
}
@keyframes opacity-change {
    0%   {opacity: 0;}
    50% {opacity: 1;}
    75% {opacity: 0;}
    100% {opacity: 0;}
  }
.hero-statement:first-child {
    opacity: 0;
    animation-name: opacity-change;
    animation-duration: 6s;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}
.hero-statement:last-child {
    opacity: 0;
    animation-name: opacity-change;
    animation-duration: 6s;
    animation-direction: reverse;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}


