@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@300;400&display=swap');

.containerBrand h2 {
    text-align: center;
    color: #fff;
    font-size: 5em;
    margin-bottom: 0.5em;
}

.wrapper {
    width: 90%;
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    padding: 2.5em;
    overflow: hidden;
    border-radius: 1em;
    box-shadow: 0px 5px 10px #000;
}

.footerInfo {
    max-width: 280px;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-left: 33px;
}

.footerInfoSm {
    max-width: 200px;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-left: 33px;
}

.blueText {
    color: rgb(13, 110, 253);
}

.logo {
    margin-left: 3em;
    animation: animate 100s linear infinite;
    height: 100px;
    display: flex;
}

.logo img {
    height: 100px;
    object-fit: contain;
    margin-left: 15px;
    /* border-left: 1px solid black;
    border-right: 1px solid black; */
    /* border-bottom: 1px solid black;  */
    padding: 10px;
}

footer img {
    width: 50px;
}

.card-text {
    font-style: italic;
}

.flex-wr {
    flex-wrap: wrap;
}

.margin-left-100 {
    margin-left: 100px;
}

#logo {
    width: 100px;
}

#logotip {
    display: flex;
}

@keyframes animate {
    0% {
        transform: translateX(0%);
    }
    45% {
        transform: translateX(-87%);
    }
    50% {
        transform: translateX(-87%);
    }
    95% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(0%);
    }
}