/*BACK TO TOP*/
.back-to-top {
    cursor: pointer;
    box-shadow: 0 2px 5px #000;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    bottom: 60px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #795548;
    z-index: 999;
    opacity: 0;
    transition: background-color .3s, opacity .5s, visibility .5s;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#button {
    position: relative;
    transition: 0.3s;
}

#button .fa-chevron-up {
    position: relative;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.back-to-top:hover #button {
    margin-top: -15px;
}

/*NAVIGATION*/
#nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px 0;
    width: 300px;
    height: 100%;
    background-color: #483129;
    /*filter: drop-shadow(0px 0px 20px #111);*/
    z-index: 1;
}

#nav .hamburger {
    display: none;
}

#nav ul {
    padding-left: 50px;
    margin: 0;

}

#nav ul li {
    list-style: none;
    margin: 60px 0;
}

#nav ul li a {
    text-decoration: none;
    color: #dec8bb;
    font-family: Montserrat;
}

.logo {
    width: 100%;
    margin-top: -30px;
}

.logo img {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.underline {
    padding-bottom: 5px;
    border-bottom: 3px solid #cdae9c;
}

.nav-social-media {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: -30px;
}

.nav-social-media .phone {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.nav-social-media .phone .fa-mobile-alt {
    color: #fff;
}

.nav-social-media .phone:hover {
    background-color: #fff;
}

.nav-social-media .phone:hover .fa-mobile-alt {
    color: #483129;
}


.nav-social-media .mail {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    margin: 0 50px;
}

.nav-social-media .mail .fa-envelope {
    color: #fff;
}

.nav-social-media .mail:hover {
    background-color: #fff;
}

.nav-social-media .mail:hover .fa-envelope {
    color: #673AB7;
}

.nav-social-media .facebook {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.nav-social-media .facebook .fa-facebook-f {
    color: #fff;
}

.nav-social-media .facebook:hover {
    background-color: #fff;
}

.nav-social-media .facebook:hover .fa-facebook-f {
    color: #4267B2
}

/*FOOTER*/

#footer {
    background-color: #111;
    position: absolute;
    bottom: 0;
    height: 50px;
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: center;
}

#footer p {
    color: #fff;
    font-family: Montserrat-Medium;
    font-size: 0.9rem;
    margin-bottom: 0;
}

#footer a {
    color: #fff;
}

#footer .info-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .phone {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    margin-right: 5px;
}

#footer .phone .fa-mobile-alt {
    color: #fff;
}

#footer .phone:hover {
    background-color: #fff;
}

#footer .phone:hover .fa-mobile-alt {
    color: #483129;
}


#footer .mail {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}

#footer .mail .fa-envelope {
    color: #fff;
}

#footer .mail:hover {
    background-color: #fff;
}

#footer .mail:hover .fa-envelope {
    color: #673AB7;
}

#footer .facebook {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    margin-left: 5px;
}

#footer .facebook .fa-facebook-f {
    color: #fff;
}

#footer .facebook:hover {
    background-color: #fff;
}

#footer .facebook:hover .fa-facebook-f {
    color: #4267B2
}

/*HOME PAGE*/

.home {
    height: 100vh;
}


.info {
    display: inline-block;
    position: relative;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.title-home h1 {
    font-family: Montserrat-SemiBold;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.info-buttons {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 50px;
    font-family: Montserrat-Medium;
    font-size: 0.9rem;
}

.home .info-contact {
    margin-top: 25px;
}

.button-gallery,
.button-shop,
.button-contact {
    padding: 10px 0;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: 0.5s all;
}

.button-gallery {
    background-color: #483129;
    border: 2px solid #483129;
    margin-right: 50px;
}

.button-gallery:hover {
    background: #3b2720;
    border-color: #3b2720;
}

.button-shop:hover {
    background: #dfd7b8;
    border-color: #dfd7b8;
}

.button-contact:hover {
    background: rgba(0, 0, 0, 0.5);
}

.button-gallery p,
.button-shop p,
.button-contact p {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0;
}

.button-shop {
    background-color: #F0EAD2;
    border: 2px solid #F0EAD2;
}

.button-shop p {
    color: #2B211F;
}

.button-contact {
    width: 450px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;

}

#home-carousel {
    width: calc(100% - 300px);
    height: 100vh;
    position: absolute;
    top: 0;
}

#home-carousel .carousel-inner {
    height: 100%;
}

