.bg-rayures{
	background: url('fond.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-color: var(--fond-color);
}
.bg-seco{
	background-color: var(--fond-color);
	color: #fff;
}
.btn-danger{
	background-color: var(--btn-color);
}
.mw-60 {
	max-width: 60%;
}
.text-paral {
	font-family: paral;
	line-height: 1;
}
.text-prim{
	color: var(--prim-color);
}
.text-seco{
	color: var(--seco-color);
}


@font-face {
  font-family: paral;
  src: url("../../font/ParaCH.ttf");
}



/*=========REVELATION=========*/
*,
*::before,
*::after {
  box-sizing: border-box;
}


h1{
    font-size: 3em;
    font-weight: normal;
}

/* title styles */
h1.home-title{
	border-radius: 10px;
}
.home-title span{
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 1.2;
}

.home-title span::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--prim-color);
    animation: a-ltr-after 2.5s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(-101%);
}

.home-title span::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--seco-color);
    animation: a-ltr-before 2.5s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after{
    animation-delay: 1.5s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after{
    animation-delay: 2.5s;
}

@keyframes a-ltr-after{
    0% {transform: translateX(-100%)}
    100% {transform: translateX(101%)}
}

@keyframes a-ltr-before{
    0% {transform: translateX(0)}
    100% {transform: translateX(200%)}
}
