@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto+Mono:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

:root {
    --h1-height: 25pt;
    --h2-height: 17pt;
    --h3-height: 13pt;
    --h4-height: 10pt;
    --first-color: #E7CA93;
    --second-color: #D5BFA3;
    --three-color: #301F17;
    --four-color: #FFFFFF;
    --five-color: #D8D7D5;
    --poppins-font: 'Poppins', sans-serif;
    --extra-bold: 800;
    --white: #ffffff;
    --bg: #f5f5f5;
}

/* ol,
ul {
    padding-left: 0px !important;
    margin-bottom: 0px !important;
} */

dl,
ol,
ul {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

body {
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    zoom: 100%;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #2A2442;
}

body::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 20px;
}

/*Deshabilitar scroll*/
body.no-scroll {
    overflow: hidden;
}

main {
    width: 100%;
    height: 100%;
    background-color: #FFF;
}

/*Menu General*/
header {
    transition: top 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    background-color: #000;
    position: relative;
}

header .container {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
}

header .container .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 15px;
    padding: 20px 10px;
}

header .container .navbar .logo {
    flex: 0.2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .container .navbar .logo img {
    height: 60px;
    border-radius: inherit;
    object-position: center;
    object-fit: scale-down;
    image-rendering: auto;
    box-sizing: border-box;
}

/*Links*/
header .container .navbar .nav-list {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .container .navbar .nav-list .nav-item {
    padding-left: 40px;
}

header .container .navbar .nav-list .nav-item a {
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

header .container .navbar .nav-list .nav-item a:hover {
    color: #DA2229;
}

header .container .navbar .nav-list .nav-item a.active {
    color: #DA2229;
}

/*Contactanos*/
header .container .navbar .buttons {
    flex: 0.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

header .container .navbar .buttons .btn-contact {
    padding: 10px 15px;
    border: 2px solid #FFF;
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

header .container .navbar .buttons .btn-contact:hover {
    color: #FFF;
    background-color: #DA2229;
}

/*Menu hamburguesa*/
header .container .navbar .hamburger-menu {
    display: none;
}

/*Menu movil*/
header .container .mobile-menu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1002;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header .container .mobile-menu .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .container .mobile-menu .header-mobile .logo {
    position: absolute;
    left: 10px;
    top: 20px;
}

header .container .mobile-menu .header-mobile .logo img {
    width: 80px;
    border-radius: inherit;
    object-position: center;
    object-fit: scale-down;
    image-rendering: auto;
    box-sizing: border-box;
}

header .container .mobile-menu .header-mobile i#close-menu-mobile {
    font-size: 1.7rem;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #FFF;
}

header .container .mobile-menu .mobile-list-link {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

header .container .mobile-menu .mobile-list-link a {
    color: #FFF;
    margin: 5px 0;
    text-decoration: none;
}

header .container .mobile-menu .mobile-list-link a:hover {
    color: #DA2229;
}

header .container .mobile-menu .mobile-list-link .active {
    color: #DA2229;
}

header .container .mobile-menu .additional-sections {
    width: 100%;
}

header .container .mobile-menu .additional-sections .social-links {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #FFF;
    padding: 10px 0;
}

header .container .mobile-menu .additional-sections .social-links a {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
}

/*Inicio principal*/
.home-principal {
    position: relative;
    height: 100vh;
    width: 100%;
    /* background-image: url(../assets/images/background_home.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6%;
    overflow: hidden;
}

.home-principal .content {
    max-width: 600px;
    text-align: left;
}

.home-principal .content .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #FFF;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.home-principal .content .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.6em 0;
    color: #FFF;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.home-principal .content .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0.6em 0;
    color: #FFF;
    font-family: var(--poppins-font);
}

.home-principal .content .button {
    width: auto;
    padding: 1em 2em;
    color: #DA2229;
    font-weight: bold;
    font-size: 20px;
    background-color: transparent;
    border: 3px solid #DA2229;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: var(--poppins-font);
}

.home-principal .content .button:hover {
    background-color: #DA2229;
    color: #FFF;
}

.home-principal .wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url(../assets/images/waves_home.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/*Inicio seccion 1*/
.home-section1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.home-section1 .content {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px 40px 0px;
}

.home-section1 .content .text {
    text-align: center;
}

.home-section1 .content .text .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.home-section1 .content .text .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 6px;
    font-family: var(--poppins-font);
}

.home-section1 .content .text .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0.2em 0;
    color: #000;
    font-family: var(--poppins-font);
}

/*Inicio seccion 2*/
.home-section2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    flex-direction: column;
    padding: 30px 0px 40px 0px;
}

.home-section2 .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    text-align: center;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.home-section2 .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    text-align: center;
    letter-spacing: 6px;
    font-family: var(--poppins-font);
}

.home-section2 .wpc-industria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.home-section2 .wpc-industria .industria {
    flex-basis: calc(20% - 20px);
    max-width: 400px;
    /* padding: 20px; */
    text-align: center;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.home-section2 .wpc-industria .industria:hover {
    transform: translateY(-10px);
}

.home-section2 .wpc-industria .industria img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center center;
}

.home-section2 .wpc-industria .industria .title {
    font-size: 14px;
    line-height: 1.0;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 1px;
    font-family: var(--poppins-font);
}

.home-section2 .wpc-industria .industria .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    font-family: var(--poppins-font);
}

/*Inicio slider*/
.home-slide {
    text-align: center;
    padding: 80px 0;
    background-color: #fff;
}

.home-slide .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.home-slide .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 6px;
    padding-bottom: 30px;
    font-family: var(--poppins-font);
}

