:root{
    --primary:#03395D;
    --secondary:#E55D1A;
}

nav{
    display: flex;
    align-items: center;
    background-color: var(--primary);
    height: 80px;
    z-index: 10;
}
nav img{
    max-width: 160px;
}
nav a.link{
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
nav a.link:hover{
    border-bottom: 1px solid white;
}

div.content{}

/* HOME */
section#home{
    background: url("../img/bg-home.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
}
section#home p{
    font-size: 20px;
    color: white;
    font-weight: 400;
}

/* SOBRE */
section#sobre{
    background: #fafafa;
    padding: 100px 0;
}
section#sobre img{
    max-width: 100%;
}

/* SERVICOS */
section#servicos{
    background: white;
    padding: 100px 0;
}
section#servicos img{
    max-width: 100%;
}

/* PROTHEUS */
section#protheus{
    background: url("../img/bg-protheus.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}
section#protheus h2,
section#protheus p,
section#protheus small{
    color: white;
}
section#protheus p{
    font-size: 25px;
}
section#protheus img{
    max-width: 160px;
    margin-top: 30px;
}

/* TECNOLOGIAS */
section#tecnologias{
    background: #fafafa;
    padding: 100px 0;
    border-bottom: 2px solid var(--secondary);
}
@media (min-width: 0px) {
    .carosel-item {
        width: 100%;
    }
}
@media (min-width: 500px) {
    .carosel-item {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .carosel-item {
        width: 33.33%;
    }
}
@media (min-width: 1199px) {
    .carosel-item {
        width: 25%;
    }
}
.carosel {
    position: relative;
}
.carosel-inner {
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
}
.carosel-item {
    display: inline-block;
}
.carosel-control {
    position: absolute;
    top: 50%;
    /* padding: 15px; */
    transform: translateY(-50%);
    font-size: 30px;
    display: inline-block;
}
.carosel-control-left {
    left: 15px;
}
.carosel-control-right {
    right: 15px;
}
.carosel-control:active,
.carosel-control:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
}
a.carosel-control {
    color: black;
    transition: all 0.3s ease-in-out;
}
a.carosel-control:hover {
    color: rgb(229, 94, 26);
}



/* CONTATO */
section#contato{
    background: white;
    padding: 100px 0;
}
section#contato h2{
    max-width: 500px;
}
section#contato img{
    max-height: 500px;
}
section#contato li i {
    font-size: 20px;
    margin: 0 10px 10px 0;
}

/* FOOTER */
footer{
    background-color: var(--secondary);
    padding: 50px 0;
    color: white;
}
footer img{
    max-width: 150px;
}
footer i{
    margin-left: 10px;
}
footer a{
    color: white;
    font-size: 20px;
}



/* GLOBAL */
h1{
    font-size: 45px;
    color: var(--secondary);
    font-weight: 400;
}
h2{
    font-size: 45px;
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 30px;
}
h2 span{
    color: var(--primary);
}
p{
    font-size: 18px;
    color: black;
    font-weight: 400;
}
p.orange{
    color: var(--secondary);
}
a{
    text-decoration: none !important;
    cursor: pointer;
    color: black;
    transition: all 0.2s ease-in-out;
}
a:hover{
    color: rgba(0, 0, 0, 0.8);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}
li i {
    color: var(--primary) !important;
}




/* RESPONSIVE */
@media (max-width: 767px){
    /* NAV */
    nav .container .row .col-12 .float-right{
        display: none !important;
    }
    /* HOME */
    section#home{
        background-position: 70%;
    }
    section#home p{
        font-size: 16px;
    }
    /* PROTHEUS */
    section#protheus{
        background-position: 85%;
    }
    section#protheus p{
        font-size: 20px;
    }
    /* CONTATO */
    section#contato li i {
        font-size: 16px;
    }
    /* FOOTER */
    footer .col-12{
        align-items: center;
    }
    /* GLOBAL */
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 32px;
    }
    p{
        font-size: 14px;
    }
    section#sobre,
    section#servicos,
    section#protheus,
    section#tecnologias,
    section#contato{
        padding: 50px 1%;
    }
}