#home-carousel .w-100 {
    height: 100vh;
    object-fit: cover;
}

/*ABOUT US*/

.about {
    padding-top: 50px;
    height: 100%;
}

.title-about {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
}

.title-about h1 {
    display: inline;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: Montserrat-SemiBold;
    border-bottom: 5px solid #f0ead2;
    padding-bottom: 5px;
}

.about .row {
    padding: 0;
    margin: 0;
}

.about .col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    height: 500px;
    background-color: #2B211F;
    color: #F0EAD2;
}

.about .info-text {
    padding: 0 50px;
}

.about .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .col h2 {
    font-family: Montserrat-Medium;
    font-size: 1.8rem;
}

.about .col p {
    font-family: Montserrat;
    margin-bottom: 0;
}

/*GALLERY*/

.gallery {
    padding-top: 50px;
}

.title-gallery {
    margin-bottom: 100px;
    text-align: center;
}

.title-gallery h1 {
    display: inline;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: Montserrat-SemiBold;
    border-bottom: 5px solid #f0ead2;
    padding-bottom: 5px;
}


.category ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.category ul li {
    margin: 10px 25px;
    list-style: none;
}


.category ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: Montserrat-Medium;
    padding: 5px 10px;
}

.category ul li a.active {
    border: 2px solid #dec8bb;

}

.content {
    margin-top: 50px;
    margin-bottom: 100px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    justify-content: center;
    column-gap: 25px;
    row-gap: 25px;
    height: auto !important;

}

.box-photo {
    position: initial !important;
    width: 100%;
    height: 280px;
    overflow: hidden;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.box-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.box-photo img:hover {
    transform: scale(1.1);
}

.text-alert {
    position: relative !important;
    display: block !important;
    color: white;
    left: 0 !important;
    top: 0 !important;
}

/*CONTACT*/

#contact {
    padding-top: 50px;
}

#contact .title-contact {
    margin-bottom: 100px;
    text-align: center;
}

#contact .title-contact h1 {
    display: inline;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: Montserrat-SemiBold;
    border-bottom: 5px solid #f0ead2;;
    padding-bottom: 5px;
}

#contact .row {
    margin: 0 50px;
}

#contact-form h3 {
    color: #f0ead2;
    font-family: Montserrat-Medium;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

#contact-form .form-control {
    background-color: #f0ead2;
    color: #000;
}

#contact-form .is-danger {
    background-color: #f8d7da;
}

#contact-form label {
    font-family: Montserrat;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

#contact-form .name-email {
    display: grid;
    grid-template-columns: 50% auto;
    grid-column-gap: 10px;
    margin-top: 50px;
}

#contact-form .btn {
    font-family: Montserrat-Medium;
    background-color: #795548;
    color: #fff;
    margin-left: 0;
}

#contact .alert-danger {
    margin-top: 30px;
}

#contact .second-col {
    margin-left: 50px;
}

#contact .contact-us h3 {
    color: #f0ead2;
    font-family: Montserrat-Medium;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

#contact .contact-us p {
    font-family: Montserrat;
    color: #fff;
}

#contact .date-contact p:nth-child(2) {
    margin-top: 50px;
}

#contact .contact-us span {
    color: #fff;
    font-family: Montserrat-SemiBold;
    margin-right: 5px;
}

#contact .phone {
    display: flex;
}

#contact .program {
    margin-top: 50px;
}

#contact .program p:nth-child(2) {
    margin-top: 50px;
}

#map {
    margin-top: 50px;
}

