:root {
    --light-red: #F23545;
    --dark-red: #BF3641;
    --light-blue: #548DBF;
}

/* GENERALS */ 
html {
    scroll-behavior: smooth;
}

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

.row {
    margin: 0;
}

p, li {
    font-size: 14px;
}

/* NAVBAR */
#nav-container {
    background-color: var(--dark-red);
}

.logo {
    width: 100px;
}

#hashimoto-name {
    color: white;
}

#navbar-links a {
    color: #FFF;
    font-size: 18px;
    position: relative;
    display: block;
}

#navbar-links li a + a {
    margin-left: 16px;
}

#navbar-links li a::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: #FEFEFE;
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    transform: scaleX(0);
}
#navbar-links a:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

#navbar-links a:hover {
     color: rgb(212, 212, 212);
     transition: 0.5s;
}

.navbar-toggler-icon {
    display: block;
    border-top: 3px solid var(--light-red);
    margin-top: 10px;
}

.navbar-toggler-icon::after, .navbar-toggler-icon::before {
    content: " ";
    display: block;
    height: 3px;
    background-color: var(--light-red);
    margin-top: 10px;
}

/* SLIDER */
#carousel-container {
    background: rgb(0, 0, 0);
}

.carousel-item img {
    height: 60vh;
}

#carousel-info {
    height: 50vh;
}

.main-btn {
    background-color: var(--dark-red);
    color: #fff;
    padding: 15px 25px;
    box-shadow: 0 0 40px 40px rgb(245, 56, 56) inset, 0 0 0 0 rgb(245, 56, 56);
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
}

.main-btn:hover {
    background-color: transparent;
    color: #FFF;
    border: 3px solid var(--dark-red);
    box-shadow: 0 0 10px 0 rgb(245, 56, 56) inset, 
    0 0 10px 4px rgb(245, 56, 56);
}

.main-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.main-btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.main-btn:hover span {
    padding-right: 25px;
}
  
.main-btn:hover span:after {
    opacity: 1;
    right: 0;
}

/* ABOUT US */
.main-title {
    color: var(--dark-red);
}

.main-title:after {
    content: "";
    width: 200px;
    height: 2px;
    background-color: currentColor;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.about-containers {
    transition: 0.5s;
}

/* SOLAR ENERGY */
#solar-energy {
    background-color: rgba(233, 233, 233, 0.389);
}

.process-img {
    width: 100%;
    box-shadow: 0px 21px 19px -8px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1em;
}

/* SERVICES */
#services {
    background-color: var(--light-red);
}

.card {
    border: 0px;
    transition: all 0.5s;
    background-color: black;
}

.card:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.card-img-top {
    filter: drop-shadow(0 0 3px #000);
}

/* BENEFITS */
#apply-area {
    height: 100vh;
}

#apply-area .container-fluid, #apply-area .row {
    height: 100%;
}

#benefits-img {
    background-size: cover;
    height: 100%;
    background-image: url(/assets/img/pexels-jonas-ferlin-3025562.jpg);
}

#benefits-container {
    padding: 70px 50px;
}

#benefits-container {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

#benefits-icons {
    margin-bottom: 40px;
}

.p-icons {
    font-size: 18px;
}

.fa-hand-holding-dollar, .fa-coins {
    margin-bottom: 40px;
    color: rgb(0, 255, 0);
}

/* PROJECTS */

/* BUDGET */ 
#budget-img {
    background-attachment: static;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url(/assets/img/pexels-breakingpic-3305.jpg);
}

#whatsapp-icon {
    color: rgb(0, 255, 0);
}

#whatsapp-icon:hover {
    background-color: transparent;
}

.whatsapp-name {
    font-size: 35px;
}

/* FOOTER */
footer {
    background-color: var(--dark-red);
    color: white;
}

#social-networks:hover {
    color: var(--light-red);
}

.phone {
    color: white;
}

.phone:hover {
    color: rgb(177, 195, 255);
}

.footers-p {
    font-size: 18px;
}

/* OTHERS */
.copyright {
    font-family: roboto, arial, helvetica;
    font-size: 15px;
    background-color: var(--light-red);
}

.arrow-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
}

.arrow-btn a {
    background-color: var(--light-blue);
    height: 39px;
    width: 37px;
    text-align: center;
    display: block;
    border-radius: 100%;
}

.arrow-btn a span {
    line-height: 35px;
    font-size: 25px;
    color: #FFF;
}

.whatsapp-fixed {
    right: 0;
    position: fixed;
    top: 50%;
    transform: translate(0px, -50%);
}


/* RESPONSIVE */
@media (max-width: 1618px) {
    #apply-area {
        height: auto;
    }

    #img-container {
        display: none;
    }

    #benefits-container {
        width: 100%;
    }

    .p-icons {
        margin-bottom: 75px;
    }
}

@media (max-width: 1400px) {
    #about-containers {
        padding: 1px;
    }

    #about-icons {
        margin-top: 50px;
    }
}

@media (max-width: 1200px) {
    .process-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    #navbar-links a {
        font-size: 23px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .p-icons {
        margin-bottom: 75px;
    }
}

@media (max-width: 425px) {
    #hashimoto-name {
        font-size: 20px;
    }

    .adress, .cep-adress, .company-email, .tell {
        font-size: 18px;
    }
}