/* General Styles */
*{
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #2f6dff; /* Bleu  */
    --secondary-color: #a9c8d3; /* Bleu-ciel */
    --text-color: #000000;
    --light-text-color: #000000;
    --white-color: #fff;
    --dark-color: #2c3e50; /* Darker for footer */
    --primary-color-dark: #3162a8; /* Pour hover */
    --accent-color-dark: #204d8c;  /* Pour hover */
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff; /* Fond très doux et neutre */
    width: 100%;
    overflow-x: hidden;
    text-align:center;
}
strong{
    color: #2a66c0;
}
.message{
    padding: 10px;
}
header {
    background: #fff;
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(65,130,216,0.04);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 6px;
    transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a:focus {
    color: var(--accent-color);
    text-decoration: none;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

/* Header */
header {
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(65,130,216,0.04);
    padding-top: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
header.scrolled{
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #2f6dff ;
    text-decoration: none;
    background: linear-gradient(#2f6dff 0 0) left/0 100% no-repeat;
    border-radius: 12px;
    padding: 6px;
    transition: background-size .4s ease, color.4s;
}

nav ul li a:hover{
    background-size: 100% 100%;
    color: white;
    border-radius: 12px;
    text-decoration: none;
}

nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg,#4182d8);
    transition: width 0.3s cubic-bezier(.4,2,.6,1);
    position: absolute;
    left: 0; bottom: 0;
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a:focus::after {
    width: 100%;
}
nav ul.active {
    color: white;
}

/* Hero Section (Page d'acceuil) */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 80%;
}

.hero-text h1 {
    color: var(--white-color);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 50px;
    font-size: 1em;
}

.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.carousel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff 60%);
    color: #4182d8;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(65,130,216,0.10);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    font-size: 1em;
    margin-top: 10px;
}

.btn:hover {
    background: linear-gradient(90deg, #4182d8 60%);
    color: #232526;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(65,130,216,0.18);
    text-decoration: none;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.primary-btn:hover {
    background-color: var(--primary-color-dark);
    color: var(--white-color);
}

/* Page Hero (Internal Pages) */
.page-hero {
    background-image: url(Images/pexels-jplenio-1103970.jpg);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
    
}

.page-hero h1 {
    color: var(--white-color);
    font-size: 2em;
    margin: 0;
}

/* Content Sections */
.mission-statement, .content-section, .cta-section {
    padding: 32px 18px;
    background: #fff;
    margin-bottom: 28px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(65,130,216,0.06);
    transition: box-shadow 0.2s;
}

.mission-statement:hover, .content-section:hover, .cta-section:hover {
    box-shadow: 0 16px 48px rgba(65,130,216,0.18), 0 2px 12px rgba(0,0,0,0.07);
    transform: translateY(-3px) scale(1.01);
}

.mission-statement h2, .content-section h2, .cta-section h3 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 1.6em;
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: initial;
}

.mission-statement h2::after, .content-section h2::after, .cta-section h3::after {
    content: '';
    display: block;
    margin: 14px auto 0;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4182d8, #104926);
    opacity: 0.7;
}

.cta-section {
    background: linear-gradient(100deg, #4182d8 60%, #104926 100%);
    color: #fff;
    text-align: center;
    padding: 60px 16px;
    box-shadow: 0 8px 32px rgba(65,130,216,0.18);
}

.cta-section h3 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 15px;
    background: none;
    -webkit-text-fill-color: #fff;
}

.cta-section p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #f5f5f5;
}

/* About Page Specifics */
.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.team-member {
    flex: 1 1 calc(25% - 40px);
    max-width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.2em;
    color: var(--dark-color);
}

.team-member p {
    color: #4182d8;
    font-size: 0.9em;
}

.team-photo {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.team-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* Actions Page Specifics */
.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.program-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(65,130,216,0.18);
}

.gallery-item p {
    padding: 15px;
    font-size: 0.7em;
    color: var(--light-text-color);
}

/* Donate Page Specifics */
.donation-form-container {
    background-color: #4182d8;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 30px auto;
}

.donation-form-container h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.amount-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.amount-btn:hover,
.amount-btn.selected {
    background-color: var(--accent-color-dark);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--light-text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #4182d8;
    border-radius: 5px;
    font-size: 1em;
}

.donation-form-container button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    margin-top: 20px;
}

