/*
Theme Name: Cosmoswp-child
Author: The Owen
Author URI: https://theowen.com
Template: cosmoswp
Version: 1.0.5
*/
.main-header { 
  width: 100%; 
  background-color: #ffffff; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
  position: relative; 
  z-index: 1000; 
} 

/* Barre supérieure (Partie blanche + Partie violette) */ 
.header-top-bar { 
  display: flex; 
  min-height: 180px; 
  position: relative; 
  overflow: hidden; 
} 

/* --- CÔTÉ GAUCHE (BLANC) --- */ 
.header-left { 
  flex: 1; 
  background-color: #ffffff; 
  padding: 20px 40px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: flex-start; 
  z-index: 2; 
} 

.logo-wrapper { 
  margin-bottom: 12px; 
} 

.logo-wrapper img { 
  height: 200px; 
  width: auto; 
} 

.location-info { 
  color: #1a365d; 
  font-weight: 600; 
  line-height: 1.4; 
} 

/* --- CÔTÉ DROIT (VIOLET AVEC DIAGONALE) --- */ 
.header-right { 
  flex: 1.4; 
  background-color: #5c246f; 
  color: #ffffff; 
  padding: 25px 40px 25px 160px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); 
  margin-left: -80px; 
  z-index: 1; 
} 

.schedule-box { 
  font-size: 0.9rem; 
  margin-bottom: 12px; 
  opacity: 0.95; 
  line-height: 1.5; 
} 

.emergency-box { 
  margin-bottom: 14px; 
} 

.emergency-text { 
  font-size: 0.82rem; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  opacity: 0.85; 
  margin-bottom: 6px; 
} 

.emergency-box a { 
  color: #ffffff; 
  text-decoration: none; 
  font-size: 1.8rem; 
  font-weight: 700; 
  display: inline-block; 
  transition: transform 0.2s ease; 
} 

.emergency-box a:hover { 
  transform: scale(1.02); 
} 

.action-row { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 15px; 
  max-width: 520px; 
} 

.btn-appointment { 
  display: inline-block; 
  border: 1.5px solid #ffffff; 
  color: #ffffff; 
  text-decoration: none; 
  padding: 8px 22px; 
  font-size: 0.88rem; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  background-color: transparent; 
  transition: all 0.3s ease; 
} 

.btn-appointment:hover { 
  background-color: #ffffff; 
  color: #5c246f; 
} 

.social-links { 
  display: flex; 
  gap: 14px; 
} 

.social-links a { 
  color: #ffffff; 
  font-size: 1.7em; 
  text-decoration: none; 
  opacity: 0.85; 
  font-weight: 600; 
  transition: all 0.2s ease; 
} 

.social-links a:hover { 
  opacity: 1; 
  transform: translateY(-2px); 
} 

/* ---- BARRE DE NAVIGATION COMMUNE (DESKTOP) ---- */ 
.nav-bar { 
  background-color: #ffffff; 
  border-top: 1px solid #eaeaea; 
  border-bottom: 1px solid #eaeaea; 
  position: sticky; 
  top: 0; 
  z-index: 999; 
} 

.nav-container { 
  max-width: 1250px; 
  margin: 0 auto; 
  list-style: none; 
  display: flex; 
  flex-wrap: wrap; 
} 

.nav-item { 
  position: relative; 
} 

.nav-item > a { 
  display: block; 
  padding: 16px 18px; 
  color: #222222; 
  text-decoration: none; 
  font-size: 0.82rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  transition: all 0.2s ease; 
} 

  .toggle-icon {
    font-size: 0.75rem; /* Ajuste la taille de la flèche */
    transition: transform 0.3s ease; /* Animation fluide de rotation */
    pointer-events: none; /* Évite que le clic sur l'icône bloque le script */
 }

.nav-item > a::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 18px; 
  right: 18px; 
  height: 3px; 
  background-color: #5c246f; 
  transform: scaleX(0); 
  transition: transform 0.2s ease; 
} 

.nav-item:hover > a { 
  color: #5c246f; 
} 

.nav-item:hover > a::after { 
  transform: scaleX(1); 
} 

.dropdown-menu { 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background-color: #ffffff; 
  min-width: 280px; 
  list-style: none; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
  border-top: 3px solid #5c246f; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(10px); 
  transition: all 0.25s ease; 
} 

.dropdown-menu li a { 
  display: block; 
  padding: 12px 20px; 
  color: #444444; 
  text-decoration: none; 
  font-size: 0.85rem; 
  font-weight: 600; 
  border-bottom: 1px solid #f5f5f5; 
  transition: all 0.2s ease; 
} 

.dropdown-menu li:last-child a { 
  border-bottom: none; 
} 