.home-slide .glider-contain {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #000;
}

.home-slide .glider-contain .glider {
    display: flex;
    gap: 30px;
    padding: 0px 30px;
    overflow-y: hidden;
}

.home-slide .glider-contain .glider .slide-card {
    color: #fff;
    padding: 60px 40px;
    text-align: left;
    border-radius: 8px;
    min-width: 250px;
    max-width: 33.33%;
    box-sizing: border-box;
}

.home-slide .glider-contain .glider .slide-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.home-slide .glider-contain .glider .slide-card h3 {
    font-size: 19px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 6px;
    color: #FFF;
    margin-bottom: 10px;
    font-family: var(--poppins-font);
}

.home-slide .glider-contain .glider .slide-card p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: normal;
    color: #FFF;
    font-family: var(--poppins-font);
}

.home-slide .glider-contain .glider-prev,
.home-slide .glider-contain .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 30px;
    color: #FFF;
    cursor: pointer;
    z-index: 999;
}

.home-slide .glider-contain .glider-prev {
    left: 10px;
}

.home-slide .glider-contain .glider-next {
    right: 10px;
}

/*dots*/
.home-slide .glider-contain .dots {
    display: none;
    justify-content: center;
    padding: 20px 0px;
}

.home-slide .glider-contain .dots .glider-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.home-slide .glider-contain .dots .glider-dot.active {
    background-color: #DA2229;
}

/*Inicio contact*/
.home-contact {
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url(../assets/images/picture1.png); */
    color: #FFF;
    padding: 60px;
    gap: 40px;
    background-color: #000000cc;
}

.home-contact .contact-text {
    flex: 1;
}

.home-contact .contact-text .title {
    margin-bottom: 10px;
}

.home-contact .contact-text .title,
.home-contact .contact-text .title span,
.home-contact .contact-text .title div {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--poppins-font);
}

.home-contact .contact-text .bold,
.home-contact .contact-text b {
    font-weight: 800;
    font-family: var(--poppins-font);
}

.home-contact .contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-contact .cta-button {
    width: auto;
    padding: 15px 35px;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    background-color: transparent;
    border: 3px solid #FFF;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--poppins-font);
}

.home-contact .cta-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/*Inicio form*/
.home-form {
    width: 100%;
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
    color: #000;
    gap: 40px;
}

.home-form .form-contact-info {
    flex: 1 1 45%;
}

.home-form .form-contact-info h2 {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.home-form .form-contact-info .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 6px;
    padding-bottom: 10px;
    font-family: var(--poppins-font);
}

.home-form .form-contact-info ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--poppins-font);
}

.home-form .form-contact-info li strong {
    font-weight: 700;
    margin-right: 2px;
}

.home-form .form-contact-info li a {
    color: #000;
    text-decoration: none;
}

.home-form .form-contact-info li a:hover {
    text-decoration: underline;
}

.home-form form {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-form form .validation-message {
    font-size: 13px;
    line-height: 1.2;
    color: #DA2229;
}

.home-form form .input-box {
    display: flex;
    flex-direction: column;
}

.home-form form .input-box .form-label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #575756;
}

.home-form form .input-box input,
.home-form form .input-box textarea {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 6px;
    outline: none;
    resize: none;
    font-family: inherit;
}

.home-form form .input-box input::placeholder,
.home-form form .input-box textarea::placeholder {
    color: #999;
}

