.info{
    display: grid;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 25px;
    padding-top: 45px;
    padding-bottom: 40px;
    position: relative;
}

.info h2{
    width: 100vw;
    font-family: 'Defused-ExtendedBold', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 100%;
    color: #878787;
    position: absolute;
    top: 25px;
    z-index: -1;
    opacity: 0.1;
    letter-spacing: 12px;
}

.info p{
    width: 60vw;
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .info p{
        width: 100%;
    }
}