.dropdown-menu li a:hover { 
  background-color: #fcf8ff; 
  color: #5c246f; 
  padding-left: 25px; 
} 

.nav-item:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
} 

.menu-toggle, .nav-overlay { 
  display: none; 
}

 .nav-item.current-menu-item > a,
  .nav-item.active > a {
    color: #5c246f;
  }

  .nav-item.current-menu-item > a::after,
  .nav-item.active > a::after {
    transform: scaleX(1); /* Maintient la ligne affichée */
    background-color: #5c246f;
  }
  
  .top-ticker-bar {
  display: none;
 }
  
/* ==========================================================================
   2. PREMIER PALIER : TABLETTES ET PETITS ÉCRANS (< 992px)
   -> Activation globale du Side Menu coulissant
   ========================================================================== */
@media screen and (max-width: 992px) {
  .header-top-bar {
    min-height: auto;
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap; /* Permet aux blocs de s'aligner correctement */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .header-left {
    padding: 0;
    flex: initial;
  }
  
  .logo-wrapper img {
    height: 65px; /* Taille optimale sur mobile */
    width: auto;
  }
  
  /* Retrait uniquement de l'adresse textuelle sur mobile */
  .location-info {
    display: none;
  }
  
  /* --- BLOC URGENCE AFFICHÉ SUR MOBILE --- */
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    margin-right: 15px; /* Espace avec le bouton burger */
    padding: 0;
    margin-left: 0;
    background-color: transparent; /* Supprime le fond violet sur mobile */
    clip-path: none; /* Supprime la diagonale */
    z-index: 1;
  }

  /* Cache les horaires et les boutons réseaux sociaux sur la barre mobile */
  .schedule-box, .action-row {
    display: none;
  }

  .emergency-box {
    margin-bottom: 0;
    text-align: right;
  }

  .emergency-box p {
    font-size: 0.68rem;
    color: #5c246f;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .emergency-box a {
    color: #d11a2a; /* Rouge médical hautement visible */
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
  }
  
  /* --- BOUTON BURGER --- */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
  }
  
  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #5c246f;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  /* --- STRUCTURE DU TIROIR COULISSANT (SIDE MENU) --- */
  .nav-bar {
    position: fixed;
    top: 0;
    right: -310px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
    padding: 80px 0 40px 0;
    border: none;
  }
  
  /* Correction de l'ouverture du menu depuis la droite */
  .nav-bar.active {
    right: unset;
    left: 0;
  }
  
  .nav-container {
    flex-direction: column;
    max-width: 100%;
  }
  
  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 0.88rem;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .nav-item > a::after {
    display: none;
  }
  
  .nav-item.is-open .toggle-icon {
    transform: rotate(180deg);
  }
  
  /* --- ACCORDÉONS MOBILE POUR LES SOUS-MENUS --- */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #5c246f;
    background-color: #fafafa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .dropdown-menu li a {
    padding: 12px 30px;
    font-size: 0.82rem;
  }
  
  .toggle-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
  }
  
  .nav-item.is-open .dropdown-menu {
    max-height: 500px; 
    opacity: 1;
    visibility: visible;
    overflow: visible;
    transition: max-height 0.4s ease-in-out;
  }
  
  /* --- VOILE SOMBRE --- */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* --- ÉLÉMENT ACTUELLE SÉLECTIONNÉ --- */
  .nav-item.current-menu-item > a,
  .nav-item.active > a {
    color: #5c246f;
    font-weight: 800;
    border-left: 4px solid #5c246f; 
    padding-left: 20px; 
  }
  
  

  
   .top-ticker-bar {
    display: block; /* On l'affiche sur mobile */
    background-color: #5c246f; /* Violet de votre charte graphique */
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    position: relative;
  }

  .ticker-wrap {
    width: 100%;
    overflow: hidden;
  }

  .ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: mobile-ticker 18s linear infinite; /* Vitesse adaptée pour les petits écrans */
  }

  .ticker-content span {
    display: inline-block;
    padding-right: 40px; /* Espace entre les infos */
  }
  
}

/* ==========================================================================
   3. DEUXIÈME PALIER : SMARTPHONES EN MODE PAYSAGE / GRANDS MOBILES (< 768px)
   -> Réduction des espacements pour optimiser l'affichage
   ========================================================================== */
@media screen and (max-width: 768px) {
  .header-top-bar {
    padding: 12px 20px;
  }

  .logo-wrapper img {
    height: 70px; /* Redimensionnement fluide du logo */
  }

  /* Réduction de la largeur du menu latéral pour libérer de l'espace écran */
  .nav-bar {
    width: 270px;
    right: -280px;
  }
}


/* ==========================================================================
   4. TROISIÈME PALIER : SMARTPHONES EN PORTRAIT (< 480px)
   -> Optimisation maximale pour petits écrans étroits
   ========================================================================== */