#map iframe {
    width: 100%;
    height: 800px;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media screen and (min-width: 2560px) {
    .container {
        max-width: 1500px;
    }

    /*NAV*/
    #nav {
        width: 350px;
        z-index: 2;
    }

    .logo img {
        width: 230px;
    }

    #nav ul {
        padding-left: 75px;
    }

    #nav ul li {
        margin: 60px 0;
    }

    #nav ul li a {
        font-size: 1.1rem;
    }

    /*BODY*/
    #content-wrap {
        width: calc(100% - 350px);
        margin-left: 350px;
        padding-bottom: 60px;
    }

    /*FOOTER*/
    #footer {
        height: 60px;
        width: calc(100% - 350px);
    }

    #footer p {
        font-size: 1rem;
    }

    #footer .phone {
        margin-right: 10px;
    }

    #footer .facebook {
        margin-left: 10px;
    }

    #footer .phone .fa-mobile-alt, #footer .mail .fa-envelope, #footer .facebook .fa-facebook-f {
        font-size: 1.2rem;
    }

    /*HOME*/
    .title-home h1 {
        font-size: 3rem;
    }

    .button-gallery, .button-contact, .button-shop {
        padding: 13px 0;
    }

    .button-gallery p,
    .button-contact p,
    .button-shop p {
        font-size: 1.1rem;
    }

    #home-carousel {
        width: calc(100% - 350px);
    }

    /*ABOUT-US*/
    .title-about h1 {
        font-size: 3rem;
    }

    .about .col h2 {
        font-size: 2rem;
    }

    .about .col p {
        font-size: 1.2rem;
    }

    /*GALLERY*/
    .title-gallery h1 {
        font-size: 3rem;
    }

    .category ul li a {
        font-size: 1.5rem;
    }

    .gallery-images {
        justify-content: center;
        grid-template-columns: repeat(3, 450px);
    }

    .box-photo {
        height: 300px;
    }

    /*MODELS*/
    .title-models h1 {
        font-size: 3rem;
    }

    .models-images {
        justify-content: center;
        grid-template-columns: repeat(3, 450px);
    }

    /*CNC*/
    .title-cnc h1 {
        font-size: 3rem;
    }

    .cnc-images {
        justify-content: center;
        grid-template-columns: repeat(3, 450px);
    }

    /*MDF*/
    .title-mdf h1 {
        font-size: 3rem;
    }

    .mdf-images {
        justify-content: center;
        grid-template-columns: repeat(3, 450px);
    }

    /*CONTACT*/
    .title-contact h1 {
        font-size: 3rem;
    }

    #contact-form h3, #contact .contact-us h3, #contact .contact-us h3 {
        font-size: 2rem;

    }

    #contact .contact-us p, #contact-form label {
        font-size: 1.2rem;
    }

    #contact-form .btn {
        font-size: 1rem;
    }
}

