:root{
            --retainer-width: 960px;

            --default-transition: all 0.3s ease-in-out;
        }
        *,
        *::before,
        *::after{
            box-sizing: border-box;
        }
        html,body{
            margin: 0;
            padding: 0;

            line-height: 1.4;
            font-size: 1rem;
            font-weight: 300;
            font-family: 'poppins', sans-serif;
            text-align: justify;
            color: #333;
        }

/* Body Text - The foundation of your fresh content */
body {
  /* font-size: clamp(1rem, 0.875rem + 0.625vw, 1.25rem); */
  /* Scales from 16px to 20px */

  font-size: 1rem;
}

/* Heading 1 - Your headline hero */
h1 {
  font-size: clamp(2rem, 1rem + 5vw, 4rem);
  /* Scales from 32px to 64px */
}

/* Heading 2 - The supporting character */
h2 {
  font-size: clamp(1.5rem, 0.875rem + 3.125vw, 3rem);
  /* Scales from 24px to 48px */
}

/* Heading 3 - Keeps things organized */
h3 {
  font-size: clamp(1.25rem, 0.875rem + 1.875vw, 2rem);
  /* Scales from 20px to 32px */
}

/* Heading 4 - A subtle distinction */
h4 {
  font-size: clamp(1.125rem, 0.9375rem + 0.9375vw, 1.5rem);
  /* Scales from 18px to 24px */
}

/* Heading 5 - Small but mighty */
h5 {
  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.125rem);
  /* Scales from 16px to 18px */
}

/* Heading 6 - The fine print with style */
h6 {
  font-size: clamp(0.875rem, 0.8125rem + 0.3125vw, 1rem);
  /* Scales from 14px to 16px */
}

