@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 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: #A3C0EF;
    --second-color: #A3C0EF;
    --three-color: #301F17;
    --four-color: #FFFFFF;
    --five-color: #D8D7D5;
    --poppins-font: "Poppins", sans-serif;
    --extra-bold: 800;
    --white: #ffffff;
    --bg: #f5f5f5;
}

body {
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    margin: 0;
    zoom: 100%;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #2A2442;
}

body::-webkit-scrollbar-thumb {
    background-color: #F0EEF6;
    border-radius: 20px;
}

main {
    width: 100%;
    height: 100%;
    background-color: #FFF;
}

/*Menu*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 16px hsl(220, 32%, 8%, .3);
    transition: top 0.3s ease-in-out;
}

.header .nav {
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: bold;
    --bs-nav-link-color: #1F1F1F;
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
}

.header .nav .nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav .nav__data .nav__logo,
.header .nav .nav__data .nav__burger {
    background-color: #000;
    color: #090000;
}

.header .nav .nav__data .nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: bold;
}

.header .nav .nav__data .nav__logo img {
    width: 180px;
    height: auto;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0px 10px 0px;
    background-color: #000;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

header.scrolled {
    transform: translateY(-100%);
}

header nav {
    margin: 10px 10px 10px 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-direction: row;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

header nav ul li a:hover {
    color: var(--first-color);
}

header nav ul li a.active {
    color: var(--first-color);
}

header nav .cta-button {
    background-color: var(--first-color);
    color: #f5f5f5;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

header nav .cta-button:hover {
    background-color: var(--second-color);
}

header nav .dropdown {
    position: relative;
}

header nav .dropdown .text {
    color: #1F1F1F;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px 10px 10px 10px;
}

header nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F5F6FF;
    ;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

header nav .dropdown-content .active {
    color: var(--first-color);
}

header nav .dropdown:hover .dropdown-content {
    display: block;
}

header nav .dropdown-content a {
    color: #121212;
    ;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

header nav .dropdown-content a:hover {
    color: var(--second-color);
}

/*Footer 1*/
.footer-1 {
    background-color: var(--second-color);
    padding: 30px 10px 30px 10px;
}

.footer-1 .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-1 .container .footer-content {
    display: flex;
    flex-direction: column;
}

.footer-1 .container .footer-content p {
    margin-bottom: 5px;
}

.footer-1 .container .footer-content a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.footer-1 .container .footer-content a:hover {
    text-decoration: underline;
}

/*Footer 2*/
.footer-2 {
    background-color: #253269;
    color: #FFF;
    padding: 30px 20px 30px 20px;
}

.footer-2 .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-2 .container .footer-menu {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.footer-2 .container .footer-menu ul {
    list-style: none;
    margin-bottom: 10px;
}

.footer-2 .container .footer-menu ul li {
    margin-bottom: 5px;
}

.footer-2 .container .footer-menu ul li h2 {
    color: #FFF;
    margin-bottom: 15px;
}

.footer-2 .container .footer-menu ul li a {
    color: #FFF;
    text-decoration: none;
}

.footer-2 .container .footer-menu ul li a:hover {
    text-decoration: underline;
}

.footer-2 .container .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 30px;
}

.footer-2 .container .footer-logo .img-logo {
    max-width: 100%;
    max-height: 100%;
    width: 280px;
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
}

.footer-2 .container .footer-logo .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-2 .container .footer-logo .social-icons a {
    margin: 0 10px;
}

.footer-2 .container .footer-logo .social-icons a .img-social {
    width: 35px;
    height: auto;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
}

/*Slider principal*/
.slider-principal {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slider-principal .slides-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.slider-principal .slides-wrapper #bg-1 {
    background-image: url('../assets/images/principal1.webp');
}

.slider-principal .slides-wrapper #bg-2 {
    background-image: url('../assets/images/principal2.webp');
}

.slider-principal .slides-wrapper #bg-3 {
    background-image: url('../assets/images/principal3.webp');
}