@media screen and (min-width: 3500px) {
    #nav {
        width: 450px;
    }

    .logo img {
        width: 300px;
    }

    #nav ul li {
        margin: 80px 0;
    }

    #nav ul li a {
        font-size: 1.5rem;
    }

    .nav-social-media .mail {
        margin: 0 80px;
    }

    .nav-social-media .phone, .nav-social-media .mail, .nav-social-media .facebook {
        width: 45px;
        height: 45px;
    }

    .nav-social-media .phone .fa-mobile-alt, .nav-social-media .mail .fa-envelope, .nav-social-media .facebook .fa-facebook-f {
        font-size: 1.5rem;
    }

    .title-home h1 {
        font-size: 4.5rem;
    }

    .button-gallery,
    .button-shop {
        width: 250px;
    }

    .button-contact {
        width: 550px;
    }

    .button-gallery p,
    .button-contact p,
    .button-shop p  {
        font-size: 1.5rem;
    }

    #home-carousel {
        width: calc(100% - 450px);
    }

    #content-wrap {
        width: calc(100% - 450px);
        margin-left: 450px;
        padding-bottom: 80px;
    }

    #footer {
        height: 80px;
        width: calc(100% - 450px);
    }

    #footer p {
        font-size: 1.3rem;
    }

    #footer .phone {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    #footer .mail {
        width: 45px;
        height: 45px;
    }

    #footer .facebook {
        width: 45px;
        height: 45px;
        margin-left: 15px;
    }

    #footer .phone .fa-mobile-alt, #footer .mail .fa-envelope, #footer .facebook .fa-facebook-f {
        font-size: 1.5rem;
    }

    .title-about {
        margin-bottom: 200px;
    }

    .title-about h1 {
        font-size: 4rem;
    }

    .about .col {
        height: 700px;
    }

    .about .info-text {
        padding: 0 100px;
    }

    .about .col h2 {
        font-size: 2.5rem;
    }

    .about .col p {
        font-size: 1.5rem;
    }

    .container {
        max-width: 2000px;
    }

    .title-gallery {
        margin-bottom: 200px;
    }

    .title-gallery h1 {
        font-size: 4rem;
    }

    .category ul li a {
        font-size: 1.8rem;
    }

    .gallery-images {
        grid-template-columns: repeat(3, 600px);
    }

    .box-photo {
        height: 400px;
    }

    .title-models {
        margin-bottom: 200px;
    }

    .title-models h1 {
        font-size: 4rem;
    }

    .models-images {
        grid-template-columns: repeat(3, 600px);
    }

    .title-cnc {
        margin-bottom: 200px;
    }

    .title-cnc h1 {
        font-size: 4rem;
    }

    .cnc-images {
        grid-template-columns: repeat(3, 600px);
    }

    .title-mdf h1 {
        font-size: 4rem;
    }

    .mdf-images {
        grid-template-columns: repeat(3, 600px);
    }

    .title-contact h1 {
        font-size: 4rem;
    }

    #contact-form h3, #contact .contact-us h3, #contact .contact-us h3 {
        font-size: 2.5rem;
    }

    #contact .contact-us p, #contact-form label {
        font-size: 1.5rem;
    }

    #contact .contact-us p, #contact-form label {
        font-size: 1.8rem;
    }

    #map {
        margin-top: 100px;
    }

    #map iframe {
        height: 1200px;
    }
}

@media screen and (max-width: 1500px) {
    #nav {
        width: 280px;
        padding: 25px 0;
    }

    .logo img {
        width: 180px;
    }

    #nav ul li a {
        font-size: 0.9rem;
    }

    .nav-social-media .phone, .nav-social-media .mail, .nav-social-media .facebook {
        width: 30px;
        height: 30px;
    }

    .nav-social-media .mail {
        margin: 0 50px;
    }

    .nav-social-media .phone .fa-mobile-alt, .nav-social-media .mail .fa-envelope {
        font-size: 0.9rem;
    }

    #footer {
        width: calc(100% - 280px);
    }

    #footer p {
        font-size: 0.8rem;
    }

    #footer .phone, #footer .mail, #footer .facebook {
        width: 30px;
        height: 30px;
    }

    #footer .phone .fa-mobile-alt, #footer .mail .fa-envelope {
        font-size: 0.9rem;
    }

    #content-wrap {
        width: calc(100% - 280px);
        margin-left: 280px;
    }

    .title-home h1 {
        font-size: 2.2rem;
    }

    #home-carousel {
        width: calc(100% - 280px);
    }

    .info-buttons {
        margin-top: 30px;
    }

    .button-gallery,
    .button-shop {
        padding: 12px 0;
        width: 180px;
    }

    .button-contact {
        padding: 12px 0;
        width: 410px;
    }

    .button-gallery p,
    .button-contact p,
    .button-shop p {
        font-size: 0.8rem;
    }

    .title-about h1, .title-gallery h1, .title-models h1, .title-cnc h1, .title-mdf h1, .title-contact h1 {
        font-size: 2rem;
    }

    .maintenance {
        font-size: 1.8rem;
    }

    .about .col {
        height: 400px;
    }

    .about .col h2 {
        font-size: 1.6rem;
    }

    .about .col p {
        font-size: 0.9rem;
    }

    .category ul li a {
        font-size: 1rem;
    }

    .gallery-images, .models-images, .cnc-images, .mdf-images {
        grid-template-columns: repeat(2, 400px);
    }

    #contact-form h3, #contact .contact-us h3 {
        font-size: 1.5rem;
    }

    #contact-form label {
        font-size: 0.9rem;
    }

    #contact-form .btn {
        font-size: 0.7rem;
        padding: 10px 20px;
    }

    #contact .contact-us p {
        font-size: 0.9rem;
    }

    #map iframe {
        height: 600px;
    }
}

