@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat-Thin';
    src: url(../fonts/Montserrat-Thin.ttf);
}

/* TELAS PEQUENAS */
@media (max-width: 750px) {
    /* main {
        padding-top: 7rem;
    } */

    section {
        padding-top: 8rem !important;
        min-height: 100vh;
    }

    .center {
        /* height: vh; */
        /* height:100%; */

        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: column;
        /* padding-bottom: 30px; */
    }
}

/* TELAS GRANDES */
@media (min-width: 751px) {
    main {
        position: -webkit-sticky;
        position: sticky;
        height: calc(100vh - 2.4rem);
        width: 100%;
        overflow-y: auto;
    }

    section {
        /* padding-top: 8rem !important; */
        /* background-color: #fff; */
        min-height: 90vh;
    }

    .center {
        min-height: 100vh;
        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: column;
    }
}


body {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
    background: #f8f9fa;
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none
}

aside {
    /* background-color: #1f2d48; */
    background-color: #232425;
    /* min-width: 250px; */
}

main {
    position: -webkit-sticky;
    position: sticky;
    /* top: 4rem; */
    /* height: calc(100vh - 2.4rem); */
    width: 100%;
    overflow-y: auto;
}

footer {
    /* background-color: #1a2438 !important; */
    background-color: #1B1C1D !important;
    text-align: center;
    color: #f8f9fa !important;
    /* padding-top: 10px; */
}

.titulo {
    font-family: 'Montserrat-SemiBold';
}

.subtitulo {
    font-family: 'Montserrat-Regular';
}

.texto {
    font-family: 'Montserrat-Regular';
}

.bg-sec {
    background-color: #f0f0f0;
}

.bg-black{
    background-color: #232425;
}

.bg-transparente {
    background-color: transparent;
    /* transition-duration: 400ms; */
    transition: ease-in-out 300ms;
}

.bg-light-custom {
    background-color: #f8f9fa;
    transition: ease-in-out 300ms;
}

.contato-dark-blue {
    border-top: 3px solid #1a2438;
    border-bottom: 3px solid #1a2438;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.contato-gold {
    /* border-top: 3px solid #f9a825; */
    border-top: 3px solid #007bff;
    /* border-bottom: 3px solid #f9a825; */
    border-bottom: 3px solid #007bff;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.img-floating {
    /* width: 150px; */
    /* height: 150px; */
    /* box-sizing: border-box; */
    /* border: 5px white solid; */
    /* border-radius: 50%; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translatey(0px);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
        transform: translatey(0px);
    }

    50% {
        /* box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2); */
        transform: translatey(-30px);
    }

    100% {
        /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
        transform: translatey(0px);
    }
}

/* .buildings {
    background-image: url('../../buildings.jpg') !important;
    background-position: center !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: soft-light;
    padding-top: 60px !important;
} */


.sec-2 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    /* background-color: #f8f8f8; */
    /* height: 90vh; */
}

.bgsection {
    background-color: antiquewhite;
}

.bg-nav {
    background-color: #f8f9fa !important;
    transition-duration: 300ms;
}

.bg-nav-transparent {
    background-color: rgba(0, 0, 0, 0) !important;
    transition-duration: 300ms;
}

.bg-barra-lateral {
    background-color: rgb(199, 216, 247);
}

.bg-dark-blue {
    background-color: #1f2d48;
}

.bg-mkt {
    background-color: #f9a825;
}

.btn-dark-blue {
    color: #fff;
    background-color: #1f2d48;
    border-color: #1f2d48;
}

.btn-dark-blue:hover {
    color: #fff;
    background-color: #1a2438;
    border-color: #1a2438;
}

.btn-gold {
    font-weight: 600;
    color: #343a40;
    background-color: #faaf35;
    border-color: #faaf35;
}

.btn-gold:hover {
    background-color: #f9a825;
    border-color: #f9a825;
}

.mostrarModal {
    transition: ease-in-out 300ms;
}

.mostrarModal:hover {
    cursor: pointer !important;
    box-shadow: 0 0.5rem 1rem #00000063 !important;
    transition: ease-in-out 300ms;
}

.custom-list {
    list-style-type: none;
    font-family: 'Montserrat-Regular';
    /* margin: 15px 5px; */
    /* padding: 0; */
    color: #f8f9fa;
    transition: ease-in-out 200ms;
    font-size: large;
}

.custom-list li {
    margin: 15px 0 15px 0;
    /* padding: 0; */
}

.custom-list li:hover {
    color: #fff;
    font-family: 'Montserrat-SemiBold';
    padding-left: 3px;
    /* border-left: 2px solid #fff; */
    /* border-bottom: 2px solid #fff; */
    transition: ease-in-out 200ms;
    /* margin: 2px; */
}