﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

/*****************************
    GERAL
*****************************/

body {
    font-family: 'Poppins', sans-serif;
}

section {
    padding: 45px 0;
}

.bg-breadcrumb {
    background: #2b2e83;
}

.breadcrumb {
    padding: .75rem 0;
    text-transform: capitalize;
}

ol.breadcrumb {
    background: transparent;
    margin: 0;
}

    ol.breadcrumb a {
        color: #fff;
    }

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: ">";
}

hr {
    margin: 0;
}

.btn {
    cursor: pointer;
}

.link-padrao {
    color: inherit;
    text-decoration: inherit;
}

    .link-padrao:hover {
        color: inherit;
        text-decoration: inherit;
    }

.center-h {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.blue {
    color: #074471;
}

.white {
    color: #fff;
}

.purple {
    color: #301133;
}

.mid {
    background-image: url(img/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    height: 100vh;
    border-top: 5px #e8bb00 solid;
}

.mid .social i {
    font-size: 45px;
    margin-bottom: 10px;
    color: #fff;
}

.mid .social p {
    font-size: 14px;
    color: #fff;
}

.mid .assinatura {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0 25px;
}

.mid .assinatura .icon {
    color: #000!important;
}

@media only screen and (max-width: 768px) {

.mid {
    height: auto;
}

    .mid .social {
    font-size: 14px;
    color: #301133;
}

.mid .assinatura {
    color: #fff;
    position: inherit;
    bottom: 0;
    left: auto;
    width: 100%;
    padding: 15px 0 25px;
}

}

