/* ABOUT 
/////////////////////////////////////////////////////// */

.about { 
	width: 100%;
    height: auto;
    display: grid;
    justify-content: center;
	position: relative;
    z-index: 2; }

.about p {
    max-width: 70vw;
    font-family: "Inter", sans-serif;
    font-weight: 700; 
    font-size: 3.5vw;
    line-height: 1; 
    letter-spacing: -0.025em;
    text-align: center; 
    color: var(--orange); }

.about p:last-child {
    margin-top: 1em; }

.about span {
    font-family: "Style Script", cursive;
    font-weight: 400;
    display: inline-block;
    position: relative;
    animation-name: color;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate; }

.about span img {
    width: 100%;
    min-width: 12vw;
    height: auto;
    top: 50%;
    left: 0;
    opacity: 0;
    visibily: hidden;
    pointer-events: none; 
    object-fit: cover;
    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    border-radius: 9px;
    position: absolute;
    z-index: 999; }

@keyframes color {
    
	from { color: var(--green); }
	  to { color: var(--black); }
    
} /* FI */


/* STYLE
/////////////////////////////////////////////////////// */