@media screen and (max-width: 480px) {
  .header-top-bar {
    padding: 10px 15px;
  }

  .logo-wrapper img {
    height: 58px; /* Taille compacte pour éviter tout débordement */
  }

  /* Ajustements internes au menu pour les petits écrans */
  .nav-item > a {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .dropdown-menu li a {
    padding: 10px 25px;
    font-size: 0.80rem;
  }
}


/* ====================================================footer*==========================*/

/* ==========================================================================
   1. BASE DU GRAND PIED DE PAGE (FOOTER)
   ========================================================================== */
.clinic-footer { 
  width: 100%; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  background-color: #ffffff; 
  border-top: 1px solid #eaeaea; 
}

.footer-container { 
  max-width: 1140px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* ==========================================================================
   2. SECTION 1 : WHY PARTNER (FOND VIOLET CLINIQUE)
   ========================================================================== */
.footer-reasons-layer { 
  background-color: #5c246f; /* Couleur violette de l'image de marque */ 
  color: #ffffff; 
  padding: 70px 0; 
}

.footer-pre-title { 
  font-size: 0.8rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  opacity: 0.8; 
  display: block; 
  margin-bottom: 5px; 
}

.footer-main-title { 
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 8px; 
  letter-spacing: -0.5px; 
}

.footer-tagline { 
  font-size: 1.1rem; 
  opacity: 0.95; 
  font-style: italic; 
  margin-bottom: 45px; 
  font-weight: 300; 
}

/* Grille des arguments de partenariat */
.reasons-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px 40px; 
}

.reason-item { 
  border-left: 2px solid rgba(255, 255, 255, 0.3); 
  padding-left: 15px; 
}

.reason-item h4 { 
  font-size: 1.05rem; 
  font-weight: 600; 
  margin-bottom: 8px; 
  color: #ffffff; 
}

.reason-item p { 
  font-size: 0.88rem; 
  line-height: 1.5; 
  opacity: 0.8; 
}

/* ==========================================================================
   3. SECTION 2 : ENGAGEMENT PATIENT (LIEN INTERMÉDIAIRE CHIC)
   ========================================================================== */
.footer-commitment-layer { 
  background-color: #fbf9fc; 
  padding: 50px 0; 
  border-bottom: 1px solid #f0eaf2; 
  text-align: center;

}

.commitment-box h3 { 
  color: #5c246f; 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 20px; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}

/* Badges horizontaux d'engagement */
.commitment-pills { 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin-bottom: 20px; 
}

.commitment-pills span { 
  background-color: #5c246f; 
  color: #ffffff; 
  padding: 6px 14px; 
  font-size: 0.82rem; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  border-radius: 2px; 
}

.commitment-statement { 
  max-width: 850px; 
  margin: 0 auto; 
  font-size: 0.95rem; 
  color: #555555 !important; 
  line-height: 1.6; 
  font-style: italic; 
}

/* ==========================================================================
   4. SECTION 3 : REPERTOIRE DES CONTACTS (FOND GRIS CLAIR PRESTIGE)
   ========================================================================== */
.footer-contacts-layer { 
  background-color: #f6f6f6; 
  color: #333333; 
  padding: 60px 0 40px 0; 
}

.contacts-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr 1.2fr; 
  gap: 50px; 
  margin-bottom: 50px; 
}

.column-header { 
  color: #5c246f !important; 
  font-size: 0.95rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.8px; 
  margin-bottom: 20px; 
  position: relative; 
  padding-bottom: 8px; 
}

/* Petit repère géométrique sous les en-têtes de colonnes */
.column-header::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 25px; 
  height: 2px; 
  background-color: #5c246f; 
}

.clinic-location-country { 
  font-size: 1.1rem; 
  font-weight: 700; 
  margin-bottom: 15px; 
  color: #444444 !important; 
}

.ceo-meta-footer .ceo-label { 
  font-size: 0.85rem; 
  color: #666666; 
}

.ceo-meta-footer .ceo-name-footer { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: #222222; 
}

.ceo-meta-footer .ceo-degrees { 
  font-size: 0.85rem; 
  color: #555555 !important; 
  margin-top: 2px; 
}

/* Liste de coordonnées */
.contact-details-list { 
  list-style: none; 
  padding: 0;
  margin: 0;
}

.contact-details-list li, 
.contact-details-list li a { 
  font-size: 0.9rem; 
  margin-bottom: 10px; 
  color: #444444; 
}

.partnership-email-box strong, 
.partnership-email-box a, 
.footer-copyright-bar p { 
  color: #444444; 
}

.contact-details-list li strong { 
  color: #222222; 
}

