/** VARS */
:root{
    --main-color: #075175;
}

/** BASIC */
body{
    font-family: 'Montserat', sans-serif;
    font-size: 16px; 
    overflow-x: hidden;   
}

.main-color{
    color: var(--main-color);
}
.bg-main{
    background-color: var(--main-color);
    color: #fff;
}
.bg-main a{
    color: #fff;
}
h2, h3{
    font-weight: 900;
}
.btn-main{
    border-width: 2px;
    border-color: var(--main-color) !important;
    background-color: var(--main-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    white-space: nowrap;
}
.btn-main:hover{
    background-color: #fff;
    color: var(--main-color);
}
.text-muted{
    font-style: italic;
    font-weight: 300;
}

/** TOP **/
.top-page{
    background-color: var(--main-color);
    color: #fff;
}
.top-page a{
    color: #fff;
    font-size: 24px;
    margin: 0 0.325rem;
}
.social-right{
    display: flex;
    align-items: center;
}
.top-page p{
    display: flex;
}
.top-page p span{
    display: block;
    margin-right: 16px;
}
@media screen and (max-width: 799px) {
    .top-page .d-flex{
        flex-wrap: wrap;
    }
    .top-page p{        
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .top-page p span{
        margin: 0;
        text-align: center;
    }
    .social-right{
        width: 100%;
        justify-content: center;
    }
}


/** PAGE **/
main{
    min-height: calc(100vh - 220px);
}
.page-title{
    padding: 1rem;
    background-image: url(/assets/images/page-title.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
    color: #fff;
    font-size: 1.5rem;
    padding: 3rem 0;
}
.page-title h1{
    font-size: 2rem;
    font-weight: 300;
}
.page-title p{
    font-size: 0.85rem;
}
.page-title em{
    font-weight: 900;
}
.page-subtitle{
    background-color: var(--main-color);
    color: #fff;
    padding: 0.5rem 1rem;
}
.home-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}
.home-item span{
    font-size: 1.25rem;
    display: block;
    flex-grow: 1;
}
@media screen and (min-width: 999px) {
    .page-title h1{
        max-width: 60%;
    }
}
@media screen and (max-width: 799px) {
    .home-item{
        flex-wrap: wrap;
    }
    .home-item .btn{
        margin-top: 0.5rem;
    }
}

/** FOOTER **/
footer{
    background-color: rgb(27,27,27);
    color: #fff;
    padding: 3rem 0;
}
footer a{
    color: #fff;
}
footer .container{
    display: flex;
}
footer .container div{
    flex: 0 0 50%;
}
@media screen and (max-width: 799px) {
    footer .container{
        flex-direction: column;
    }
    footer .container div{
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
}