﻿/*logo*/
/*.logo {
    max-width: 100%;
    margin: auto;
}
*/
.mainTitle {
    font-size: 3rem;
    font-weight: bold;
    line-height: 5rem;
    padding-left: 1rem;
    color:#fff;
}

.logosizing {
    background-size:cover;
    width:35%;
    vertical-align:text-top;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}


svg.tbi_logo {
    height: 12rem;
}

.cls-1 {
    fill: #0378a2
}

svg.tbi_logo #outerg {
    animation: rotateIn 1s both;
}

svg.tbi_logo #innerg {
    animation: rotateIn 1s both;
    animation-delay: 0.1s;
}

svg.tbi_logo #outer {
    fill: #039dd4;
}

svg.tbi_logo #inner {
    fill: #0378a2;
}

svg.tbi_logo #tbi-tg {
    animation: fadeIn 1s both;
    animation-delay: 0.5s;
}

svg.tbi_logo #tbi-bg {
    animation: fadeIn 1s both;
    animation-delay: 0.75s;
}

svg.tbi_logo #tbi-ig {
    animation: fadeIn 1s both;
    animation-delay: 1s;
}

svg.tbi_logo #opposite {
    animation: rotateIn2 1s both;
    animation-delay: 0.5s;
}


@-webkit-keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg) translate(0,0);
        opacity: 0;
    }

    to {
        transform-origin: center;
        transform: translate3d(0, 0, 0) translate(0,0) !important;
        opacity: 0.8;
    }
}

@-webkit-keyframes rotateIn2 {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg) translate(0,0);
        opacity: 0;
    }

    to {
        transform-origin: center;
        transform: translate3d(0, 0, 0) translate(0,0) !important;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