.partnership-footer-text { 
  font-size: 0.9rem; 
  color: #555555 !important; 
  line-height: 1.5; 
  margin-bottom: 12px; 
}

.partnership-email-box { 
  font-size: 0.9rem; 
}

/* ==========================================================================
   5. BLOC INFÉRIEUR DE BOUTONS D'ACTION
   ========================================================================== */
.footer-action-buttons { 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 15px; 
  border-top: 1px solid #e0e0e0; 
  padding-top: 35px; 
}

/* Bouton principal violet */
.btn-footer-primary { 
  display: inline-block; 
  background-color: #5c246f; 
  color: #ffffff; 
  text-decoration: none; 
  padding: 12px 24px; 
  font-size: 0.85rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  border: 1.5px solid #5c246f; 
  transition: all 0.25s ease; 
}

.btn-footer-primary:hover { 
  background-color: #451a53; 
  border-color: #451a53; 
}

/* Boutons secondaires transparents à contour violet */
.btn-footer-secondary { 
  display: inline-block; 
  background-color: transparent; 
  color: #5c246f !important; 
  text-decoration: none; 
  padding: 12px 24px; 
  font-size: 0.85rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  border: 1.5px solid #5c246f; 
  transition: all 0.25s ease; 
}

.btn-footer-secondary:hover { 
  background-color: #5c246f; 
  color: #ffffff; 
}

/* ==========================================================================
   6. BARRE FINALE DE COPYRIGHT
   ========================================================================== */
.footer-copyright-bar { 
  background-color: #ebebeb; 
  color: #777777; 
  padding: 20px 0; 
  font-size: 0.8rem; 
  text-align: center; 
}

/* ==========================================================================
   7. ADAPTABILITÉ DISPOSITIFS MOBILES (RESPONSIVE)
   ========================================================================== */

/* 💻 TABLETTES PAYSAGE & PETITS ÉCRANS PC (max-width: 992px) */
@media (max-width: 992px) {
  .footer-container { 
    padding: 0 30px; 
  }
  .contacts-grid { 
    gap: 30px; 
  }
}

/* 📐 TABLETTES PORTRAIT (max-width: 768px) */
@media (max-width: 768px) {
  .footer-reasons-layer { 
    padding: 50px 0; 
  }
  .footer-main-title { 
    font-size: 1.7rem; 
  }
  .footer-tagline { 
    margin-bottom: 30px; 
    font-size: 1rem; 
  }
  .contacts-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    text-align: center; 
  }
  .column-header::after { 
    left: 50%; 
    transform: translateX(-50%); 
  }
  .footer-action-buttons { 
    flex-direction: column; 
    align-items: stretch; 
  }
  .footer-action-buttons a { 
    text-align: center; 
  }
}

/* 📱 SMARTPHONES (max-width: 480px) */
@media (max-width: 480px) {
  .footer-container { 
    padding: 0 15px; 
  }
  .footer-main-title { 
    font-size: 1.4rem; 
  }
  .footer-reasons-layer { 
    padding: 40px 0; 
  }
  .footer-commitment-layer { 
    padding: 35px 0; 
  }
  .footer-contacts-layer { 
    padding: 40px 0 30px 0; 
  }
  .reasons-grid { 
    grid-template-columns: 1fr; 
    gap: 25px; 
  }
  .commitment-pills span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}
/*==========================from custom   */

body{
	background-color: #f8f9fa;
    color: #2d3748;   
    font-size: 1.2em;
    line-height: 1.6;   
    font-family: 'Inter', system-ui, sans-serif !important;
	
}

.cta-container {
	  display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
}

.aioseo-breadcrumbs{
    width: 80%;
    margin: auto;
}

/*****************************/

.cwp-main-header{
	padding: 0 0 15px 0 !important;
}

.cwp-main-header .grid-container{
	padding: 0;
}
.cwp-page{
	padding: 0 !important;
}

.cwp-ms-content-grid-column {
	max-width: 90%;
}

.grid-row{
	justify-content: center;
}


.gutentor-module-slider .gutentor-col-wrap .gutentor-slider-caption {
	top: 25%;
}

/* Slider Wrapper */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 98%;
    height: 350px !important;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	margin: auto;
}

        /* Slides Track */
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

        /* Individual Slide */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


        /* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Navigation Dots Indicator */
.dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active, .dot:hover {
    background-color: #ffffff;
    transform: scale(1.2);
}

.cwp-ms-content-grid-column{
	max-width: 80%;
}
.grid-md-9 {
   flex: 0 0 80%;
}


@media screen and (max-width: 480px) {
  .grid-md-9 {
    flex: 0 0 100% !important;
    padding: 0;
  }
  .cwp-ms-content-grid-column {
    max-width: 100% !important;
  }
}







/*===================================================*/
  @keyframes mobile-ticker {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }
