/* @font-face {
    font-family: 'caviar';
    src: url('../fonts/CaviarDreams.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: 'caviar';
    src: url('../fonts/CaviarDreamsBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/GothamMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/GothamLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/GothamBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Variables de color */
:root {
    --primary: #103829;
    --secondary: #368930;
    --orange: #ff6600;
    --text-color: black;
}

html,
body {
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'caviar';
}

h1,
h2,
h3 {
    font-family: 'Raleway', sans-serif;
}

/* reset styles */

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: var(--orange);
}

img {
    max-width: 100%;
    user-select: none;
}

h1,
h2,
h3 {
    color: var(--primary);
}

strong {
    font-weight: 600;
}

.color-white {
    color: white;
}

#loader-page {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(20 20 20 / 90%);
    z-index: 100;
}

.loader-name {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -52px;
    font-size: 125%;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fefefe;
}

.loader-circle {
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    border-top: 5px solid #fefefe;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-radius: 50%;
    margin-top: -90px;
    margin-left: -90px;
    -webkit-animation: loader 1s infinite linear;
    animation: loader 1s infinite linear;
}

.grecaptcha-badge {
    display: none;
}

@-webkit-keyframes loader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes loader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Buttons */

.btn {
    background-color: var(--secondary);
    color: white;
    border-radius: 30px;
    padding: .5rem 2rem;
    border: 1px solid var(--secondary);
}

.btn:hover,
.btn:active,
.btn:focus {
    background-color: var(--orange);
    color: white;
    border: 1px solid var(--orange);
}

.btn-border {
    background-color: transparent;
    border: 1px solid white;
}

/* Header */

header {
    background-color: var(--primary);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 15%);
    z-index: 99;
}

.navbar-brand img {
    max-width: 100px;
}

.bg-responsive {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
}


.nav-icon {
    width: 20px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 50%;
    background: white;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

.nav-icon span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

.nav-icon span:nth-child(1),
.nav-icon span:nth-child(2) {
    top: 8px;
}

.nav-icon span:nth-child(3),
.nav-icon span:nth-child(4) {
    top: 15px;
}

.nav-icon span:nth-child(5),
.nav-icon span:nth-child(6) {
    top: 22px;
}

.nav-icon.open span:nth-child(1),
.nav-icon.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(2),
.nav-icon.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(1) {
    left: 2px;
    top: 10px;
}

.nav-icon.open span:nth-child(2) {
    left: calc(50% - 2px);
    top: 10px;
}

.nav-icon.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.nav-icon.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

.nav-icon.open span:nth-child(5) {
    left: 2px;
    top: 19px;
}

.nav-icon.open span:nth-child(6) {
    left: calc(50% - 2px);
    top: 19px;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-collapse {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3;
}

.navbar-nav {
    min-width: 250px;
    max-width: calc(100vw - 100px);
    width: 350px;
    margin-left: 0;
    height: 100%;
    background-color: white;
    will-change: transform;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    list-style: none !important;
    padding: 6rem 2rem 0;
    position: relative;
}

.navbar-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 4rem;
    background-color: var(--primary);
}

.navbar-nav::after {
    content: '';
    position: absolute;
    color: white;
    font-weight: 700;
    left: 2rem;
    top: .8rem;
    background-image: url(../img/logo.png);
    background-size: 100px;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
}

.show .navbar-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.4);
}

.show .bg-responsive {
    background-color: rgba(0, 0, 0, 0.8);
}

.hidde-menu .navbar-nav {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: none;
}

.hidde-menu .bg-responsive {
    background-color: transparent;
}

.navbar-nav ul {
    padding-left: 0;
}

.nav-link {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-color);
    padding: .7rem 0;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

/* End Header */


/* Search Menu */

.search-input {
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
}

.search-input:hover,
.search-input:active,
.search-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--primary);
}

.search-button {
    background-color: transparent;
    color: var(--text-color);
    border: none;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
}

/* End Search */

/* social menu */

.social-menu a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* End social menu */

main {
    padding-top: 69px;
}

/* Hero Carousel */

.hero-carousel {
    height: calc(100vh - 69px);
    max-height: 750px;
    position: relative;
}

.splide-hero,
.splide-hero .splide__slide,
.splide-hero .splide__track,
.splide-hero .splide__list {
    height: 100% !important;
}

.hero-carousel picture img,
.hero-carousel video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-carousel .splide__slide {
    position: relative;
}

.overley {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-caption-text {
    background-color: rgb(255 255 255 / 50%);
    padding: 2rem;
    border-radius: 30px;
    color: black;
}

.hero-title-1 {
    /* text-shadow: 1px 1px 15px rgb(0 0 0 / 40%); */
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    font-family: 'gotham';
}

.hero-description {
    font-weight: 400;
}

.hero-caption-text {
    opacity: 0;
    transform: translateX(-20%);
    transition: all 1s ease;
}

.is-visible .hero-caption-text {
    opacity: 1;
    transform: translateX(0);
}

.hero-caption {
    text-align: center;
}

.hero-caption .btn {
    transform: scale(0);
    opacity: 0;
    transition: opacity 1s ease;
    transition-delay: .5s;
}

.is-visible .hero-caption .btn {
    transform: scale(1);
    opacity: 1;
}

.hero-logo-white {
    max-width: 200px;
    opacity: 0;
    transform: translateX(20%);
    transition: all 1s ease;
}

.is-visible .hero-logo-white {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1s;
}

.hero-carousel .splide__arrow {
    background-color: transparent;
    opacity: .8;
}

.hero-carousel .splide__arrow svg {
    fill: black;
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .5));
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .5));
    width: 2rem;
    height: 2rem;
}

.hero-carousel .splide__slide {
    cursor: grab;
}

.hero-carousel .splide__slide:active {
    cursor: grabbing;
}

/*.hero-shape {
    position: absolute;
    bottom: -3px;
    height: 60px;
    width: 100%;
    transform: rotate(180deg);
}

.hero-shape svg {
    width: 100%;
    height: 100%;
}

.hero-shape svg path {
    fill: #fff;
}*/

/* End Hero Carousel */

/* Servicios */

.servicios h3 {
    color: var(--primary);
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'caviar';
}

/* End Servicios */

/* Banner 1 */
.banner-1 {
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.4;
}

.ficha-banner {
    color: var(--text-color);
    position: relative;
    text-align: center;
    background-color: rgb(255 255 255 / 70%);
    padding: 2rem;
    border-radius: 30px;
}

.ficha-banner h2 {
    color: var(--text-color);
}

/* End Banner 1 */

/* Carousel Productos */

.splide-productos {
    position: relative;
}

.splide-categoria {
    height: 500px;
    overflow: hidden;
    position: relative;
    display: block;
    background-color: black;
}

.splide-categoria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}

.splide-categoria-title {
    position: absolute;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    left: 0;
    bottom: 0;
    font-weight: 400;
}

.splide-productos .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: white;
    opacity: 1;
    transition: all .5s;
}

.splide-productos .splide__arrow svg {
    height: 1.5rem;
    width: 1.5rem;
    transition: all .5s;
}

.splide-categoria-title-primary {
    background-color: var(--primary);
}

.splide-categoria-title-secondary {
    background-color: var(--secondary);
}

.splide-categoria-title-orange {
    background-color: var(--orange);
}

/* End Carousel Productos */

/* Banner 2 */

.banner-2 {
    background-image: url(../img/banner-2.jpg);
    background-size: cover;
    background-position: center;
    color: white;
}

/* End Banner 2 */

/* Home Tejidos */

.home-tejidos {
    background-image: url(../img/tejidos.jpg);
    position: relative;
    color: white;
}

.home-tejidos::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: .8;
}

.home-tejidos h2,
.home-tejidos h3 {
    color: white;
}

.home-tejidos p {
    font-weight: 400;
}

.home-tejidos .container {
    position: relative;
}

.home-tejidos img {
    max-width: 90px;
}

.tejido-ficha {
    background-color: rgb(54 137 48 / 30%);
    padding: 4rem;
    border-radius: 10px;
}

.mapa {
    height: 400px;
}

.mapa iframe {
    width: 100%;
    height: 100%;
}

/* End Home Tejidos */

/* Formulario */

.input--text,
.input--text:active,
.input--text:focus {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: none;
    box-shadow: none;
    background-color: white;
    border-bottom: 1px solid var(--primary);
    display: block;
    width: 100%;
    color: var(--primary);
}

.input--text:active,
.input--text:focus {
    border-bottom: 1px solid var(--secondary);
}

.input--text::placeholder {
    color: var(--primary);
}

.loader__form, .response {
    display: none;
    text-align: center;
}

/* End Formulario */

/* footer */

footer {
    background-color: var(--primary);
    padding: 3rem 0;
}

footer * {
    color: white;
    font-weight: 300;
    font-size: .8rem;
}

footer strong {
    font-weight: 600;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: all .3s ease;
}