@media screen and (max-width: 1200px) {
    .back-to-top {
        width: 45px;
        height: 45px;
    }

    #button .fa-chevron-up {
        font-size: 1.3rem;
    }

    #nav {
        overflow-y: scroll;
        left: -280px;
        transition: 0.5s ease-in-out;
        z-index: 3;
    }

    .nav-active {
        left: 0 !important;
    }

    #nav .hamburger {
        top: 5px;
        left: 5px;
        display: block;
        position: fixed;
    }

    .hamburger-box {
        width: 35px;
    }

    .hamburger.is-active:hover, .hamburger:hover {
        opacity: 1 !important;
    }

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        background-color: #f0ead2 !important;
        width: 35px !important;
        box-shadow: 1px 1px 1px #000;
    }

    .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
        box-shadow: initial;
    }

    .logo img {
        margin: 50px auto 0 auto;
    }

    #footer {
        width: 100%;
        z-index: 1;
    }

    #content-wrap {
        width: 100%;
        margin-left: 0;
    }

    .home {
        height: calc(100vh - 50px);
    }

    #home-carousel {
        width: 100%;
    }

    .title-home h1 {
        font-size: 2rem;
    }

    .title-about h1, .title-gallery h1, .title-models h1, .title-cnc h1, .title-mdf h1, .title-contact h1 {
        font-size: 1.8rem;
    }

    .button-gallery,
    .button-shop {
        width: 150px;
    }

    .button-contact {
        width: 350px;
    }

    .button-gallery p,
    .button-contact p,
    .button-shop p {
        font-size: 0.7rem;
    }

    .about .col {
        height: 350px;
    }

    .about .col h2 {
        font-size: 1.5rem;
    }

    .about .col p {
        font-size: 0.8rem;
    }

    #contact-form h3, #contact .contact-us h3 {
        font-size: 1.3rem;
    }

    #contact-form label {
        font-size: 0.8rem;
    }

    #contact .contact-us p {
        font-size: 0.8rem;
    }

}

@media screen and (max-width: 1000px) {

    .nav-social-media .phone .fa-mobile-alt, .nav-social-media .mail .fa-envelope {
        font-size: 0.8rem;
    }

    .nav-social-media .facebook .fa-facebook-f {
        font-size: 0.9rem;
    }

    .title-home h1 {
        font-size: 1.8rem;
    }

    .info-buttons {
        margin-top: 20px;
    }

    #footer p {
        font-size: 0.7rem;
    }

    #footer .phone .fa-mobile-alt, #footer .mail .fa-envelope {
        font-size: 0.8rem;
    }

    #footer .facebook .fa-facebook-f {
        font-size: 0.9rem;
    }

    .about .col {
        flex-basis: initial;
    }

    .about .middle-row {
        flex-direction: column;
    }

    .about .col-special {
        order: 2;
    }

    .about .info-text {
        padding: 0 100px;
    }

    .category ul li {
        margin: 10px 15px;
    }

    .gallery-images, .models-images, .cnc-images, .mdf-images {
        grid-template-columns: repeat(2, 320px);
    }

    .box-photo {
        height: 230px;
    }

    #contact .col {
        flex-basis: initial;
    }

    #contact .second-col {
        margin-left: 0;
        margin-top: 50px;
    }

    #contact-form h3, #contact .contact-us h3 {
        text-align: center;
    }

    #contact .p-special {
        position: relative;
        left: 9px;
    }

    #contact .contact-us p {
        text-align: center;
    }

    #contact .phone {
        justify-content: center;
    }

    #map iframe {
        height: 500px;
    }
}