.slider-principal .slides-wrapper .slide-principal {
    flex: 0 0 100%;
    height: 100%;
    min-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-principal .slides-wrapper .slide-principal .container_text,
.slider-principal .slides-wrapper .slide-principal .container_materials {
    width: 50%;
    height: 100%;
    float: left;
    padding: 5% 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-principal .slides-wrapper .slide-principal .container_text h2,
.slider-principal .slides-wrapper .slide-principal .container_text p {
    color: #F5F6FF;
}

.slider-principal .slides-wrapper .slide-principal .container_text .color {
    color: #A3C0EF;
}

/* Estilos iniciales ocultos para el contenido */
.slider-principal .slides-wrapper .slide-principal .container_text .text,
.slider-principal .slides-wrapper .slide-principal .container_materials .images {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    padding: 10%;
}

/* Cuando el slide está activo, animamos el contenido */
.slider-principal .slides-wrapper .slide-principal.active .container_text .text,
.slider-principal .slides-wrapper .slide-principal.active .container_materials .images {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease forwards;
}

.slider-principal .slides-wrapper .slide-principal .container_text .cta-button {
    width: 40%;
    color: #F5F6FF;
    padding: 3% 5%;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 5%;
    cursor: pointer;
    font-weight: 500;
    background-color: var(--first-color);
}

.slider-principal .slides-wrapper .slide-principal .container_text .cta-button:hover {
    background-color: var(--second-color);
}

.slider-principal .pagination-principal {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    text-align: center;
}

.slider-principal .pagination-principal span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--second-color);
    margin: 0 5px;
    cursor: pointer;
}

.slider-principal .pagination-principal span.active {
    background-color: var(--second-color);
}

/*animaciones*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Boton WhatsApp*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

.whatsapp-button img:active {
    transform: scale(0.96);
}

/*Mensaje rectangle*/
.message {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background-color: #253269;
    padding: 60px 10px 60px 10px;
}

.message h2,
.message p {
    color: #F5F6FF;
}

.message p {
    padding: 20px 100px 20px 100px;
}

/*Slide Categories*/
.container-slider {
    width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
    color: #000;
    background-color: #FFF;
    padding: 30px 30px 30px 30px;
}

.container-slider h2 {
    color: #29366B;
}

.container-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.container-slider #tranding {
    padding: 0rem;
}

.container-slider #tranding .container {
    max-width: 124rem;
    margin: 0 auto;
}

.container-slider #tranding .container .tranding-slider {
    height: auto;
    position: relative;
}

.container-slider #tranding .container .tranding-slider .tranding-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.container-slider #tranding .container .tranding-slider .tranding-slide .tranding-slide-img {
    width: 100%;
    height: auto;
}

.container-slider #tranding .container .tranding-slider .tranding-slide .tranding-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: 60px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container-slider #tranding .container .tranding-slider .tranding-slide .text-container {
    width: 90%;
    height: auto;
    color: #A3C0EF;
    background-color: #253269;
}

.container-slider #tranding .container .tranding-slider .tranding-slide .text-container h2 {
    color: #A3C0EF;
}

.container-slider .swiper-slide-shadow-left,
.container-slider .swiper-slide-shadow-right {
    display: none;
}

.container-slider .tranding-slider-control {
    position: relative;
    bottom: -0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-slider .tranding-slider-control .swiper-button-next {
    left: 58% !important;
    transform: translateX(-58%) !important;
}

/* @media (max-width:990px) {
    .container-slider .tranding-slider-control .swiper-button-prev {
        left: 30% !important;
        transform: translateX(-30%) !important;
    }

    .container-slider .tranding-slider-control .swiper-button-next {
        left: 70% !important;
        transform: translateX(-70%) !important;
    }
} */

.container-slider .swiper-button-prev1,
.container-slider .swiper-button-next1 {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #343F4F !important;
    font-weight: 800;
}

.container-slider .tranding-slider-control .swiper-pagination {
    position: relative;
    width: 15rem;
    bottom: 0rem;
}

.container-slider .tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
    border: 2px solid #253269;
    background-color: transparent;
}

.container-slider .tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
    background: #253269;
}

/*Beneficios*/
.container-beneficies {
    width: 100%;
    background-image: url('../assets/images/background-benefit.webp');
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0px 40px 0px;
}

.container-beneficies h2 {
    color: #29366B;
}

.container-beneficies .wpc-benefits {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 40px 10px 40px;
}

.container-beneficies .wpc-benefits .benefit {
    flex-basis: calc(33.333% - 20px);
    padding: 20px;
    text-align: start;
}

.container-beneficies .wpc-benefits .benefit img {
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
}

.container-beneficies .wpc-benefits .benefit h3 {
    font-size: 18px;
    font-weight: 600;
    color: #29366B;
}

.container-beneficies .wpc-benefits .benefit p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #29366B;
}

/*Slide our services*/
.services {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0px 40px 0px;
}

.services .title-services {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.services .title-services h2 {
    color: #29366B;
}

/*swiper styles*/
.services .swiper-container {
    width: 100vw;
    height: auto;
    position: relative;
    padding: 0px;
}

.services .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*text overlay*/
.services .text-overlay {
    width: 40%;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: 25%;
    color: #F0EEF6;
    background-color: #253269;
    font-size: 24px;
    font-weight: bold;
    padding: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.services .text-overlay h2 {
    font-size: 20px;
    font-weight: 600;
}

.services .text-overlay p {
    font-size: 16px;
    font-weight: 400;
}

/*dots pagination*/
.services .swiper-pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.services .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
    border: 2px solid #253269;
    background-color: transparent;
}

.services .swiper-pagination-bullet-active {
    background-color: #253269;
}

/*Slider Cubes*/
.cubes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0px 40px 0px;
}

