@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

*{
    margin: 0px;
    padding: 0px;
    
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #606060;
    max-width: 100%;
}

/* Seções Geral */

section h2 {
    text-align: center;
    color: #F47E57;
}

/* Navbar */
.navbar {
    background-color: #373435;
    padding: 0 !important;
  }
.navbar-brand {
    font-weight: bold;
}
.nav-item {
    padding: 0 10px;
}
.nav-link {
    color: #fff!important;
}
.navbar-toggler {
    border: none;
}

/* Slider area */

.slider-area {
    background-image: url(images/background2.jpg);
    background-size: cover;
    background-position: center center;
    height: 100vh;
    color: #fff;
    position: relative;
}
.slider-area-row {
    min-height: 100vh;
}
.slider-text h1 {
    color: #FC6B39;
    font-size: 3rem;
    font-weight: bold;
}
.slider-text p {
    font-size: 1.5rem;
}
#slider .btn {
    padding: 20px;
    background-color: #FC6B39;
    color: #fff;
    display: inline-block;
    margin-top: 25px;
    font-weight: bold;
    border-radius: 100px;
}
@media (max-width: 767.98px) {
    .slider-text h1 {
        font-size: 2rem;
    }
    .slider-text p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}
@media (min-width: 1200px) {
.features {
    margin-top: -120px;
}
}

/* Cards Iniciais */

#cards .card {
    background-color: #373435;
    height: 300px;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
}
#cards .card:hover{
    -webkit-filter: drop-shadow(5px 5px 5px rgba(158, 158, 158, 0.7));
    filter: drop-shadow(5px 5px 5px rgba(158, 158, 158, 0.7));
    -webkit-transform: scale(1.1);
    transform: scale(1.1);

}
#cards .card span i{
    font-size: 4rem;
    color: #F47E57;
    width: 100px;
    height: 100px;
    padding: 10px;
    border: 2px solid #F47E57;
    border-radius: 100px;
}
#cards .card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    bottom: 0;
    line-height: 2rem;
    letter-spacing: 2px;
}

/* Seção Sobre */

#projetos {
    background-color: #373435;
    border: none;
}
.video-section {
    border-radius: 5px;
}

/* Seção Projetos */

#projetos h5 {
    color: white;
    letter-spacing: 1.1px;
    color: #F47E57;
}
#projetos p {
    color: white;
}

/* Seção Depoimentos */

#depoimentos {
    background-color: #373435;
}
.img-card {
    border-radius: 70px;
    margin-top: -35px;
    background-color: #5cb9ea;
}
#depoimentos .card {
    background-color: #D9D9D9;
}
.card h5 {
    color: #F47E57;
}

/* Seção Contatos */

.row-contato {
    justify-content: space-between;
}

.form-contato h3{
    color: #F47E57;
}
.form-contato p {
    color: #CCCCCC;
}

@media (min-width: 1200px) {
    .frame {
        width: 560px !important;
    }
}

@media (max-width: 1200px) {
    .frame {
        max-width: 300px !important;
    }
}

/* Footer */
footer {
    background-color: #373435;
}

footer p {
    color: #fff;
    letter-spacing: 1.3px;
}
.row-footer {
    justify-content: space-between;
}
.row-end {
    text-align: center;
}
.info {
    color: #F47E57;
    font-size: 2.5rem;
    padding: 0 10px;
}
.redes {
    color: #F47E57;
    font-size: 4rem;
    padding: 0 20px;
}