.message {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.message.success {
    color: rgb(18, 109, 194);
}

.message.error {
    color: red;
}

.note {
    font-size: 0.85em;
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-block p {
    margin-bottom: 10px;
}

.contact-form-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form-block h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Blog Page Specifics */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post {
    background: rgba(255,255,255,0.96);
    padding: 28px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(65,130,216,0.10);
    transition: box-shadow 0.3s, transform 0.3s;
}

.blog-post:hover {
    box-shadow: 0 12px 32px rgba(65,130,216,0.18);
    transform: translateY(-4px) scale(1.01);
}

.blog-post h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 8px;
}

.blog-post .post-meta {
    font-size: 0.92em;
    color: #888;
    margin-bottom: 10px;
}

.blog-post img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(65,130,216,0.08);
}

/* Footer */
footer {
    background-color: #083017;
    color: #ffffff;
    padding: 24px 0 12px;
    margin-top: 24px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 calc(33% - 40px);
    margin-bottom: 20px;
}

.social-links{
    background-color: white;
    border-radius: 20px;
    padding: 10px;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 8px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Animation d'apparition douce pour les sections */
.section-animate,
.gallery-item,
.cta-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.section-animate.visible,
.gallery-item.visible,
.cta-section.visible {
    opacity: 1;
    transform: none;
}

/* Animation sur les boutons au survol */
.btn, .amount-btn {
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover, .amount-btn:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(65,130,216,0.18);
}

/* Animation sur les images au survol */
img:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: scale(1.03) rotate(-1deg);
    transition: filter 0.3s, transform 0.3s;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Scroll Line */
.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #4182d8, #4182d8);
  width: 0;
  z-index: 9999;
  border-radius: 2px;
  transition: width 0.2s cubic-bezier(.4,2,.6,1);
}

/* Animated Circles */
.animated-circles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  mix-blend-mode: lighten;
  animation: float 12s infinite alternate ease-in-out;
}

@keyframes float {
  0%   { transform: translateY(0) scale(1);}
  100% { transform: translateY(-40px) scale(1.1);}
}

/* Responsive Design */
@media (max-width: 575.98px) {
    .container {
        width: 98%;
        align-items: center;
    }
    .carousel-item img {
        height: 280px;
        font-size: 0.9em;
    }
    header{
        background-color: #000000;
        position: sticky;
        z-index: 1000;
    }
}

@media (max-width: 768px) and (max-width: 991.98px) {

    .container {
        width: 96%;
        padding: 10px;
        align-items: center;
    }
    header .container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        width: 96%;
        position: sticky;
        z-index: 1000;
    }
    .logo img {
        height: 48px;
    }
    nav ul {
        flex-direction: column;
        margin-top: 10px;
        align-items: center;
        color: white;
    }
    nav ul li {
        margin: 8px 0;
        margin-left: 0;
    }
    .hero-text {
        padding: 20px 8px;
        max-width: 98vw;
        font-size: 0.5em;
    }
    .hero-text h1 {
        font-size: 0.3em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .carousel-item img {
        height: 160px;
    }
    .mission-statement, .content-section, .cta-section {
        margin-bottom: 15px;
        font-size: 0.7em;
        padding: 18px 8px;
    }
    .cta-section {
        padding: 25px 8px;
    }
    .team-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .team-member {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 16px 0;
    }
    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
        display: block;
    }
    .gallery-item img {
        height: 110px;
    }
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .blog-post img {
        height: 110px;
    }
    .donation-form-container {
        padding: 16px 6px;
        font-size: 1em;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-info-block, .contact-form-block {
        padding: 10px;
    }
    .footer-content {
        font-size: 0.7em;
        flex-direction: column;
        gap: 10px;
        align-items: start;
        padding: 5px;
    }
    .footer-section {
        flex: 1 1 100%;
        text-align: start;
    }
    .footer-section ul {
        text-align: start;
        padding-left: 0;
    }
    .future-plans {
        padding: 6px;
        font-size: 0.9em;
    }
    .footer-bottom{
        font-size: 0.7em;
    }
}