.home-form form .submint_save {
    color: #DA2229;
    font-weight: bold;
    font-size: 20px;
    background-color: transparent;
    border: 3px solid #DA2229;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 1em 2em;
    margin-top: 0.2em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: var(--poppins-font);
}

.home-form form .submint_save:hover {
    background-color: #DA2229;
    color: #FFF;
}

/*Maps*/
.maps {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFF;
    color: #000;
    padding: 0px;
    justify-content: center;
}

/*Contact principal*/
.contact-principal {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-image: url(../assets/images/background_contact.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-principal .wave {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url(../assets/images/waves_contact.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/*Contact seccion 1*/
.contact-section1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.contact-section1 .content {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px 40px 0px;
}

.contact-section1 .content .text {
    text-align: center;
}

.contact-section1 .content .text .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.contact-section1 .content .text .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.contact-section1 .content .text .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    font-family: var(--poppins-font);
}

/*Contact earth*/
.container-earth {
    /* background-image: url(../assets/images/line_earth.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container-earth img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/*Circle progres*/
.container-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
}

.container-circles .progress-card {
    text-align: center;
}

.container-circles .progress-card h2 {
    font-size: 14px;
    line-height: 1.0;
    font-weight: bold;
    margin-top: 0.5em;
    color: #000;
    font-family: var(--poppins-font);
}

/*svg y circulos*/
.container-circles .progress-card .progress-circle {
    position: relative;
    width: 13em;
    height: 13em;
}

.container-circles .progress-card .progress-circle .circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

/*fondo gris*/
.container-circles .progress-card .progress-circle .circle-svg .circle-bg {
    fill: none;
    stroke: #e8e8e8;
    stroke-width: 3;
}

/*progreso animado*/
.container-circles .progress-card .progress-circle .circle-svg .circle-progress {
    fill: none;
    stroke: #D82229;
    stroke-width: 3;
    stroke-dasharray: 283;
    /*Longitud total del ci­rculo (2 * pi * r)*/
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2.5s ease-out;
}

.container-circles .progress-card .progress-circle .progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: bold;
    color: red;
    z-index: 1;
}

.container-circles .progress-card .progress-circle .progress-content .text {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

/*Solutions principal*/
.solutions-principal {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/images/background_solutions.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.solutions-principal .wave {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url(../assets/images/waves_solutions.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/*Solutions seccion 1*/
.solutions-section1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.solutions-section1 .content {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px 40px 0px;
}

.solutions-section1 .content .text {
    text-align: center;
}

.solutions-section1 .content .text .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.solutions-section1 .content .text .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.solutions-section1 .content .text .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0.2em 0;
    color: #000;
    font-family: var(--poppins-font);
}

/*Solutions seccion 2*/
.solutions-section2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    flex-direction: column;
    padding: 30px 0px 40px 0px;
}

.solutions-section2 .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    text-align: center;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.solutions-section2 .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    text-align: center;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.solutions-section2 .wpc-industria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.solutions-section2 .wpc-industria .industria {
    flex-basis: calc(20% - 20px);
    max-width: 400px;
    /* padding: 20px; */
    text-align: center;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.solutions-section2 .wpc-industria .industria:hover {
    transform: translateY(-10px);
}

.solutions-section2 .wpc-industria .industria img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center center;
}

.solutions-section2 .wpc-industria .industria .title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000;
    font-family: var(--poppins-font);
}

.solutions-section2 .wpc-industria .industria .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    font-family: var(--poppins-font);
}

/*Texto slide custom*/
.text-slide-custom {
    text-align: center;
    background-color: #FFF;
    padding: 0px 20px 0px 20px;
    position: relative;
    overflow: hidden;
}

.text-slide-custom .section-title {
    margin-top: 40px;
    font-size: 50px;
    line-height: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
    color: #DBDBDB;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--poppins-font);
}

/*Slide custom*/
.slide-custom {
    width: 100%;
    overflow: hidden;
    background-color: #DBDBDB;
    padding: 50px 20px;
    text-align: center;
}

.slide-custom .swiper-wrapper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content {
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    gap: 10px;
    padding: 10px 20px;
    box-sizing: border-box;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content .number {
    font-size: 110px;
    line-height: 1.2;
    font-weight: 900;
    color: #E9E9E9;
    flex-shrink: 0;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content .icono-slide {
    width: 80px;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content .text-content {
    text-align: left;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content .text-content .title {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0;
    letter-spacing: 6px;
}

.slide-custom .swiper-wrapper .swiper-slide .slide-content .text-content .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 5px 0 0;
    color: #000;
}

.slide-custom .swiper-button-next,
.slide-custom .swiper-button-prev {
    position: absolute;
    z-index: 10;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    color: unset !important;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
}

.slide-custom .swiper-button-prev:after,
.slide-custom .swiper-button-next:after {
    font-size: 16px;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide-custom .swiper-pagination {
    position: static;
    display: none;
}

.slide-custom .swiper-pagination-bullet {
    background-color: #998066;
}

.slide-custom .swiper-pagination-bullet-active {
    background-color: #DA2229;
}

/*Line time*/
.container-linetime {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
}

.container-linetime .linetime-header .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #FFF;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.container-linetime .linetime-header .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.container-linetime .linetime-header .description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 20px auto;
    color: #FFF;
    font-family: var(--poppins-font);
}

/*scrollable wrapper*/
.container-linetime .linetime-scroll-wrapper {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 40px 0;
}

.container-linetime .linetime-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.container-linetime .linetime-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #DA2229;
    border-radius: 4px;
}

.container-linetime .linetime-scroll-wrapper .linetime-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    flex-shrink: 0;
}

/*labels*/
.container-linetime .linetime-scroll-wrapper .linetime-item span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    margin-bottom: 10px;
}

/*bars*/
.container-linetime .linetime-scroll-wrapper .linetime-item .bar {
    width: 180px;
    height: 40px;
    background-color: #E53D3E;
    position: relative;
}

.container-linetime .linetime-scroll-wrapper .linetime-item .bar.bar-first {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    z-index: 2;
}

.container-linetime .linetime-scroll-wrapper .linetime-item .bar.bar-middle {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    z-index: 1;
}

.container-linetime .linetime-scroll-wrapper .linetime-item .bar.bar-last {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

/*Solutions section 3*/
.solutions-section3 {
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/images/picture1.png);
    color: #FFF;
    padding: 60px;
    gap: 40px;
    /* background-color: #000000; */
}

.solutions-section3 .solutions-text {
    flex: 1;
}

.solutions-section3 .solutions-text .title {
    margin-bottom: 10px;
}

.solutions-section3 .solutions-text .title,
.solutions-section3 .solutions-text .title span,
.solutions-section3 .solutions-text .title div {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--poppins-font);
}

.solutions-section3 .solutions-text .bold,
.solutions-section3 .solutions-text b {
    font-weight: 800;
    font-family: var(--poppins-font);
}

.solutions-section3 .solutions-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-section3 .cta-button {
    width: auto;
    padding: 15px 35px;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    background-color: transparent;
    border: 3px solid #FFF;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--poppins-font);
}

.solutions-section3 .cta-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/*Products principal*/
.products-principal {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/images/background_products.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.products-principal .wave {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url(../assets/images/waves_products.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/*Products seccion 1*/
.products-section1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.products-section1 .content {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px 40px 0px;
}

.products-section1 .content .text {
    text-align: center;
}

.products-section1 .content .text .title {
    font-size: 50px;
    line-height: 1.0;
    font-weight: 900;
    margin: 0.2em 0;
    color: #000;
    letter-spacing: -2px;
    font-family: var(--poppins-font);
}

.products-section1 .content .text .subtitle {
    font-size: 19px;
    line-height: 1.0;
    font-weight: bold;
    margin: 0.2em 0;
    color: #DA2229;
    letter-spacing: 8px;
    font-family: var(--poppins-font);
}

.products-section1 .content .search {
    text-align: center;
    margin: 20px 0;
}

.products-section1 .content .search input,
.products-section1 .content .search select {
    width: 100%;
    padding: 10px;
    border: 1px solid #D6D6D6;
    border-radius: 5px;
    font-size: 14px;
}

.products-section1 .content .catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
    gap: 20px;
}

.products-section1 .content .catalog img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.products-section1 .content .catalog .catalog-item {
    /* width: 30%; */
    width: calc(33.33% - 14px);
    margin-bottom: 20px;
    text-align: center;
}

.products-section1 .content .catalog .catalog-item span {
    cursor: not-allowed;
}

.products-section1 .content .catalog .catalog-item span img,
.products-section1 .content .catalog .catalog-item a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.products-section1 .content .catalog .catalog-item span img:hover,
.products-section1 .content .catalog .catalog-item a img:hover {
    transform: translateY(-5px);
}

.products-section1 .content .catalog .catalog-item span p,
.products-section1 .content .catalog .catalog-item a p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}

.products-section1 .content .catalog .no-results {
    display: flex;
    justify-content: center;
    width: 100%;
}

/*paginations*/
.products-section1 .content .pagination {
    display: flex;
    text-align: center;
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
}

.products-section1 .content .pagination .btn-left,
.products-section1 .content .pagination .btn-right {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    color: #000;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.products-section1 .content .pagination .btn-left:hover,
.products-section1 .content .pagination .btn-right:hover {
    transform: translateY(-1px);
}

.products-section1 .content .pagination .btn-left img,
.products-section1 .content .pagination .btn-right img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: center center;
}

/*indicadores*/
.products-section1 .content .pagination-info {
    display: flex;
    text-align: center;
    margin-top: 20px;
    justify-content: flex-start;
    gap: 10px;
}

/*Boton WhatsApp*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.96);
}

/*Privacy text titular*/
.containter-title-privacy {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: #DA2229;
    color: #FFF;
}

.containter-title-privacy .title {
    font-size: 52px;
    line-height: 52px;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

/*Aviso de privacidad*/
.privacy {
    max-width: 100%;
    margin: 80px 40px;
    overflow: hidden;
    height: auto;
}

.privacy .privacy_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.privacy .privacy_container .privacy_items {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-direction: column;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title_one {
    font-size: 19px;
    font-weight: 500;
    line-height: 22.8px;
    padding-bottom: 20px;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 20px;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description {
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    color: #212529;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description a {
    text-decoration: underline;
    color: #212529;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description a:hover {
    color: #000;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description_pie {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: #5f5e5c;
    font-style: italic;
}

.privacy .privacy_container .privacy_items .privacy_item .info-list {
    all: unset;
    display: block;
    padding-left: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.privacy .privacy_container .privacy_items .privacy_item .info-list li {
    all: unset;
    display: list-item !important;
    list-style-type: disc !important;
    color: #212529;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin-left: 20px;
}

/*Questions text titular*/
.containter-title-questions {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: #DA2229;
    color: #FFF;
}

.containter-title-questions .title {
    font-size: 52px;
    line-height: 52px;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

/*Questions full*/
.questions {
    max-width: 100%;
    margin: 40px 40px;
    overflow: hidden;
    height: auto;
}

.questions .questions_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.questions .questions_container .questions_content_full {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #A9A8A4;
    border-radius: 0;
    background-color: transparent;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button {
    background-color: #FFFFFF;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button::after {
    content: '';
    background-image: none !important;
    transform: rotate(0deg);
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button:not(.collapsed) {
    color: #111111;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button.collapsed::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #212529;
    margin-left: auto;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    font-size: 1.4rem;
    font-weight: 300;
    color: #212529;
    margin-left: auto;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item:first-of-type .accordion-button {
    border-top: 1px solid #A9A8A4;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item .accordion-button {
    font-size: 19px;
    font-weight: 500;
    line-height: 22.8px;
    /* text-transform: uppercase; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    border-bottom: 1px solid #A9A8A4;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item .accordion-button:focus {
    z-index: 1;
    border-color: #A9A8A4;
    outline: 0;
    box-shadow: none;
}

/*Footer*/
footer {
    width: 100%;
}

footer .footer-desk {
    background-color: #000;
    color: #FFF;
    padding: 3rem 0;
}

footer .footer-desk .container-footer {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 20px !important;
}

footer .footer-desk .container-footer .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

footer .footer-desk .container-footer .footer-columns .footer-column {
    flex: 0.3;
    min-width: 180px;
    padding: 0 1rem;
    overflow-y: scroll;
    height: 260px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

footer .footer-desk .container-footer .footer-columns .footer-column::-webkit-scrollbar {
    display: none;
    /* width: 6px;
    height: 6px; */
}

/* footer .footer-desk .container-footer .footer-columns .footer-column::-webkit-scrollbar-track {
    background: #2A2442;
}

footer .footer-desk .container-footer .footer-columns .footer-column::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 20px;
} */

footer .footer-desk .container-footer .footer-columns .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFF;
}

footer .footer-desk .container-footer .footer-columns .footer-column a,
footer .footer-desk .container-footer .footer-columns .footer-column p {
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
    text-decoration: none;
}

footer .footer-desk .container-footer .footer-columns .footer-column p {
    display: block;
}

footer .footer-desk .container-footer .footer-columns .footer-column a:hover {
    text-decoration: underline;
}

footer .footer-desk .container-footer .footer-columns .footer-logo {
    flex: 0.3;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

footer .footer-desk .container-footer .footer-columns .footer-logo img {
    height: 100px;
    object-fit: scale-down;
    object-position: center center;
    margin-bottom: 10px;
}

footer .footer-desk .container-footer .footer-columns .footer-logo .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

footer .footer-desk .container-footer .footer-columns .footer-logo .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 16px;
    transition: transform 0.2s;
    background: #DA2229;
    color: #000;
    border-radius: 50%;
}

footer .footer-desk .container-footer .footer-columns .footer-logo .social-icons a:hover {
    color: #FFF;
    transform: scale(1.1);
}

footer .footer-bottom-red {
    background-color: #DA2229;
    text-align: center;
    padding: 4rem 1rem;
    font-size: 14px;
    color: #FFF;
}

footer .footer-bottom-red a {
    color: #FFF;
}

footer .footer-bottom-red a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 1400px) {}

/*Adaptacion pc 1248px*/
@media only screen and (min-width: 1248px) {

    .container-desk {
        max-width: 1920px;
        margin: 0 auto;
        overflow: hidden;
        height: auto;
    }

    /*Menu General*/
    header .container {
        max-width: 1920px;
        margin: 0 auto;
    }

    /*Inicio principal*/
    .home-principal {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Contact principal*/
    .contact-principal {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Solutions principal*/
    .solutions-principal {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Products principal*/
    .products-principal {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        width: 100%;
        height: 450px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        width: 100%;
        height: 450px;
    }

}

/*Adaptacion tablets*/
@media only screen and (max-width: 1248px) {

    /*Menu General*/
    header .container {
        width: 100%;
    }

    header .container .navbar {
        padding: 20px 20px;
    }

    /*Inicio principal*/
    .home-principal {
        width: 100%;
        height: 650px;
    }

    .home-principal .wave {
        bottom: 0px;
    }

    /*Contact principal*/
    .contact-principal {
        width: 100%;
        height: 350px;
    }

    .contact-principal .wave {
        bottom: 0px;
    }

    /*Circle progres*/
    .container-circles {
        gap: 20px;
        padding: 40px 10px;
    }

    /*Solutions principal*/
    .solutions-principal {
        width: 100%;
        height: 350px;
    }

    .solutions-principal .wave {
        bottom: 0px;
    }

    /*Line time*/
    .container-linetime .linetime-scroll-wrapper {
        justify-content: flex-start;
    }

    /*Products principal*/
    .products-principal {
        width: 100%;
        height: 350px;
    }

    .products-principal .wave {
        bottom: 0px;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        width: 100%;
        height: 350px;
    }

    .containter-title-privacy .title {
        font-size: 42px;
        line-height: 42px;
    }

    /*Aviso de privacidad*/
    .privacy {
        margin: 0px 40px;
    }

    .privacy .privacy_container {
        flex-direction: column;
        margin: 40px 0px;
    }

    .privacy .privacy_container .privacy_items {
        width: 100%;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title {
        padding-bottom: 20px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_description {
        width: 100%;
    }

    /*Questions text titular*/
    .containter-title-questions {
        width: 100%;
        height: 350px;
    }

    .containter-title-questions .title {
        font-size: 42px;
        line-height: 42px;
    }

    /*Questions full*/
    .questions {
        margin: 40px 20px;
    }

    .questions .questions_container {
        flex-direction: column;
    }

    .questions .questions_container .questions_content_full {
        width: 100%;
        padding-top: 20px;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {}

@media only screen and (max-width: 998px) {

    /*Menu General*/
    header .container .navbar .logo img {
        height: 50px;
    }

    header .container .navbar .nav-list .nav-item {
        padding-left: 20px;
    }

    /*Inicio principal*/
    .home-principal .content .title {
        font-size: 42px;
    }

    .home-principal .content .subtitle {
        font-size: 22px;
    }

    /*Inicio seccion 1*/
    .home-section1 .content .text .title {
        font-size: 42px;
    }

    .home-section1 .content .text .subtitle {
        font-size: 22px;
    }

    /*Inicio seccion 2*/
    .home-section2 .title {
        font-size: 42px;
    }

    .home-section2 .subtitle {
        font-size: 22px;
    }

    .home-section2 .wpc-industria .industria {
        flex-basis: calc(33.33% - 20px);
    }

    /*Inicio slider*/
    .home-slide .title {
        font-size: 42px;
    }

    .home-slide .subtitle {
        font-size: 22px;
    }

    .home-slide .glider-contain .glider .slide-card {
        max-width: 50%;
    }

    /*Inicio contact*/
    .home-contact .contact-text .title br,
    .home-contact .contact-text .title span br,
    .home-contact .contact-text .title div br {
        display: none;
    }

    .home-contact .contact-text .title div {
        display: inline;
    }

    /*Inicio form*/
    .home-form {
        padding: 60px 20px;
    }

    .home-form .form-contact-info h2 {
        font-size: 42px;
    }

    .home-form .form-contact-info .subtitle {
        font-size: 22px;
    }

    /*Contact seccion 1*/
    .contact-section1 .content .text .title {
        font-size: 42px;
    }

    .contact-section1 .content .text .subtitle {
        font-size: 22px;
    }

    /*Circle progres*/
    .container-circles {
        gap: 10px;
        padding: 40px 0px;
    }

    .container-circles .progress-card .progress-circle {
        width: 10em;
        height: 10em;
    }

    /*Solutions seccion 1*/
    .solutions-section1 .content .text .title {
        font-size: 42px;
    }

    .solutions-section1 .content .text .subtitle {
        font-size: 22px;
    }

    /*Solutions seccion 2*/
    .solutions-section2 .title {
        font-size: 42px;
    }

    .solutions-section2 .subtitle {
        font-size: 22px;
    }

    .solutions-section2 .wpc-industria .industria {
        flex-basis: calc(33.33% - 20px);
    }

    /*Texto slide custom*/
    .text-slide-custom .section-title {
        font-size: 42px;
        line-height: 30px;
    }

    /*Slide custom*/
    .slide-custom {
        padding: 50px 0px;
    }

    /*Line time*/
    .container-linetime .linetime-header .title {
        font-size: 42px;
    }

    .container-linetime .linetime-header .subtitle {
        font-size: 22px;
    }

    /*Solutions section 3*/
    .solutions-section3 .solutions-text .title br,
    .solutions-section3 .solutions-text .title span br,
    .solutions-section3 .solutions-text .title div br {
        display: none;
    }

    .solutions-section3 .solutions-text .title div {
        display: inline;
    }

    /*Products seccion 1*/
    .products-section1 .content {
        width: 90%;
    }

    .products-section1 .content .text .title {
        font-size: 42px;
    }

    .products-section1 .content .text .subtitle {
        font-size: 22px;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        padding: 2rem 3rem;
    }

    .containter-title-privacy .title {
        font-size: 32px;
        line-height: 32px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        padding: 2rem 3rem;
    }

    .containter-title-questions .title {
        font-size: 32px;
        line-height: 32px;
    }

    /*Footer*/
    footer .footer-desk .container-footer .footer-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        position: relative;
    }

    footer .footer-desk .container-footer .footer-columns .footer-logo {
        height: 80px;
        position: absolute;
        top: 0;
        right: 0;
        margin-bottom: 2rem;
    }

    footer .footer-desk .container-footer .footer-columns .footer-column {
        margin-top: 10rem;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {}

@media only screen and (max-width: 833px) {

    /*Menu General*/
    header .container .navbar .logo img {
        height: 40px;
    }

    header .container .navbar .buttons .btn-contact {
        padding: 10px 10px;
    }

    /*Inicio principal*/
    .home-principal .content {
        max-width: 100%;
    }

    .home-principal .content .button {
        padding: 10px 10px;
    }

    /*Inicio seccion 1*/
    .home-section1 .content {
        width: 100%;
        padding: 80px 20px 40px 20px;
    }

    /*Inicio slider*/
    .home-slide .title {
        padding: 0px 20px 0px 20px;
    }

    .home-slide .subtitle {
        padding: 0px 20px 30px 20px;
    }

    /*dots*/
    .home-slide .glider-contain .dots {
        display: flex;
    }

    /*Inicio contact*/
    .home-contact .contact-text .title,
    .home-contact .contact-text .title span,
    .home-contact .contact-text .title div {
        font-size: 28px;
        text-align: center;
    }

    .home-contact .cta-button {
        padding: 10px 25px;
    }

    /*Contact seccion 1*/
    .contact-section1 .content {
        width: 100%;
        padding: 80px 20px 40px 20px;
    }

    /*Solutions seccion 1*/
    .solutions-section1 .content {
        width: 100%;
        padding: 80px 20px 40px 20px;
    }

    /*Texto slide custom*/
    .text-slide-custom .section-title {
        line-height: 34px;
    }

    .slide-custom .swiper-button-next,
    .slide-custom .swiper-button-prev {
        display: none;
    }

    /*Slide custom*/
    .slide-custom .swiper-pagination {
        position: static;
        display: block;
    }

    /*Solutions section 3*/
    .solutions-section3 .solutions-text .title,
    .solutions-section3 .solutions-text .title span,
    .solutions-section3 .solutions-text .title div {
        font-size: 28px;
        text-align: center;
    }

    .solutions-section3 .cta-button {
        padding: 10px 25px;
    }

}

@media only screen and (max-width: 800px) {

    /*Footer*/
    footer .footer-desk .container-footer .footer-columns .footer-column:last-child {
        margin-top: 2rem;
    }

}

@media only screen and (max-width: 768px) {

    /*Inicio seccion 2*/
    .home-section2 {
        padding: 30px 20px 40px 20px;
    }

    .home-section2 .wpc-industria .industria {
        flex-basis: calc(50% - 20px);
    }

    /*Inicio contact*/
    .home-contact {
        flex-direction: column;
        padding: 40px 20px;
    }

    /*Inicio form*/
    .home-form {
        flex-direction: column;
        align-items: initial;
    }

    .home-form .form-contact-info h2 br {
        display: none;
    }

    /*Contact earth*/
    .container-earth img {
        max-width: 90%;
    }

    /*Solutions seccion 2*/
    .solutions-section2 {
        padding: 30px 20px 40px 20px;
    }

    .solutions-section2 .wpc-industria .industria {
        flex-basis: calc(50% - 20px);
    }

    /*Solutions section 3*/
    .solutions-section3 {
        flex-direction: column;
        padding: 40px 20px;
    }

    /*Products seccion 1*/
    .products-section1 .content .catalog .catalog-item {
        width: 45%;
    }

    .products-section1 .content .catalog {
        justify-content: space-between;
    }

    /*Boton WhatsApp*/
    .whatsapp-button {
        right: 10px;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        padding: 2rem 2rem;
    }

    .containter-title-privacy .title {
        font-size: 28px;
        line-height: 28px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        padding: 2rem 2rem;
    }

    .containter-title-questions .title {
        font-size: 28px;
        line-height: 28px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {}

/*Adaptacion movil*/
@media only screen and (max-width: 668px) {

    /*Menu General*/
    header .container .navbar .logo {
        justify-content: center;
    }

    header .container .navbar .buttons {
        display: none;
    }

    header .container .navbar .nav-list {
        display: none !important;
    }

    /*Menu mobile*/
    header .container .navbar .hamburger-menu {
        display: block;
        cursor: pointer;
        margin-right: 10px;
        margin-left: auto;
    }

    header .container .navbar .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: #FFF;
        transition: 0.3s;
    }

    header .container .navbar .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    header .container .navbar .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    header .container .navbar .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /*Inicio principal*/
    .home-principal {
        width: 100%;
        height: 620px;
        padding: 0 4%;
    }

    /*Inicio seccion 2*/
    .home-section2 .wpc-industria .industria {
        flex-basis: calc(100% - 20px);
    }

    /*Contact earth*/
    .container-earth img {
        max-width: 80%;
    }

    /*Circle progres*/
    .container-circles {
        flex-wrap: wrap;
    }

    .container-circles .progress-card .progress-circle .progress-content .text {
        font-size: 28px;
    }

    .container-circles .progress-card h2 {
        font-size: 14px;
    }

    /*Solutions seccion 2*/
    .solutions-section2 .wpc-industria .industria {
        flex-basis: calc(100% - 20px);
    }

    /*Aviso de privacidad*/
    .privacy {
        margin: 0px 20px;
    }

    .privacy .privacy_container {
        flex-direction: column;
    }

    .privacy .privacy_container .privacy_items {
        width: 100%;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title_one {
        font-size: 18px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title {
        font-size: 15px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_description {
        font-size: 15px;
    }

    /*Questions full*/
    .questions .questions_container .questions_content_full {
        padding-top: 30px;
    }

    /*Footer*/
    footer .footer-desk .container-footer .footer-columns {
        display: flex;
        flex-direction: column;
        align-items: initial;
    }

    footer .footer-desk .container-footer .footer-columns .footer-logo {
        position: relative;
        order: -1;
        margin-bottom: 2rem;
    }

    footer .footer-desk .container-footer .footer-columns .footer-column {
        text-align: center;
        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    footer .footer-desk .container-footer .footer-columns .footer-column:last-child {
        margin-top: 0rem;
    }

    footer .footer-desk .container-footer .footer-columns .footer-column h3,
    footer .footer-desk .container-footer .footer-columns .footer-column p {
        text-align: left;
    }

}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {}

@media only screen and (max-width: 468px) {}