/* Fonts */
@import "fonts.css";

body {
    font-family: 'Avenir-Light', sans-serif;
    background: #fff;
    color: #363636;
}

/* Header */
header {
    padding: 20px 0;
    box-shadow: 0 1px 5px #c0c0c0;
    background-color: rgba(255, 255, 255, 0.8);
}

header ul.nav {
    display: inline-block;
}

header ul.nav li {
    float: left;
    margin-right: 30px;
}

header ul.nav li:last-child {
    margin-right: 0;
}

header ul.nav li a {
    font-family: 'Raleway', 'Avenir-Light', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    color: #363636;
    transition: color 0.4s ease 0s;
}

header ul.nav li a:hover, header ul.nav li a.active {
    color: #17867F;
    text-decoration: none;
}

header ul.nav .dropdown-menu {
    padding: 10px 5px;
    text-align: center;
}

header ul.nav .dropdown-menu li {
    width: 100%;
    margin: 0;
    text-align: center;
}

header .logo img {
    max-height: 80px;
}

/* Content */
.content {
    margin-top: 120px;
}

.carousel .carousel-item {
    max-height: 900px;
}

/* Header */
footer {
    padding: 40px 0;
    color: #363636;
}

footer .logo img {
    max-height: 60px;
}

footer h4 {
    font-family: 'Avenir-Light', sans-serif;
    font-weight: bold;
}

footer p {
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    float: left;
    margin-right: 5px;
}

footer ul li:last-child {
    margin-right: 0;
}

/* Título */
h2.titulo {
    font-size: 30px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 50px;
}

h2.titulo .line {
    width: 70%;
    height: 1px;
    background: #22C9BE;
    margin-left: 15%;
    margin-top: 5px;
}

h2.titulo .line2 {
    width: 150%;
    height: 1px;
    background: #22C9BE;
    margin-left: -25%;
    margin-top: 5px;
}

/* Sobre */
.sobre {
    padding: 100px 0 50px 0;
    color: #292929;
}

.sobre .frase {
    text-align: center;
    padding: 60px;
    font-size: 35px;
}

.sobre p {
    color: #000;
    font-size: 17px;
}

/* Portfolio */
.portfolio {
    padding: 100px 0 50px 0;
}

.portfolio ul {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.portfolio ul li {
    list-style: none;
    display: inline-block;
    padding: 0 30px;
    border-right: 1px solid #363636;
}

.portfolio ul li:first-child {
    padding-left: 0;
}

.portfolio ul li:last-child {
    border-right: 0;
}

.portfolio ul li a {
    font-size: 20px;
    color: #363636;
}

.portfolio ul li a:hover {
    text-decoration: none;
    color: #22C9BE;
}

.portfolio .projeto {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.portfolio .projeto img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio .projeto:hover img {
    opacity: 0.5;
}

.portfolio .projeto .hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000;
}

.portfolio .projeto:hover .hover {
    opacity: 0.6;
}

.portfolio .projeto .hover .text a {
    width: 100%;
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.portfolio-infos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.portfolio-infos .info {
    width: 25%;
    padding: 0 30px;
    text-align: left;
    color: #363636;
    font-size: 1.2rem;
    float: left;
}

.portfolio-infos .info:first-child {
    width: 50%;
}

.portfolio-infos .info span {
    width: 100%;
    display: block;
    color: #22C9BE;
    text-transform: uppercase;
}

a.back {
    text-decoration: none;
    color: #5a6268;
}

a.back:hover {
    text-decoration: underline;
}

a.back i {
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    color: #fff;
    padding: 0 4px 0 0 ;
    background: #22C9BE;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Clipping */
.clipping {
    padding: 100px 0 50px 0;
    color: #292929;
}

.clipping .clip {
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 1px 10px #c0c0c0;
    height: max-content;
}

.clipping .clip h4 {
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
}

.clipping .clip .line {
    width: 80%;
    height: 3px;
    background: #22C9BE;
}

.clipping .clip p {
    width: 80%;
    margin: 15px 0;
    padding-right: 25px;
}

.clipping .clip img {
    width: 100%;
    text-align: center;
}

/* Contato */
.contato {
    padding: 100px 0 50px 0;
    color: #292929;
}

.contato .form {
    width: 100%;
    display: contents;
}

.contato .form .form-group {
    margin-top: 30px;
}

.contato .form .form-control {
    color: #292929;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #292929;
    font-style: italic;
}

.contato .form .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #22C9BE;
}

.btn-success {
    background: #22C9BE;
    border: 1px solid #22C9BE;
    border-radius: 0;
    padding: 10px 100px;
}

.btn-success:hover {
    color: #292929;
    background: #22C9BE;
    border: 1px solid #292929;
}

/* Margin */
.m-t-10 { margin-top: 10px !important; }
.m-t-20 { margin-top: 20px !important; }
.m-t-30 { margin-top: 30px !important; }
.m-t-40 { margin-top: 40px !important; }
.m-t-50 { margin-top: 50px !important; }
.m-t-60 { margin-top: 60px !important; }
.m-t-70 { margin-top: 70px !important; }
.m-t-80 { margin-top: 80px !important; }
.m-t-90 { margin-top: 90px !important; }
.m-t-100 { margin-top: 100px !important; }