.if-typing-footer {
    background-color: #a84216;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
}

.if-typing-footer,
.if-typing-footer * {
    box-sizing: border-box;
}

.if-typing-footer__inner {
    width: 100%;
}

.if-typing-footer__text {
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.if-typing-footer__typed-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 0.2em;
}

.if-typing-footer__typed {
    font-weight: 900;
    white-space: nowrap;
}

.if-typing-footer__cursor {
    display: inline-block;
    width: 2px;
    height: 35px;
    background-color: #ffffff;
    animation: ifTypingFooterBlink 0.7s infinite;
    vertical-align: middle;
    flex: 0 0 auto;
}

@keyframes ifTypingFooterBlink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .if-typing-footer {
        min-height: 260px;
        padding: 32px 8%;
    }

    .if-typing-footer__text {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .if-typing-footer {
        min-height: 220px;
        padding: 28px 24px;
    }

    .if-typing-footer__text {
        font-size: 24px;
        line-height: 1.35;
    }

    .if-typing-footer__typed {
        white-space: normal;
    }

    .if-typing-footer__cursor {
        height: 28px;
    }
}