.float:hover {
    color: white;
    background-color: var(--secondary);
}

.my-float {
    margin-top: 16px;
}

/* -------------------------------------
------------------- NOSOTROS
---------------------------------------*/

.nosotros {
    height: calc(100vh - 90px);
    background-image: url(../img/nosotros-bg.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    max-height: 750px;
}

.nosotros-ficha,
.nosotros .container,
.nosotros .row,
.nosotros .text-center {
    height: 100%;
}

.nosotros-ficha {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 1rem;
}

.nosotros-badge {
    background-color: var(--secondary);
    padding: 1rem 2rem;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    position: relative;
    font-weight: 400;
}

.nosotros-badge::before {
    content: "";
    height: 0;
    width: 0;
    bottom: -1rem;
    left: 0;
    border-top: 1rem solid var(--secondary);
    border-left: 1rem solid transparent;
    position: absolute;
}

.nosotros-badge::after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    right: 0;
    bottom: -1rem;
    border-top: 1rem solid var(--secondary);
    border-right: 1rem solid transparent;
}

.nosotros p {
    font-weight: 300;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nosotros-text-big {
    font-size: calc(1rem + .5vw);
}

.nosotros-section-1 {
    position: relative;
}

.custom-title {
    position: relative;
}


.custom-title h3 {
    font-size: calc(1rem + .6vw);
    padding-left: 3rem;
    margin-bottom: 0;
    position: relative;
}

.custom-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1.5rem;
    background-color: var(--secondary);
}

.custom-title-right h3 {
    text-align: right;
    padding-left: 0;
    padding-right: 3rem;
}

.custom-title-right h3::before {
    left: initial;
    right: 0;
}

/* -------------------------------------
------------------- TEJIDOS TECNICOS
---------------------------------------*/

.tejidos-tecnicos {
    position: relative;
}

.ficha-categoria {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: block;
    background-color: black;
}

.ficha-categoria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
    opacity: .9;
}

.ficha-categoria-caption {
    color: white;
    position: absolute;
    left: 10%;
    top: 10%;
    font-weight: 600;
    font-size: 1.6rem;
    max-width: 200px;
}

/* Ficha de Producto */

.splide-ficha {
    position: relative;
}

.thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.ficha-descripcion h4 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'gotham';
}

.ficha-descripcion li {
    margin-bottom: 1rem;
}

.breadcumb {
    background-color: #f6f6f8;
    padding: 1.2rem;
    font-weight: 400;
    font-size: .9rem;
}

.breadcumb span {
    display: inline-block;
    margin: 0 .5rem;
}

/* Categorias */

.filtro ul {
    list-style: none;
    padding-left: 1rem;
}

.filtro li {
    position: relative;
    padding-left: 1.5rem;
}

.filtro li::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    color: var(--primary);
    font-size: .7rem;
    top: 50%;
    transform: translateY(-50%);
}

.ficha-producto-thumb {
    height: 450px;
    overflow: hidden;
    background-color: black;
    display: block;
    position: relative;
}

.ficha-producto-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}

.ficha-producto-title {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--primary);
}

.ficha-producto-categoria {
    color: #9E9E9E;
    font-weight: 400;
    font-size: .9rem;
}

.ficha-producto-btn {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    display: inline-block;
    background-color: white;
    color: var(--primary);
    font-weight: 400;
    padding: .7rem 2rem;
    min-width: 70%;
    text-align: center;
    transition: all .3s ease;
    opacity: 0;
}

.filtro-list {
    font-weight: 400;
}

.filtro-list li {
    display: block;
    margin-bottom: .5rem;
}