@media (max-width: 600px) {
    .container {
        width: 100vw;
        padding: 5px 2vw;
        box-sizing: border-box;
    }
    .donation-form-container {
        width: 94vw;
        max-width: 380px;
        min-width: 0;
        margin: 12px auto 18px auto;
        padding: 14px 8px;
        font-size: 1em;
        border-radius: 14px;
        box-sizing: border-box;
        color: white;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 1em;
        padding: 10px;
        box-sizing: border-box;
    }
    html, body {
        overflow-x: hidden;
    }
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  z-index: 101;
}
.burger span {
  display: block;
  height: 4px;
  background-color:  #ffffff;
  border-radius: 0px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 1200px) {
  .burger { 
    display: flex; 
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
    backdrop-filter: blur(6px);
    border-radius: 0px;
    padding: 6px 8px;
    box-shadow: 0 2px 8px rgba(65,130,216,0.10);
    padding: 10px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(4, 37, 9, 0.85);
    backdrop-filter: blur(8px);
    position: absolute;
    top: 60px;
    right: 10px;
    width: 70vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 100;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1), opacity 0.3s, backdrop-filter 0.3s;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: white;
  }
  nav ul.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
    backdrop-filter: blur(3px);
  }
}

@media (max-width: 850px) {
    header .container {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        
    }
    .logo {
        order: 2;
        margin-left: 0;
        margin-right: 0;
        /* Pour coller à droite */
    }
    .blog-post, .gallery-item, .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .blog-post img,
    .gallery-item img,
    .team-member img {
        width: 90vw;
        max-width: 340px;
        height: auto;
        max-height: 220px;
        object-fit: cover;
        margin-bottom: 10px;
        border-radius: 8px;
        cursor: pointer;
        transition: box-shadow 0.2s;
    }
}

@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 0 12px 0;
    }
    .footer-section {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        padding: 0 0 12px 0;
    }
    .footer-section h3 {
        margin-bottom: 6px;
        font-size: 1.1em;
    }
    .footer-section ul {
        padding-left: 0;
        list-style: none;
        text-align: center;
    }
    .footer-section ul li {
        margin-bottom: 4px;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.4em;
        padding: 10px 0 0 0;
        margin-top: 8px;
    }
    .social-links {
        justify-content: center;
        margin-top: 8px;
    }
}
/* Ajouter dans la section responsive */
@media (max-width: 786px) {
    header {
        background: #104926 !important; /* Forcer la couleur verte */
        position: sticky;
        z-index: 1000;
        
    }
    
    .hero-text h1 {
        font-size: 1.8em !important;
    }
    
    .hero-text p {
        font-size: 1em !important;
    }
    
    .mission-statement, .content-section {
        font-size: 1em;
        padding: 20px 15px;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
}

/* Amélioration de la lisibilité sur mobile */
@media (max-width: 480px) {
    body {
        font-size: 16px; /* Taille minimum pour lisibilité */
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .container {
        padding: 10px 5px;
    }
}

/* Correction header mobile */
@media (max-width: 786px) {
    header {
        background: #104926 !important;
        position: sticky;
        z-index: 1000;
        top: 0;
    }
    
    .hero-text h1 {
        font-size: 1.8em !important;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1em !important;
        line-height: 1.4;
    }
    
    .mission-statement, .content-section {
        font-size: 1em;
        padding: 20px 15px;
    }
    
    .gallery-item img {
        height: 200px !important;
        object-fit: cover;
    }
    
    /* Amélioration lisibilité */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.3em; }
}

/* Sécurité supplémentaire pour les images */
img {
    max-width: 100%;
    height: auto;
}

/* Amélioration accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}