@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900&display=swap');

:root {
    --main-accent-color: #F4C414;
    --section-title-color-dark: #242424;
    --body-color: #495057;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
}

p{
    font-size: 1.2em !important;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.6rem;
    line-height: 4rem;
    font-weight: 800;
}

.btn-white {
    border: 2px solid #fff;
    border-radius: 2rem;
    color: #fff;
    font-weight: 600;
    text-transform: lowercase;
    font-size: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-white:hover {
    background-color: #fff;
    color: var(--main-accent-color);
    border: 2px solid #fff;
}

.sections{
    transition: all .4s;
}

/* Section title */

.section-title {
    position: relative;
}

h2.section-title-heading {
    color: var(--section-title-color-dark);
    padding-top: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    border-bottom: 2px solid var(--main-accent-color);
    width: 8%;
    top: 80px;
}

.section-title:hover::after {
    width: 12%;
    transition: all 0.6s ease-out;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
}


/* ============ IMAGENS =============== */

img[data-src] {
    opacity: 0;
    transform: scale(0);
}

img[src] {
    opacity: 1;
    transform: scale(1);
    transition: .3s ease-in-out;
}

/* ============ NAVIGATION =============== */

.navbar {
    padding-top: 1.2rem;
    transition: 1s;
}

.navbar-brand img{
    width: 150px;
    transition: .3s ease-in-out;
}

.fa-bars{
    color:#fff; 
    border:none; 
    font-size:28px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .85rem;
}

.logo-none img{
    display: none !important;
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
    color: #F4C414;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;..");
}



.navbar.active{
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 1px 2px 10px rgba(0,0,0,0.1);
    transition: 1s;
    color: #fff;
}

/* ============ HERO =============== */

#start {
    background-image: linear-gradient(to right, rgba(0,0,0), rgba(0,0,0,0.9),  rgba(0,0,0, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
}

#start::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    height: 14%;
    transform: skewY(-2deg);
    transform-origin: bottom right;
    bottom: 0;
    right: 0;
    left: 0;
}

#start h2{
    color: #fff;
}

.main-hero-content h1 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .11rem;
}

.main-hero-content p {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height: 1.7rem;
    font-size: 1.2rem;
}

.image-box img {
    position: absolute;
    left: 6rem;
    top: 4rem;
    z-index: 1;
}

/* ============ ABOUT =============== */

#about i {
    color: var(--main-accent-color);
    padding: 4%;
}

#about h3 {
    color: var(--section-title-color-dark);
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
}

#about p {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.7rem;
}

/* ============ Services =============== */

#services {
    background-color: #e2e2e2;
    padding-bottom: 6rem;
    padding-top: 4rem;
    margin-top: 6rem;
}

#services .device img {
    margin-top: 50%;
}

#services img {
    display: block;
    margin: 0 auto;
    transition: all 0.5s;
    cursor: pointer;
    position:relative;
}

#services .service-block {
    text-align: center;
}

#services .service-block h3 {
    color: var(--section-title-color-dark);
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
}

#services .service-block img {
    padding-bottom: 1rem;
}

#services .service-block p {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.7rem;
}

/* ============ PHOTOS CARS =============== */


#photoscars {
    background-image: linear-gradient(to right, rgba(0, 0, 0), rgba(0,0,0, 0.8)), url('../img/photoscar.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 12rem;
    padding-top: 4rem;
    position: relative;
}

#photoscars h2{
    color: #fff;
}

.miniaturas .col-sm{
    display: inline;
}

.miniaturas img{
    margin: 1rem;
    max-width: 150px;
    border: solid #F4C414 1px;
    transition: .3s;
    cursor: pointer;
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
    filter: gray;
}

.miniaturas img:hover{
    -webkit-filter: none;	
    filter: none;	
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

/* ============ Contact =============== */
#contact {
    background-color: #e2e2e2;
    padding-bottom: 10rem;
    padding-top: 1rem;
    position: relative;
}


#contact::before {
    content: '';
    position: absolute;
    background-color: #E2E2E2;
    width: 100%;
    height: 20%;
    transform: skewY(-2deg);
    transform-origin: top right;
    top: -6rem;
    right: 0;
    left: 0;
}

#contact h3{
    font-size: 1.2rem;
}

#contact .contact-details ul li {
    padding-bottom: .6rem;
}

#contact .contact-details ul li i {
    color: #242424;
    font-size: 1.2rem;
    margin-right: 10px;
}

.contact-details .social-icons a{
    color: #242424;
    font-size: 2.4rem;
}

.contact-details .social-icons .fa-whatsapp:hover{
    color: #43c654;
    transition: .3s;
}

.contact-details .social-icons .fa-facebook:hover{
    color: #4064ac;
    transition: .3s;
}

.contact-details .social-icons .fa-instagram:hover{
    color: #e70032;
    transition: .3s;
}


/* ============ Footer =============== */
#footer {
    background-color: #2b323f;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    background-color: #2b323f;
    width: 100%;
    height: 52%;
    transform: skewY(-2deg);
    transform-origin: top right;
    top: -5.5rem;
    right: 0;
    left: 0;
}

.social-icons{
    font-size: 24px;
}

#footer .footer-logo img {
    margin-top: -4.5rem;
}

.footer-logo img {
    padding: 30px 0px 30px 0px;
    max-width: 200px;
}

#footer .social-icons {
    margin-top: -1rem;
}

#footer .social-icons a {
    margin-right: 10px;
    color: #8d8c8c;
}

.copyright {
    margin-top: 1rem;
    color: #ffffff;
    font-size: .9rem;
}