﻿/* Importing Google font - Inter */

.slider-text h1 {
    color: #fff;
    font-weight: 600;
}

.slider-text h1 span {
    color: #FE0032;
    position: relative;
}

.slider-text h1 span::before {
    content: "";
    height: 60px;
    width: 4px;
    position: absolute;
    top: 50%;
    right: -8px;
    background: #FE0032;
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}

.slider-text h1 span.stop-blinking::before {
    animation: none;
}

@keyframes blink {
    50% { opacity: 0 }
}

@media only screen and (max-width: 1400px) {
  .slider-text h1 span::before {
    height: 20px;
  }
}