@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap");

.no-sm {
    display: none;
}

.only-sm {
    display: block;
}

@media all and (min-width: 800px) {
    .no-sm {
        display: block;
    }

    .only-sm {
        display: none;
    }
}

.flex,
.container.flex {
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

.f-sb {
    justify-content: space-between;
}

.f-ac {
    align-items: center;
}

.mb-2 {
    margin-bottom: 1em;
}

.mb-4 {
    margin-bottom: 2em;
}

.mt-2 {
    margin-top: 1em;
}

.mt-4 {
    margin-top: 2em;
}

.strong {
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-family: "Cabin", sans-serif;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding-top: var(--top-bar-height);
    flex: 1;
}

/************MAIN MENU************/
.header {
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: var(--top-bar-height);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
}

.logo {
    height: 40px;
}

.logo-footer {
    height: 75px;
}

/************FOOTER************/
.footer {
    background: black;
    padding: 2em 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: var(--color-grey-5);
}

.footer .presupuestoBtn {
    color: white;
    cursor: pointer;
}

.footer .presupuestoBtn:hover {
    text-decoration: underline;
}

.footer .company {
    font-weight: bold;
    color: white;
}

img {
    max-width: 100%;
}

h1,
h2,
h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 48px;
    font-weight: 100;
}

h1 .sub {
    margin-top: 0.5em;
    font-size: 50%;
    font-weight: 100;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 70px;
}

h2 .subtitle {
    margin-top: 0.5em;
    font-size: 50%;
    font-weight: 100;
}

h3 {
    font-size: 24px;
}

.container {
    display: block;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.flex-container {
    display: flex;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: -3em;
    gap: 1em;
}

.flex-container > * {
    margin: 3em auto 0 auto;
}

.flex-container.fc-align-top {
    align-items: flex-start;
}

.flex-container-2 {
    display: flex;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-container-2 > * {
    margin: 0 auto;
}

.text-box {
    width: 100%;
    max-width: 450px;
}

.text-box-sm {
    max-width: 350px;
}

.image-box {
    max-width: 600px;
    text-align: center;
}

.image-box img {
    max-width: 90%;
}

.section {
    padding-top: 8em;
    padding-bottom: 8em;
}

.section-sm {
    padding-top: 3em;
    padding-bottom: 8em;
}

.grey-bg {
    background-color: var(--color-grey-9);
}

/********MENU PRINCIPAL**********/
nav#main {
    flex: 1;
    max-width: 900px;
}

#menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0 1em;
    padding: 0 0.5em;
    flex: 1;
}

#menu li {
    flex: 1;
    display: flex;
    justify-content: center;
}

#menu a,
#menu .a {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5em 0.5em;
}

#menu a:hover,
#menu .a:hover {
    color: var(--color-grey-4);
}

#menu .hover-pannel {
    padding: 0.5em 1em;
    display: none;
    position: absolute;
}

#menu .hover-pannel .box {
    padding: 0.5em 1em;
    margin-top: 2em;
    background-color: #fff;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
}

#menu .hover-pannel li {
    margin: 1em 0;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation a.cta_negre {
    background-color: black;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    height: auto;
    padding: 0.5em 1em;
    transition: background-color 0.3s ease;
}

.navigation a.cta_negre:hover {
    background-color: var(--color-grey-4);
}

nav#mbl #toggleMblMenuBtn {
    font-weight: bold;
    text-decoration: underline;
}

nav#mbl .nav-pannel {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 1em;
    display: none;
}

nav#mbl .nav-pannel ul {
    margin-top: 0.5em;
    padding: 0.5em;
    background-color: #fff;
    list-style: none;
    border-radius: 5px;
    box-shadow: 5px 5px 10px -4px black;
}

nav#mbl .nav-pannel li {
    padding: 0.5em;
}

nav#mbl .nav-pannel .nav-title {
    margin-top: 1em;
    color: var(--color-grey-4);
}

nav#mbl .nav-pannel a {
    padding: 1em;
}

@media (max-width: 500px) {
    .logo {
        height: 28px;
    }

    .navigation a.cta_negre {
        padding: 0.25em 0.25em;
        font-size: 85%;
    }
}

:root {
    --screen-sm: $screen-sm;
    --top-bar-height-small: 55px;
    --top-bar-height-large: 70px;
    --color-grey-1: #212121;
    --color-grey-2: #424242;
    --color-grey-3: #616161;
    --color-grey-4: #757575;
    --color-grey-5: #9e9e9e;
    --color-grey-5: #9e9e9e;
    --color-grey-6: #bdbdbd;
    --color-grey-7: #e0e0e0;
    --color-grey-8: #eee;
    --color-grey-9: #f5f5f5;
    --color-grey-10: #fafafa;
}