@media screen and (max-width: 700px) {
    .title-home h1 {
        font-size: 1.6rem;
    }

    .button-gallery {
        margin-right: 30px;
    }

    .button-gallery,
    .button-shop {
        width: 130px;
    }

    .button-contact {
        width: 290px;
    }

    .title-about h1, .title-gallery h1, .title-models h1, .title-cnc h1, .title-mdf h1, .title-contact h1 {
        font-size: 1.5rem;
    }

    .about .info-text {
        padding: 0 50px;
        text-align: center;
    }

    .about .col h2 {
        font-size: 1.3rem;
    }

    .category ul li {
        margin: 10px 15px;
    }

    .gallery-images, .models-images, .cnc-images, .mdf-images {
        grid-template-columns: repeat(1, 380px);
    }

    .maintenance {
        font-size: 1.5rem;
    }

    #contact-form .name-email {
        grid-template-columns: 100%;
        grid-row-gap: 1rem;
    }
}

@media screen and (max-width: 500px) {
    #nav {
        height: 100vh;
        overflow-y: scroll;
        width: 250px;
        left: -250px;
    }

    .hamburger-box {
        height: 30px !important;
    }

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        height: 3px !important;
    }

    .logo img {
        width: 160px;
        margin: 20px auto 0 auto;
    }

    #nav ul li {
        margin: 40px 0;
    }

    #nav ul li a {
        font-size: 0.8rem;
    }

    .nav-social-media .phone, .nav-social-media .mail, .nav-social-media .facebook {
        width: 25px;
        height: 25px;
    }

    .nav-social-media .phone .fa-mobile-alt, .nav-social-media .mail .fa-envelope {
        font-size: 0.7rem;
    }

    .nav-social-media .facebook .fa-facebook-f {
        font-size: 0.8rem;
    }

    .title-home h1 {
        font-size: 1.3rem;
    }

    .button-gallery,
    .button-shop {
        width: 120px;
    }

    .button-contact {
        width: 270px;
    }

    .button-gallery,
    .button-shop,
    .button-contact {
        padding: 10px 0;
    }

    .button-gallery p,
    .button-contact p,
    .button-shop p {
        font-size: 0.6rem;
    }

    #footer {
        padding: 0 30px;
    }

    #footer a {
        display: flex;
    }

    #footer .phone, #footer .mail, #footer .facebook {
        width: 25px;
        height: 25px;
    }

    #footer .phone .fa-mobile-alt, #footer .mail .fa-envelope {
        font-size: 0.7rem;
    }

    #footer .facebook .fa-facebook-f {
        font-size: 0.8rem;
    }

    .about .col {
        height: 300px;
    }

    .about .col p {
        font-size: 0.7rem;
    }

    .title-gallery {
        margin-bottom: 50px;
    }

    .category ul {
        padding: 0 20px;
    }

    .category ul li {
        margin: 10px 5px;
    }

    .category ul li a {
        font-size: 0.8rem;
    }

    .title-about h1, .title-gallery h1, .title-models h1, .title-cnc h1, .title-mdf h1, .title-contact h1 {
        border-bottom: 3px solid #f0ead2;
    }

    .maintenance {
        font-size: 1.3rem;
    }

    .gallery-images, .models-images, .cnc-images, .mdf-images {
        grid-template-columns: repeat(1, 330px);
    }

    .back-to-top {
        right: 30px;
        width: 40px;
        height: 40px;
    }

    #button .fa-chevron-up {
        font-size: 1.2rem;
    }

    .grecaptcha-badge {
        box-shadow: initial !important;
    }

    #contact .row {
        margin: 0 30px;
    }
}