@media screen and (max-width: 480px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

@media (hover: hover) {
    .nav-link:hover {
        color: var(--orange);
    }

    .hero-carousel .splide__arrow:hover {
        opacity: .6;
    }

    /* Banner 1 */
    .banner-1,
    .home-tejidos {
        background-attachment: fixed;
    }

    /* End Banner 1 */

    /* Carousel Productos */

    .splide-categoria:hover img {
        opacity: .5;
    }

    .splide-productos .splide__arrow:hover {
        background: var(--orange);
    }

    .splide-productos .splide__arrow:hover svg {
        fill: white;
    }

    /* End Carousel Productos */

    .ficha-categoria:hover img {
        opacity: .7;
        transform: scale(1.05);
    }

    .ficha-producto-thumb:hover img {
        opacity: .7;
        transform: scale(1.1);
    }

    .ficha-producto-thumb:hover .ficha-producto-btn {
        bottom: 10%;
        opacity: 1;
    }

    .ficha-producto-btn:hover {
        background-color: var(--orange);
        color: white;
    }
}

@media (min-width: 768px) {


    /* Hero */

    .hero-title-2 {
        font-size: 3.5rem;
    }

    .hero-title-3 {
        font-size: 1.8rem;
    }

    .hero-logo-white {
        max-width: 100%;
    }

    .hero-caption-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .hero-carousel .splide__arrow {
        width: 2.5rem;
    }

    .hero-carousel .splide__arrow svg {
        fill: white;
        width: 2.5rem;
        height: 2.5rem;
    }

    /* End Hero */

    /* Banner 1 */
    .banner-1 .container {
        display: flex;
        justify-content: center;
    }

    .ficha-banner {
        max-width: 600px;
    }

    /* End Banner 1 */

    .splide-productos .splide__arrow--next {
        right: -1.5rem;
    }

    .splide-productos .splide__arrow--prev {
        left: -1.5rem;
    }

    .tejido-ficha {
        padding: 2rem;
    }

    /* Nosotros */

    .nosotros {
        background-position: left;
    }

    /* Tejidos */

    .tejidos-tecnicos::before {
        content: '';
        position: absolute;
        top: 0;
        width: 55%;
        height: 100%;
        background-size: cover;
    }

    .tejidos-1::before {
        background-image: url(../img/tejidos-1.jpg);
        right: 0;
        background-position: left center;
    }

    .tejidos-2::before {
        background-image: url(../img/tejidos-2.jpg);
        left: 0;
        background-position: right center;
    }

    .tejidos-3::before {
        background-image: url(../img/tejidos-3.jpg);
        right: 0;
        background-position: left center;
    }

    .tejidos-4::before {
        background-image: url(../img/tejidos-4.jpg);
        left: 0;
        background-position: right center;
    }

    .ficha-categoria-alto {
        height: 100%;
    }

    .ficha-producto-thumb {
        height: 350px;
    }

    .filtro-list {
        background-color: #f6f6f8;
        padding: 2rem 1.5rem;
        margin-right: 1rem;
    }

    .ficha-banner h2 {
        font-size: 1.6rem;
    }

    .filtro-list li {
        font-size: .9rem;
    }

    .filtro ul {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    
}


@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1300px;
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .btn {
        padding: .5rem 3.5rem;
    }

    /* header */

    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-collapse {
        position: relative;
        left: initial;
        top: initial;
        width: initial;
        height: initial;
    }

    .navbar-nav {
        max-width: initial;
        width: initial;
        height: auto;
        transform: initial;
        -webkit-transform: initial;
        padding: 0;
        background-color: transparent;
    }

    .navbar-nav::before,
    .navbar-nav::after {
        content: initial;
    }

    .nav-link {
        color: white;
        font-weight: 400;
        text-transform: capitalize;
    }

    .nav-item {
        margin: 0 .7rem;
    }

    .social-menu a {
        margin-right: 0;
    }

    .search-input {
        border-bottom: 1px solid white;
        max-width: 110px;
        color: white;
    }

    .search-button {
        color: white;
        border-bottom: 1px solid white;
    }

    .search-button:hover {
        background-color: transparent;
        color: var(--orange);
        border: none;
        border-bottom: 1px solid white;
    }

    .search-input:hover,
    .search-input:active,
    .search-input:focus {
        outline: none;
        box-shadow: none;
        border-bottom: 1px solid white;
        background-color: transparent;
        color: white;
    }

    /* End header */

    main {
        padding-top: 85px;
    }

    /* Hero */

    .hero-carousel {
        height: calc(100vh - 85px);
    }

    .hero-title-1 {
        font-size: 2.2rem;
    }


    /* End Hero */

    /* Servicios */

    .servicios h3 {
        font-size: 1.1rem;
    }

    .servicios .col-md-4 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* End Servicios */

    .tejido-ficha {
        padding: 4rem;
    }

    .nosotros-ficha {
        margin: 0 4rem;
    }

    .ficha-categoria-caption {
        left: 7%;
    }

    .ficha-producto-thumb {
        height: 400px;
    }

    .thumbnails {
        flex-direction: column;
        margin-top: 0;
    }

    .thumbnail {
        width: 100%;
        height: 150px;
        margin-bottom: 1rem;
    }

}

@media (min-width: 1400px) {

    html,
    body {
        font-size: 17px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1400px;
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .nav-item {
        margin: 0 1rem;
    }

    /* Servicios */

    .servicios .col-md-4 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    /* End Servicios */

}
