/* ============================= */
/* MOTS ROUGES */
/* ============================= */

.amco-about-title em,
.amco-dom-title em{

    background:linear-gradient(90deg,#A80000,#C00000,#E00000,#C00000,#A80000);
    background-size:300% 300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:amcoGradient 6s ease infinite;

}

@keyframes amcoGradient{

0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}

}


/* ============================= */
/* LUEUR AUTOUR IMAGE */
/* ============================= */

.amco-main-card{

    animation:amcoGlow 6s ease-in-out infinite;

}

@keyframes amcoGlow{

0%{

box-shadow:
0 25px 60px rgba(15,23,42,.16),
0 0 0 rgba(192,0,0,0);

}

50%{

box-shadow:
0 40px 80px rgba(15,23,42,.20),
0 0 35px rgba(192,0,0,.22);

}

100%{

box-shadow:
0 25px 60px rgba(15,23,42,.16),
0 0 0 rgba(192,0,0,0);

}

}


/* ============================= */
/* CENTRE ORBITE */
/* ============================= */

.amco-orbit-core{

animation:orbitPulse 5s ease-in-out infinite;

}

@keyframes orbitPulse{

0%{

transform:translate(-50%,-50%) scale(1);

}

50%{

transform:translate(-50%,-50%) scale(1.04);

}

100%{

transform:translate(-50%,-50%) scale(1);

}

}