/* animated heater */

.header-cont {
    text-transform: uppercase;
    font-size: 84px;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 50px 100px;
    margin: 100px 0;

    /* height: 400px; */
    /* display: none; */
}

#animatedHeader {
    text-align: left;
    font-family: 'Arial', sans-serif;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(40, end), blink-caret 0.75s infinite;
    margin-right: 25px;
    height: 84px;
}

#staticHeader {
    height: 84px;

}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #333;
    }
}

@media screen and (max-width: 1512px) {
    .hero-banner {
        margin: 0px 0px;
    }
}

@media screen and (max-width: 1024px) {
    main {
        padding-top: 0;
    }

    .logo-cont {
        display: none;
    }

    .hero-banner {
        max-height: 1200px;
        margin-top: 0px;
    }

    .header-cont {
        flex-direction: column;
        font-size: 54px;
    }

    #animatedHeader {
        margin-right: 0;
        height: 54px;
    }

    #staticHeader {
        height: 54px;
    
    }

    

      
}