.cubes .title-cubes {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.cubes .title-cubes h2 {
    color: #29366B;
}

.cubes .wrapper {
    display: flex;
    max-width: 100%;
    position: relative;
    padding: 0px 80px 0px 80px;
}

.cubes .wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 2.45rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #F5F6FF;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.cubes .wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.cubes .wrapper i:hover {
    background: #f2f2f2;
}

.cubes .wrapper i:first-child {
    left: 20px;
    display: none;
}

.cubes .wrapper i:last-child {
    right: 20px;
}

.cubes .wrapper .carousel_cubes {
    cursor: grab;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.cubes .carousel_cubes.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.cubes .carousel_cubes.dragging img {
    pointer-events: none;
}

.cubes .carousel_cubes img {
    height: 300px;
    user-select: none;
    width: calc(100% / 4);
    margin-left: 10px;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
}

.cubes .carousel_cubes img:first-child {
    margin-left: 0px;
    margin-right: 0px;
}

@media screen and (max-width: 1100px) {
    .cubes .carousel_cubes img {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 900px) {
    .cubes .carousel_cubes img {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 650px) {
    .cubes .carousel_cubes img {
        width: 100%;
        height: auto;
    }
}

/*Contacto*/
.contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-image: url('../assets/images/contact.webp');
    color: #F0EEF6;
    padding: 60px 60px 60px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact section {
    flex: 1 1 500px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.contact section:last-child {
    margin-right: 0;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.contact section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact section p {
    font-size: 16px;
    color: #FFF;
}

.contact section .cta-button {
    width: 380px;
    height: 60px;
    color: #F5F6FF;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 800;
    background-color: var(--first-color);
}

.contact section .cta-button:hover {
    background-color: var(--second-color);
}

/*Maps*/
.maps {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFF;
    padding: 50px 60px 50px 60px;
    justify-content: center;
}

.maps section {
    flex: 1 1 500px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.maps section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #29366B;
}

.maps section p {
    font-size: 16px;
    color: #29366B;
    font-weight: 400;
}

.maps section:last-child {
    margin-right: 0;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.maps section .validation-message {
    font-size: 14px;
    color: red;
}

.maps section form .input-container {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 6px;
}

.maps section form .input-container .input {
    font-size: 16px;
    padding: 0.6em 1em;
    border: none;
    background-color: #E6E6E6;
    color: #333;
    width: 45%;
    margin-left: 12px;
    box-shadow: 0 2px 3px #cacaca;
}

.maps section form .input-container .input::placeholder {
    color: #999;
}

.maps section form .cta-button {
    width: 160px;
    height: 60px;
    color: #F5F6FF;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 800;
    background-color: var(--first-color);
    margin-top: 12px;
}

.maps section form .cta-button:hover {
    background-color: var(--second-color);
}

/*Slide parthers*/
.parthers {
    width: 90%;
    text-align: center;
    padding: 50px 0px 50px 0px;
    margin: 0 auto;
    box-sizing: border-box;
}

.parthers h2,
.parthers p {
    color: #29366B;
}

.parthers p {
    font-weight: 600;
}

.parthers .logo-slider {
    display: flex;
    max-width: 100%;
    position: relative;
}

.parthers .logo-slider .item {
    background-color: #FFF;
    border-radius: 8px;
    padding: 15px;
}

.parthers .logo-slider img {
    display: flex;
    width: 60%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    border-radius: inherit;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.parthers .logo-slider .slick-slide {
    margin: 15px;
}

.parthers .logo-slider .slick-dots li button::before {
    font-size: 16px;
    color: #253269;
    opacity: 0.5;
}

.parthers .logo-slider .slick-dots li.slick-active button::before {
    color: #253269;
    opacity: 1;
}

.parthers .logo-slider .slick-next:before,
.parthers .logo-slider .slick-prev:before {
    font-size: 28px;
    color: #253269;
    opacity: 0.8;
}

.parthers .logo-slider .slick-next,
.parthers .logo-slider .slick-prev {
    width: 20px;
    height: 20px;
    transform: scale(1.2);
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
    cursor: grab;
}

/*Mensaje Showroom*/
.msg-showroom {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/images/showroom.webp');
    background-size: cover;
    background-position: center;
}

.msg-showroom .msg-showroom-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.msg-showroom.active .msg-showroom-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpShowroom 1s ease forwards;
}

.msg-showroom .msg-showroom-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 0.5rem;
}

/*animacion*/
@keyframes fadeInUpShowroom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Tap Exterior Interior*/
.rectangles {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F5F6FF;
    padding: 50px 0px 0px 0px;
}

.rectangles h2 {
    color: #29366B;
}

.rectangles p {
    color: #29366B;
    font-weight: 600;
}

.tap-ext-int {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #29366B;
    background-color: #FFF;
}

.tap-ext-int .question {
    margin-right: 20px;
}

.tap-ext-int .question p {
    font-weight: bold;
}

.tap-ext-int .int,
.tap-ext-int .ext,
.tap-ext-int .can {
    display: flex;
    align-items: center;
}

.tap-ext-int .int label,
.tap-ext-int .ext label,
.tap-ext-int .can label {
    margin-left: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tap-ext-int .int input[type="radio"],
.tap-ext-int .ext input[type="radio"],
.tap-ext-int .can input[type="radio"] {
    display: none;
}

.tap-ext-int .int label::before,
.tap-ext-int .ext label::before,
.tap-ext-int .can label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 5px;
}

.selected {
    font-weight: bold;
}

.selected::before {
    background-color: var(--first-color);
}

/*Slide rectangle*/
/* .rectangles {
    background-color: #FFF;
    align-items: center;
    text-align: center;
    color: #000;
    padding: 50px 0px 0px 0px;
    margin: 0 auto;
}

.rectangles h2 {
    color: #000;
}

.rectangles p {
    font-weight: 600;
}

.rectangles .logo-slider .item {
    background-color: #FFF;
    border-radius: 8px;
    position: relative;
}

.rectangles .logo-slider .item button h2 {
    border-radius: 8px;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    font-size: 62px;
    cursor: pointer;
}

.rectangles .logo-slider img {
    width: 100%;
    height: 260px;
}

.rectangles .logo-slider .slick-slide {
    margin: 15px;
}

.rectangles .logo-slider .slick-dots li.slick-active button:before {
    background-color: transparent;
}

.rectangles .logo-slider .slick-dots li button::before {
    font-size: 12px;
}

.rectangles .logo-slider .slick-next:before,
.rectangles .logo-slider .slick-prev:before {
    color: #000;
    font-size: 24px;
}

.rectangles .slick-prev {
    left: 45px;
    z-index: 1;
}

.rectangles .slick-next {
    right: 65px;
    z-index: 1;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
    cursor: grab;
}

.rectangles .logo-slider .slick-next:before,
.rectangles .logo-slider .slick-prev:before {
    color: #FFF;
    font-size: 45px;
} */

/*Mensaje Contact*/
.msg-contact {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/images/contact2.webp');
    background-size: cover;
    background-position: center;
}

.msg-contact .msg-contact-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.msg-contact.active .msg-contact-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpContact 1s ease forwards;
}

.msg-contact .msg-contact-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 0.5rem;
}

/*animacion*/
@keyframes fadeInUpContact {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Price*/
.price {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 50px 10px 50px 10px;
}

.price .validation-message {
    font-size: 14px;
    color: red;
}

.price h2 {
    color: #29366B;
}

.price p {
    color: #29366B;
    font-weight: 600;
}

.price form {
    width: 100%;
}

.price form .input-container {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 6px;
    justify-content: center;
}

.price form .input-container .input,
.price form .input-container select {
    font-size: 16px;
    padding: 0.6em 1em;
    border: none;
    background-color: #E6E6E6;
    color: #333;
    width: 28%;
    margin-left: 12px;
    box-shadow: 0 2px 3px #cacaca;
}

.price form .input-container .input::placeholder,
.price form .input-container select::placeholder {
    color: #999;
}

.price form .input-container select option[selected] {
    color: #999;
}

.price .cta-button {
    width: 160px;
    height: 60px;
    color: #000;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 800;
    background-color: var(--first-color);
    margin-top: 12px;
}

.price .cta-button:hover {
    background-color: var(--second-color);
}

/*Mensaje exterior*/
.msg-exterior {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/images/exterior.webp');
    background-size: cover;
    background-position: center;
}

.msg-exterior .msg-exterior-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.msg-exterior.active .msg-exterior-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpExterior 1s ease forwards;
}

.msg-exterior .msg-exterior-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 0.5rem;
}

/*animacion*/
@keyframes fadeInUpExterior {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Collage destacado*/
.container-outstanding {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 40px 0px 40px 0px;
}

.container-outstanding h2 {
    color: #29366B;
    ;
}

.container-outstanding .wpc-outstanding {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 150px 10px 150px;
    width: 100%;
}

.container-outstanding .outstanding {
    flex-basis: calc(33.333% - 20px);
    padding: 20px 0px 20px 0px;
    text-align: justify;
    transition: transform 0.3s ease;
}

.container-outstanding .outstanding:hover {
    transform: scale(1.1);
}

.container-outstanding .outstanding h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.container-outstanding .outstanding p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.container-outstanding .outstanding .prices {
    font-size: 16px;
    color: var(--second-color);
}

/*Slide Collage Multiple*/
.swiper-container {
    width: 100%;
    padding: 20px 20px 20px 20px;
    overflow: hidden;
    position: relative;
}

.swiper-container .swiper-wrapper .outstanding h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center
}

.swiper-container .swiper-wrapper .outstanding p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.swiper-container .swiper-wrapper .outstanding .prices {
    font-size: 16px;
    color: var(--second-color);
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    color: #D5BFA3;
    font-size: 24px;
}

.swiper-container .swiper-button-prev .swiper-navigation-icon,
.swiper-container .swiper-button-next .swiper-navigation-icon {
    display: none;
}

.swiper-container .swiper-button-prev::after {
    content: '';
}

.swiper-container .swiper-button-next::after {
    content: '';
}

.swiper-slide {
    width: auto;
}

.fila-imagenes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
}

.outstanding {
    width: 80%;
    text-align: center;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: inline-block;
    transition: transform 0.3s ease;
}

.outstanding:hover {
    transform: scale(1.1);
}

/*Mensaje Interior*/
.msg-interior {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/images/interior.webp');
    background-size: cover;
    background-position: center;
}

.msg-interior .msg-interior-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.msg-interior.active .msg-interior-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpInterior 1s ease forwards;
}

