/*
Theme Name: BlankSlate Child
Theme URI: https://opencollective.com/blankslate
Template: blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready,one-column,two-columns,custom-menu,featured-images,microformats,sticky-post,threaded-comments,translation-ready
Version: 2025.1762352751
Updated: 2025-11-05 15:25:51

*/


/* Importer la police Poppins depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Appliquer Poppins partout */
* {
  font-family: 'Poppins', sans-serif !important;
}

/* Ou version plus propre (recommandée) : */
body,
html,
h1, h2, h3, h4, h5, h6,
p, a, span, div, button, input, textarea, select {
  font-family: 'Poppins', sans-serif !important;
}


.service-block {
padding-top : 1em !important;
padding-bottom : 1em !important;
}

/* État normal - transition très fluide */
.why-choose-zoom {
  transition: 
    color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
   /* background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),*/
  /*  padding-left 0.6s cubic-bezier(0.4, 0, 0.2, 1),*/
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    letter-spacing 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* État hover - seulement les valeurs finales */
.why-choose-zoom:hover {
  color: #fff !important;
 /* background-color: rgba(0, 191, 165, 0.05);*/
 /* padding-left: 3rem;*/
  transform: scale(1.02);
  letter-spacing: 1px;
}


.text-container-title {
  background-color: transparent;
  position: relative;
  z-index: 10;
  /*padding: 4rem 2rem;*/
  margin-top: -8rem !important; /* Pour le faire remonter sur la section du dessus */
  margin-bottom: -3rem !important; /* Pour le faire descendre sur la section du dessous */
}


/* ================================================
   FOOTER IVY PARTNERS
   ================================================ */

.ivy-footer {
    background-color: #2d2d2d;
    padding: 60px 20px 40px;
    text-align: center;
}

.ivy-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Logo */
.ivy-logo {
    margin-bottom: 10px;
}

.ivy-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Social Icons */
.ivy-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d2d2d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Navigation */
.ivy-footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.ivy-footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.ivy-footer-nav a:hover {
    color: #cccccc;
}

.ivy-footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.ivy-footer-nav a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ivy-footer {
        padding: 40px 20px 30px;
    }
    
    .ivy-footer-content {
        gap: 30px;
    }
    
    .ivy-logo img {
        max-width: 150px;
    }
    
    .ivy-footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .ivy-footer-nav {
        gap: 15px;
    }
    
    .ivy-footer-nav a {
        font-size: 14px;
    }
}