.first-title-section {
    font-family:"AbhayaLibre-Regular";
    text-align: center;
    position: relative;
    margin-top: 12vh;
    margin-bottom: 8vh;
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
}
.first-title-section > h2 {
    font-weight: normal;
    font-size: 3rem;
}

.first-section-title-line-container {
  position: relative;
}

.first-section-left-line {
    background-color: var(--color1);
    width: 68vw;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0px;

    animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.first-section-right-line {
    background-color: var(--color1);
    width: 42vw;
    height: 4px;
    position: absolute;
    top: 20px;
    right: 0px;

    -webkit-animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }

@keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
}

@-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
}

/* ECRAN 2K */
@media screen and (min-width: 2500px) and (min-height: 1400px) {
  .first-title-section > h2 {
      font-size: 5rem;
  }
  .first-section-left-line {
    background-color: var(--color1);
    width: 68vw;
    height: 4px;
    position: absolute;
    top: 78px;
    left: 0px;

    animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.first-section-right-line {
    background-color: var(--color1);
    width: 42vw;
    height: 4px;
    position: absolute;
    top: 97px;
    right: 0px;

    -webkit-animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
}

/* ECRAN 4K */
@media screen and (min-width: 3500px) and (min-height: 2000px) {
  .first-title-section > h2 {
    font-size: 6rem;
}
.first-section-left-line {
  background-color: var(--color1);
  width: 68vw;
  height: 4px;
  position: absolute;
  top: 98px;
  left: 0px;

  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  -webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.first-section-right-line {
  background-color: var(--color1);
  width: 42vw;
  height: 4px;
  position: absolute;
  top: 117px;
  right: 0px;

  -webkit-animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
}

/* ECRAN +1920x1080 */
@media screen and (max-width: 1920px) and (max-height: 1080px) {

}

/* ECRAN 17 pouces large */
@media screen and (max-width: 1680px) and (max-height: 1100px) {

}

/* ECRAN 13 à 15 pouces standard */
@media screen and (max-width: 1400px) and (max-height: 1050px) {
  
}


/* TRES GRAND MOBILE 1050x1370 */
@media screen and (max-width: 1050px ) and (max-height: 1370px ) {
  .first-section-right-line {
    width: 45vw;
  }
}

/* GRAND MOBILE 500x900 */
@media screen and (max-width: 380px ) {
  
}

/* MOYEN petit 700 */
@media screen and (max-width: 400px ) and (max-height: 750px ) {

}