/* Small Text - Perfect for those tiny details */
small {
  font-size: clamp(0.75rem, 0.6875rem + 0.3125vw, 0.875rem);
  /* Scales from 12px to 14px */
}
        
        .retainer{
            margin: 0 auto;
            padding: 25px 25px;

            display: block;
            width: 100%;
            max-width: var(--retainer-width);
        }
        .root-zone,
        .main-zone{
            display: block;
        }

        .footer-zone{
            margin: 0;
            padding: 0;
            display: block;
            background-color: #fafafa;
        }
        .footer-wrap{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: solid 1px rgba(0,0,0,0);
            text-align: center;
        }



        .home-hero-zone{
            margin: 0;
            padding: 0;
            display: block;
            background-color: #fafafa;


            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
/*            
            background-image: linear-gradient(
                    to bottom right, 
                    rgba(255, 0, 0, 0.5), 
                    rgba(0, 0, 255, 0.5)
                ), url('/_assets/img/bg-hero.jpg');
*/
/*
            background-image: radial-gradient(
                    rgba(255, 255, 255, 0.5), 
                    rgba(255, 255, 0, 0)
                ), linear-gradient(to bottom right, rgba(255,0,0, 0.2) , rgba(0,0,255,0.2)), url('/_assets/img/bg-hero.jpg');
*/

            background-image: none; 
             background-image: linear-gradient(to bottom right, rgba(255,0,0, 0.2) , rgba(0,0,255,0.2))   ;


        }
        .home-hero-wrap{
            width: 100%;
            height: 70vh;
            gap: 2rem;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .home-hero-txtblok{
            width: 100%;
            max-width: 420px;
            display: block;
        }
        .home-hero-mashead{
            margin: 0;
            padding: 0;
            display: block;

            line-height: 1.1;
            font-size: 2.75rem;
            font-weight: 500;   
            text-align: center;         
        }
        .home-hero-subhead{
            margin: 1.25rem 0;
            padding: 0;
            display: block;

            font-size: 1.25rem;
            font-weight: 300;
            text-align: center;
        }

        .home-search-box{
            margin: 0;
            padding: 0.5rem 1.5rem 0.5rem 2rem;

            width: 100%;
            gap: 0.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;

            border-radius: 42px;
            background-color: antiquewhite;
            background-color: #fff;
        }
        .home-search-box-input{
            margin: 0;
            padding: 0.5rem 0;
            display: block;

            width: 90%;
            /* border: none;
            outline: none; */

            font-size: 1.2rem;
            color: #444;
            
        }
        .home-search-box-btn{
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            outline: none;
            border: none;
        }
        .home-search-box-icon{
            display: flex;
            align-items: center;
            justify-content: center;
        }



        .search-zone{
            margin: 0;
            padding: 0;
            display: block;
            background-color: RGB(39,82,67);
            transition: var(--default-transition);
        }
        .search-wrap{
            height: 15vh;
            max-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;

            color: rgba(255,255,255,0.85);
            transition: var(--default-transition);
        }
        .search-mashead{
            margin: 0;
            padding: 0;
            color: rgba(255,255,255,1);
            font-weight: 600;
            font-style: italic;
            text-align: center;

            display: none;
            transition: var(--default-transition);
        }
        .search-subhead{
            margin: 1rem 0 2rem 0;
            font-size: 1.25rem;
            text-align: center;
            display: none;
            transition: var(--default-transition);
        }

        .search-block{
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 720px;
            display: block;
            border: 0px dotted orange;
            transition: var(--default-transition);
        }
        .search-box-form{
            margin: 0;
            padding: 10px 15px 10px 30px;
            width: 100%;
            gap: 15px;
            display: flex;
            align-items: center;
            justify-content: center;

            background-color: white;

            border-radius: 40px;
            transition: var(--default-transition);
        }
        .search-box-input{
            margin: 0;
            padding: 3px 8px;

            width: 100%;
            height: 100%;
            display: block;

            font-size: 1.2rem;
            color: rgba(0,0,0,0.6);
            
            background-color: transparent;
            border: none;
            outline: none;
            transition: var(--default-transition);
        }
        .search-box-submit{
            margin: 0;
            padding: 5px;
            width: 40px;
            aspect-ratio: 1;
            
            gap: 0;
            display: flex;
            align-items: center;
            justify-content: center;

            cursor: pointer;
            border-radius: 50%;
            background-color: transparent;
            transition: var(--default-transition);
        }
        .search-box-submit:hover{                       
            transform: scale(1.15);
        }
        .search-box-clear{
            margin: 0;
            padding: 0px;
            /* width: 20px;
            aspect-ratio: 1;
             */
            gap: 0;
            display: none;
            align-items: center;
            justify-content: center;


            line-height: 1;
            font-size: 2.5rem;
            font-weight: 500;
            transform: rotate(45deg);

            color: #888;
            cursor: pointer;
            border-radius: 50%;
            background-color: transparent;
            transition: var(--default-transition);
        }
        .search-box-clear.active{
            display: inline;
        }
        .search-box-clear:hover{
            color: #222;
            transform-origin: center;
            transform: rotate(45deg) scale(1.05);
        }
        

        .search-zone.extended .search-wrap{
            min-height: 85vh;
            max-height: initial;
        }   
        .search-zone.extended .search-mashead,
        .search-zone.extended .search-subhead{
            display: block;
        }

        .div-content-pane{
            display: none;
            transition: var(--default-transition);
        }
        .div-content-pane.active{
            display: block;
        }




        .results-content{
            display: block;
            background-color: #fafafa;
        }
        .results-list{
            margin: 0;
            padding: 0;
            list-style: none;

            width: 100%;
            display: block;
        }
        .results-item{
            margin: 1rem 0;
            padding: 1.25rem;

            width: 100%;
            display: block;
            text-align: left;
            border: 0px solid #ccc;
            background-color: #fff;
            border-radius: 10px;
        }

        .results-item p{
            margin: 0;
            padding: 0;
        }

        .results-item-detail{
            margin: 0;
            padding: 0;
            display: block;

            width: 100%;
            gap: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        
        .results-item-header{
            margin: 0;
            padding: 0;
            display: block;
        }
        .results-item-mashead{
            margin: 0;
            padding: 0;
            display: block;            
        }
        .results-item-subhead{
            margin: 0 0 0.2rem 0;
            padding: 0;
            display: block;
            font-size: 1.2em;            
        }

        .results-item-block{
            padding: 0;
            margin: 0.5rem 0;
            display: block;
        }

        .results-item-block-title{
            padding: 0;
            margin: 0 0 0rem 0;
            display: block;

            color: #222;
            font-size: 0.95rem;
            font-weight: 500;
            font-style: italic;
            text-transform: uppercase;
        }


        .results-item p{
            margin: 0;
            padding: 0;
            display: block;
        }

        .results-item-block-header{
            margin: 0;
            padding: 0;
            display: block;
            text-transform: uppercase;
        }
        .results-item-block-detail{
            margin: 0;
            padding: 0;
            display: block;
        }


        .modal-progress-overlay {
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            margin: 0 0;
            padding: 0 0;
            z-index: 9900;
            position: fixed;
            display: flex;
            display: none;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.98);
        }

        .modal-progress-overlay.active {
            display: flex;
        }

        .modal-progress-dialog {
            width: 95%;
            max-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 0px;
            padding: 30px 30px;
            background-color: white;
            font-size: 1.25rem;
            text-align: center;
            border-radius: 1rem;
            overflow: hidden;
        }

        .modal-progress-dialog::after {
            left: 0;
            bottom: 0;
            height: 10px;
            width: 25%;
            content: "";
            position: absolute;
            z-index: 4px;
            display: block;
            background-color: RGB(39,82,67);
            background-color: RGB(71,194,251);
            -webkit-animation: searchProgressIndicator 1.5s infinite ease-in-out;
            animation: searchProgressIndicator 1.5s infinite ease-in-out;
        }

        @-webkit-keyframes searchProgressIndicator {
            0% {
                width: 15%;
            }

            50% {
                width: 100%;
            }

            100% {
                width: 15%;
            }
        }

        @keyframes searchProgressIndicator {
            0% {
                width: 15%;
            }

            50% {
                width: 100%;
            }

            100% {
                width: 15%;
            }
        }        


        .img-demo{
            padding: 0;
            margin: 0 auto;

            width: 100%;
            max-width: 420px;
            display: block;
            border: 3px solid red;
        }