/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/**** BALANCED TEXT BLOCKS ****/
h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

.pretty {
    text-wrap: pretty;
}

.balance {
    text-wrap: balance;
}

/**** LINK HOVER TRANSITION ****/

a:hover {
    transition: all .6s ease-in-out !important;
}

/**** GENERAL STYLES ****/

.home .brand.has-logo-image {
    display: none;
}

@media screen and (min-width: 800px) {
.home div.site-header-row-container-inner{
    background: rgba(3, 39, 40, 0.7);
}
}

@media screen and (max-width: 799px) {
    div.site-header-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 10px;
        }
}

/*@media screen and (max-width: 799px) {
   
    div.site-mobile-header-wrap,
    div.site-header-main-section-right.site-header-section.site-header-section-right {
        max-height: 80px;
    }
}*/


p {
    margin-bottom: 15px !important;
}

li::marker {
    color: #229BA3;
}

ul.wp-block-list {
    text-wrap: pretty;
}

.wp-block-list li {
    margin-bottom: 10px;
}


/**** TESTIMONIAL STYLES ****/

.splide__arrow:hover {
    background-color: #229ba3 !important;
}

.splide__pagination__page.is-active {
    background-color: #229ba3 !important;
    border: 2px solid #229ba3 !important;
}


.splide__pagination__page:hover {
    background-color: #229ba3 !important;
    border: 2px solid #229ba3 !important;
    
}

.splide__pagination__page {
    border: 2px solid #126166 !important;
    background-color: #fff !important;
    opacity: 1 !important;
}



/**** ANIMATIONS ****/

div.piv-process::before {
    content: url(/wp-content/uploads/2025/04/process-large.png);
    animation: rotate 35s linear infinite;
    position: absolute;
    top: calc(50% - 375px);
    left: calc(50% - 375px);
    opacity: 10%;
    scale: 80%;
}

@media screen and (max-width: 600px) {
	div.piv-process::before {
    content: url(/wp-content/uploads/2025/04/process-large.png);
    animation: rotate 35s linear infinite;
    position: absolute;
    top: calc(1% - 375px);
    left: calc(50% - 375px);
    opacity: 10%;
    scale: 50%;
	}
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    
    100%{
        transform: rotate(360deg);
    }
}
.piv-button-anim {
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }

    50%  { transform: scale(1.1); }

    100%  { transform: scale(1); }
}


/* =========  Spinner section wrapper  ========= */
.piv-rotator {
  position: relative;                 /* containing block for the SVG */
}

/* =========  Rotating graphic  ========= */
.piv-rotator .rotating-bg {
  position: absolute;                 /* desktop */
  top: 50%;
  left: 50%;
  width: 750px;
  height: 750px;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
  animation: spin 40s linear infinite;
  z-index: 0;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========  Mobile tweaks  ========= */
@media (max-width: 768px) {
  .piv-rotator .rotating-bg {
    position: fixed;
    top: 20%;                  
    left: 50%;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    transform-box: fill-box;
    transform-origin: center;
    transform: translate(-50%, -50%);
  }
}
