.oit-section-title {
    font-size: 126px;
}

.sd-feature-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 60px;
    line-height: 1;

    color: #ffc400;
}

.oit-section-title.font80px {
    font-size: 80px;
    margin-bottom: 75px;
}

.sd-hero-title {
    font-size: 210px;
}


.morph-image{
    position:relative;
    overflow:hidden;
}

.morph-image img{
    width:100%;
    display:block;
}

.morph-image .overlay{
    position:absolute;
    inset:0;
    animation:morph 12s infinite;
}

@keyframes morph{
    0%,35%{
        opacity:0;
    }

    50%,85%{
        opacity:1;
    }

    100%{
        opacity:0;
    }
}