* {
    box-sizing: border-box;
}

@media screen and (min-width: 800px) {
    :root {
        --top-bar-height: var(--top-bar-height-large);
    }
}

@media screen and (max-width: 800px) {
    :root {
        --top-bar-height: var(--top-bar-height-small);
    }
}

/************CONTACTAR MODAL******/
.presupuestoLayer {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    display: none;
}

.presupuestoWrapper {
    max-width: 90%;
    width: 520px;
    margin: auto;
    box-shadow: 5px 5px 15px black;
    background-color: white;
    border-radius: 5px;
}

.presupuestoCloseBtn {
    cursor: pointer;
    width: 20px;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.presupuestoCloseBtn:hover {
    opacity: 0.7;
}

.contact-form {
    margin: 1em;
}

.contact-form h3 {
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    text-align: left;
}

.contact-form label {
    font-size: 90%;
    letter-spacing: 1px;
    color: var(--color-grey-4);
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    font-family: sans-serif;
    width: 100%;
    resize: none;
    border: none;
    background-color: var(--color-grey-9);
    border-radius: 5px;
    padding: 0.5em;
    margin-bottom: 1em;
}

.contact-form textarea {
    height: 6em;
}

.contact-form input[type=submit] {
    width: auto;
    margin-top: 0.5em;
    padding: 0.5em 1em;
    cursor: pointer;
    background-color: #000;
    color: white;
    transition: background-color 0.25s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-form input[type=submit]:hover {
    background-color: var(--color-grey-3);
}

.hero {
    display: flex;
    padding: 2em 1em 2em 1em;
    align-items: center;
    text-shadow: 3px 3px 6px black;
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    /* your image */
    background-size: cover;
    background-position: 50% 33%;
    min-height: 60vh;
    color: white;
    font-size: 200%;
    max-width: 1600px;
    margin: auto;
}

.hero h1 {
    font-weight: 100;
  font-family: 'Muli', cabin;

font-size: 48px;
    margin-top: -1.5em;
    margin-bottom: 2em;
}

.hero p {
    font-size: 1em;
    font-weight: 100;
}

.hero .text-container {
    display: inline-block;
    margin: 0 auto;
    padding-top: 2em;
    padding-bottom: 3em;
    min-width: 300px;
}

.hero .hero-btn {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    margin: -0.5em auto 2em auto;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 5px;
    padding: 0.75em 1.5em;
    transition: background-color 0.25s ease;
    min-width: 237px;
}

.hero .hero-btn .phone {
    width: 20px;
    height: 20px;
    margin-right: 1em;
}

.hero .hero-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

img.full-width {
    width: 100%;
    max-height: 65vh;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
}

.experience-text {
    max-width: 600px;
}

.menu_productes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-grey-9);
    padding: 0.25em;
    border-radius: 1.5em;
}

.menu_productes li {
    margin: 0 1em;
    cursor: pointer;
    flex: 1;
    list-style: none;
    padding: 0.5em 1em;
    border-radius: 1em;
    color: var(--color-grey-5);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.menu_productes li:hover {
    color: white;
    background-color: black;
}

.menu_productes li.active {
    background-color: var(--color-grey-9);
    color: black;
}

.productBox {
    margin-bottom: 6em;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 1em;
}

.productBox > * {
    margin-top: 30px;
}

.productBox .image {
    width: 350px;
    text-align: center;
    max-width: 100%;
}

.productBox .image img {
    max-width: 90%;
}

.productBox ul {
    padding-left: 2em;
}

.productBox h3 {
    color: var(--color-grey-6);
}

.productBox h6 {
    margin: 1em 0;
}

.productBox .product_description .sub {
    text-decoration: underline;
}

/************PRODUCTS************/
.products_main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_menu_contanier {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.product_image {
    height: 500px;
}

.product_text_main {
    flex-flow: row wrap;
    min-width: 250px;
    flex: 1;
}

.product_header {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    width: 100%;
    font-size: 2em;
}

.product_header .product_power {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.5em;
    font-weight: bold;
}

.product_name {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    flex: 1;
}

ul,
li {
    margin: 0;
    padding: 0;
}

.barCard {
    max-width: 20%;
}

.experience_title {
    width: 16%;
}

.experience_detail {
    width: 26%;
}

.bar6boxes {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1em;
}

.process_box {
    background-color: var(--color-grey-10);
    max-width: 600px;
    width: 90%;
    margin: 1em auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    box-shadow: 2px 2px 12px -7px rgba(0, 0, 0, 0.4);
}

/************Baterias**********/
.battery_image {
    width: 70%;
}

/* Medium screens */
@media all and (min-width: 600px) {

    /* We tell both sidebars to share a row */
    .aside {
        flex: 1 auto;
    }
}

/*# sourceMappingURL=style.css.map */