.msg-interior .msg-interior-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 0.5rem;
}

/*animacion*/
@keyframes fadeInUpInterior {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Detalles de producto*/
.product-container {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    align-items: center;
}

.product-container .image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.product-container .image img {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.product-container .product-details {
    width: 50%;
    padding: 50px 60px 0px 10px;
    box-sizing: border-box;
}

.product-container .product-details h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.product-container .product-details .black {
    color: #000;
}

.product-container .product-details .green {
    color: var(--second-color);
}

.product-container .product-text {
    margin-bottom: 10px;
}

.product-container .product-button {
    background-color: var(--first-color);
    color: #000;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}

/*Especificaciones*/
.specifications {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specifications .retangle {
    background-color: #f2f2f2;
    width: 80%;
    height: auto;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
}

.specifications th,
.specifications td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.specifications .bolds {
    font-weight: bold;
}

.specifications .grays {
    color: gray;
}

/*Acordion*/
.contenedor-acordeon {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    margin-top: 80px;
}

.contenedor-acordeon h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 35px;
}

.contenedor-acordeon .acordeon {
    background: #fff;
}

.contenedor-acordeon .acordeon label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 16px;
    background: #FFF;
    color: #000;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 300ms ease;
    border-bottom: 1px solid #000;
    font-weight: bold;
}

.acordeon label::after {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.contenedor-acordeon .acordeon label:hover,
.btn-acordeon:checked~label {
    color: var(--second-color);
}

.contenedor-acordeon .acordeon .contenido-acordeon {
    padding: 0px;
    margin: 0px 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 300ms ease;
}

.contenedor-acordeon .acordeon .btn-acordeon:checked~.contenido-acordeon {
    max-height: 600px;
    padding: 15px 0px;
}

.contenedor-acordeon .acordeon .btn-acordeon {
    display: none;
}

/*Video*/
.container-video {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.line {
    display: flex;
    width: 100%;
    background-image: url('../assets/images/line-video.webp');
    align-items: center;
    background-size: cover;
    background-position: center;
}

.container-video .text {
    width: 50%;
    padding: 0px 60px 0px 60px;
    color: #FFF;
}

.container-video .video {
    width: 50%;
    height: 100%;
}

.container-video .video iframe {
    width: 90%;
    height: 360px;
}

/*Mensaje canceleria*/
.msg-canceleria {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/images/canceleria.webp');
    background-size: cover;
    background-position: center;
}

.msg-canceleria .msg-canceleria-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.msg-canceleria.active .msg-canceleria-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpCanceleria 1s ease forwards;
}

.msg-canceleria .msg-canceleria-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 0.5rem;
}

/*animacion*/
@keyframes fadeInUpCanceleria {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Questions full*/
.questions {
    max-width: 100%;
    margin: 40px 40px;
    padding-top: 100px;
    overflow: hidden;
    height: auto;
}

.questions .questions_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.questions .questions_container .questions_title {
    width: 40%;
}

.questions .questions_container .questions_title>h1 {
    font-size: 46px;
    font-weight: 400;
    line-height: 46px;
    padding: 0px 40px;
    text-transform: uppercase;
    color: #424242;
}

.questions .questions_container .questions_content_full {
    width: 60%;
    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 {
    cursor: pointer;
    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;
}

/*Terminos y condiciones*/
.conditions_and_terms {
    max-width: 100%;
    margin: 40px 40px;
    padding-top: 100px;
    overflow: hidden;
    height: auto;
}

.conditions_and_terms .conditions_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.conditions_and_terms .conditions_container .conditions_title {
    width: 40%;
    display: flex;
}

.conditions_and_terms .conditions_container .conditions_title>h1 {
    font-size: 31px;
    font-weight: 400;
    line-height: 31px;
}

.conditions_and_terms .conditions_container .conditions_items {
    width: 60%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-direction: column;
}

.conditions_and_terms .conditions_container .conditions_items .condition_item .condition_title_one {
    font-size: 19px;
    font-weight: 500;
    line-height: 22.8px;
    padding-bottom: 20px;
}

.conditions_and_terms .conditions_container .conditions_items .condition_item .condition_title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 20px;
}

.conditions_and_terms .conditions_container .conditions_items .condition_item .condition_description {
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    color: #5f5e5c;
}

/*Adaptacion pc 1248px*/
@media only screen and (min-width: 1024px) {

    .container-desk {
        max-width: 1920px;
        margin: 0 auto;
        overflow: hidden;
        height: auto;
    }

    /*Slider principal*/
    .slider-principal {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Slide our services*/
    .services {
        width: 100%;
        height: fit-content;
        flex-direction: initial;
    }

    .services .text-overlay {
        bottom: 40%;
    }

    /*Slide cubes*/
    .cubes .carousel_cubes img {
        object-fit: fill;
    }

    /*Mensaje exterior*/
    .msg-exterior {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje interior*/
    .msg-interior {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje canceleria*/
    .msg-canceleria {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje showroom*/
    .msg-showroom {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje contact*/
    .msg-contact {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Detalles de producto*/
    .product-container {
        height: auto;
        padding: 50px 0px 50px 0px;
    }

    /*Video*/
    .container-video {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

}

/*Adaptacion tablets*/
@media only screen and (max-width: 1023px) {

    /*Menu*/
    header nav a {
        margin: 0px;
    }

    header nav .cta-button {
        display: none;
    }

    .nav__links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .nav__links.active {
        display: flex;
        padding-top: 20px;
    }

    .nav__links li {
        margin: 5px 0;
    }

    .nav__burger {
        display: block;
    }

    .nav__burger button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 36px;
        height: 36px;
    }

    .nav__burger span {
        background-color: #fff;
        height: 3px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav__burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    header nav .dropdown-content a {
        padding: 16px 25px;
    }

    .header .nav .nav__data {
        width: 100%;
    }

    /*Slider principal*/
    .slider-principal {
        width: 100%;
        height: 750px;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text {
        padding: 90px 10px 10px 10px;
    }

    .slider-principal .slides-wrapper .slide-principal .container_materials {
        padding: 0px;
    }

    .slider-principal .slides-wrapper .slide-principal .container_materials .images img {
        width: 90%;
        height: auto;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text h2 {
        font-size: 22px;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text p {
        font-size: 16px;
    }

    /*Mensaje rectangle*/
    .message h2 {
        font-size: 22px;
    }

    .message p {
        font-size: 16px;
        padding: 10px 50px 10px 50px;
    }

    /*Slide Categories*/
    .container-slider #tranding .tranding-slider {
        height: 24rem;
    }

    /*Benefits*/
    .container-beneficies .wpc-benefits .benefit img {
        width: 120px;
        height: auto;
    }

    .container-beneficies .wpc-benefits .benefit h3 {
        text-align: start;
    }

    .container-beneficies .wpc-benefits .benefit p {
        text-align: start;
    }

    /*Slide our services*/
    .services .text-overlay {
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /*Contacto*/
    .contact h2 {
        font-size: 30px;
    }

    /*Maps*/
    .maps iframe {
        width: 100%;
        height: 600px;
    }

    .maps section {
        margin-right: 0px;
    }

    .maps section:last-child {
        padding: 0px;
    }

    .maps section iframe {
        width: 100%;
        height: 500px;
    }

    /*Slide parthers*/
    .parthers {
        width: 90%;
    }

    .parthers .logo-slider img {
        width: 60%;
    }

    /*Mensaje exterior*/
    .msg-exterior {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Collage destacado*/
    .container-outstanding .wpc-outstanding {
        padding: 0px;
    }

    .container-outstanding .wpc-outstanding .outstanding img {
        width: 180px;
        height: auto;
    }

    /*Mensaje interior*/
    .msg-interior {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje showroom*/
    .msg-showroom {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Mensaje contact*/
    .msg-contact {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Price*/
    .price .input,
    .price select {
        width: 90%;
    }

    /*Detalles de producto*/
    .product-container {
        height: auto;
    }

    /*Especificaciones*/
    .specifications .retangle {
        width: 90%;
    }

    /*Acordion*/
    .contenedor-acordeon {
        margin-top: 30px;
    }

    /*Video*/
    .container-video {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-attachment: scroll;
    }

    .container-video .video {
        width: 50%;
        height: 65%;
    }

    .container-video .line {
        height: inherit;
    }

    .container-video .line .text {
        padding: 0px 30px 0px 30px;
    }

    .container-video .line .text h2 {
        font-size: 20px;
    }

    /*Tablas*/
    table {
        width: 100%;
        font-size: 16px;
    }

    table tr {
        display: flex;
        margin-bottom: 1em;
    }

    table tr td {
        width: 100% !important;
    }

    table td[data-titulo] {
        display: flex;
    }

    table td[data-titulo]::before {
        content: attr(data-titulo);
        width: 90px;
        color: silver;
        font-weight: bold;
    }

    table thead {
        display: none;
    }

    /*Footer 2*/
    .footer-2 .container .footer-logo {
        width: 130px;
    }

    /*Questions full*/
    .questions {
        margin: 40px 20px;
    }

    .questions .questions_container {
        flex-direction: column;
    }

    .questions .questions_container .questions_title {
        width: 100%;
    }

    .questions .questions_container .questions_title>h1 {
        font-size: 36px;
        line-height: 36px;
        padding: 0px;
    }

    .questions .questions_container .questions_content_full {
        width: 100%;
        padding-top: 20px;
    }

    /*Terminos y condiciones*/
    .conditions_and_terms {
        max-width: 100%;
        margin: 0px 20px;
    }

    .conditions_and_terms .conditions_container {
        flex-direction: column;
        margin: 40px 0px;
    }

    .conditions_and_terms .conditions_container .conditions_title {
        width: 100%;
    }

    .conditions_and_terms .conditions_container .conditions_title>h1 {
        font-size: 36px;
        line-height: 36px;
        padding-bottom: 40px;
    }

    .conditions_and_terms .conditions_container .conditions_items {
        width: 100%;
    }

    .conditions_and_terms .conditions_container .conditions_items .condition_item .condition_title {
        padding-bottom: 20px;
    }

    .conditions_and_terms .conditions_container .conditions_items .condition_item .condition_description {
        width: 100%;
    }

}

/*Adaptacion movil*/
@media only screen and (max-width: 668px) {

    /*Slider principal*/
    .slider-principal {
        height: 650px;
        display: block;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text {
        width: 100%;
        height: 100%;
    }

    .slider-principal .slides-wrapper .slide-principal .container_materials {
        display: none;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text .text,
    .slider-principal .slides-wrapper .slide-principal .container_materials .images {
        padding: 10% 5%;
    }

    .slider-principal .slides-wrapper .slide-principal .container_text .cta-button {
        width: 180px;
        margin-top: 10px;
    }

    /*Mensaje rectangle*/
    .message {
        padding: 60px 20px 60px 20px;
    }

    .message h2 {
        font-size: 24px;
    }

    .message p {
        padding: 2px;
        font-size: 14px;
    }

    /*Beneficios*/
    .container-beneficies {
        padding: 40px 20px 40px 20px;
    }

    .container-beneficies h2 {
        font-size: 24px;
    }

    .container-beneficies .wpc-benefits {
        display: block;
        padding: 0px;
    }

    /*Slide cubes*/
    .cubes {
        padding: 40px 20px 40px 20px;
    }

    .cubes h2 {
        font-size: 24px;
        padding-top: 1rem;
        text-align: center;
    }

    /*Contacto*/
    .contact {
        padding: 30px 20px 30px 20px;
        font-size: small;
    }

    .contact section {
        flex: initial;
        margin-right: 0px;
        margin-bottom: 0px;
    }

    .contact section:last-child {
        padding: 0px;
    }

    .contact section h2 {
        font-size: 24px;
    }

    .contact section p {
        font-size: 14px;
    }

    .contact section a {
        padding: 1rem;
    }

    .contact section .cta-button {
        width: 160px;
        height: 45px;
        font-size: small;
    }

    /*Maps*/
    .maps {
        font-size: small;
        padding: 20px 20px 20px 20px;
    }

    .maps section h2 {
        font-size: 24px;
    }

    .maps section p {
        font-size: 14px;
    }

    .maps section:last-child {
        padding: 0px;
    }

    .maps iframe {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /*Slide parthers*/
    .parthers {
        width: 80%;
    }

    .parthers .logo-slider img {
        width: 100%;
    }

    /*Footer 2*/
    .footer-2 {
        font-size: small;
        padding: 30px 0px 30px 0px;
    }

    .footer-2 .container {
        display: grid;
        justify-content: center;
        align-items: center;
        justify-items: center;
        align-content: center;
        gap: 20px;
    }

    .footer-2 .container .footer-menu {
        width: 100%;
        margin-right: 0px;
    }

    .footer-2 .container .footer-logo {
        margin: 0 100px;
    }

    /*Footer1*/
    .footer-1 {
        font-size: small;
    }

    /*Whatsapp*/
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .whatsapp-button img {
        width: 45px;
        height: 45px;
    }

    /*Mensaje exterior*/
    .msg-exterior {
        height: 450px;
    }

    .msg-exterior .msg-exterior-content h1 {
        font-size: 42px;
    }

    /*Collage destacado*/
    .container-outstanding {
        padding: 20px 0px 20px 0px;
    }

    .container-outstanding .wpc-outstanding {
        display: block;
        padding: 0px;
    }

    /*Slide Categories*/
    .container-slider {
        padding: 30px 20px 30px 20px;
    }

    .container-slider #tranding {
        padding-top: 20px;
    }

    /*Slide Collage Multiple*/
    .swiper-container {
        padding: 20px 20px 20px 20px;
    }

    /*Mensaje interior*/
    .msg-interior {
        height: 450px;
    }

    .msg-interior .msg-interior-content h1 {
        font-size: 42px;
    }

    /*Detalles de producto*/
    .product-container {
        display: block;
        height: auto;
    }

    .product-container .image {
        width: 100%;
        padding-top: 2rem;
    }

    .product-container .product-details {
        width: 100%;
        padding: 10px 10px 10px 10px
    }

    .product-container .product-details .contenedor-acordeon {
        margin-top: 0px;
    }

    /*Mensaje canceleria*/
    .msg-canceleria {
        height: 450px;
    }

    .msg-canceleria .msg-canceleria-content h1 {
        font-size: 42px;
    }

    /*Especificaciones*/
    .specifications {
        width: 100%;
        display: inline-flex;
        padding: 20px 20px 20px 20px;
    }

    .specifications .bolds {
        font-size: 16px;
    }

    .specifications .grays {
        font-size: 16px;
    }

    .specifications .retangle {
        width: 100%;
    }

    /*Tabla*/
    table tr {
        flex-direction: column;
    }

    table tr td {
        width: 100% !important;
    }

    /*Acordion*/
    .contenedor-acordeon {
        margin-top: -10px;
        margin-bottom: 10px;
        padding: 20px;
    }

    .contenedor-acordeon .acordeon label {
        font-size: small;
    }

    /*Video*/
    .container-video {
        display: block;
        height: auto;
    }

    .container-video .line {
        display: block;
        background-color: #000;
        background-image: none;
    }

    .container-video .line img {
        width: 100%;
        height: 260px;
    }

    .container-video .line .video {
        width: 100%;
        height: auto;
    }

    .container-video .line .video iframe {
        width: 100%;
    }

    .container-video .line .text {
        width: 100%;
        font-size: small;
        padding: 20px 20px 20px 20px
    }

    .container-video .line .text h2 {
        font-size: 14px;
    }

    /*Mensaje showroom*/
    .msg-showroom {
        height: 450px;
    }

    .msg-showroom .msg-showroom-content h1 {
        font-size: 42px;
    }

    /*Tap Exterior Interior*/
    .tap-ext-int {
        flex-direction: column;
        align-content: center;
    }

    .tap-ext-int .question {
        padding-bottom: 20px;
    }

    /*Mensaje contacto*/
    .msg-contact {
        height: 450px;
    }

    .msg-contact .msg-contact-content h1 {
        font-size: 42px;
    }

    /*Slide our services*/
    .services .text-overlay {
        display: none;
    }

    /*Price*/
    .price form .input-container {
        flex-direction: column;
    }

    .price form .input-container .input,
    .price form .input-container select {
        width: 100%;
        margin-left: 0px;
        padding: 1em 1em;
        margin-top: 5px;
    }

    /*Questions full*/
    .questions .questions_container .questions_title>h1 {
        font-size: 31px;
        line-height: 31px;
    }

    .questions .questions_container .questions_content_full {
        padding-top: 30px;
    }

    /*Terminos y condiciones*/
    .conditions_and_terms .conditions_container {
        flex-direction: column;
    }

    .conditions_and_terms .conditions_container .conditions_title {
        width: 100%;
    }

    .conditions_and_terms .conditions_container .conditions_title>h1 {
        font-size: 31px;
    }

    .conditions_and_terms .conditions_container .conditions_items {
        width: 100%;
    }

    .conditions_and_terms .conditions_container .conditions_items .condition_item .condition_title_one {
        font-size: 18px;
    }

    .conditions_and_terms .conditions_container .conditions_items .condition_item .condition_title {
        font-size: 15px;
    }

    .conditions_and_terms .conditions_container .conditions_items .condition_item .condition_description {
        font-size: 15px;
    }

}