:root {
    --blue: #1d6fb8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: initial;
    transition: all 0.3s cubic-bezier(0.38, 1.15, 0.7, 1.12);
    /* font-weight: normal; */
    font-family: "Mukta", sans-serif;
}

*::selection {
    background: var(--blue);
    color: #fff;
}

html {
    font-size: 62.5%;
    /* overflow-x: hidden; */
}

html::-webkit-scrollbar {
    width: 1.3rem;
}

html::-webkit-scrollbar-track {
    background: #3333;
}

html::-webkit-scrollbar-thumb {
    background: var(--blue);
}

.circlephone {
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    color: inherit;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 2px solid #25d366;
    width: 150px;
    height: 150px;
    bottom: -25px;
    right: 10px;
    position: absolute;
    border-radius: 100%;
    opacity: 0.5;
    animation: circle-anim 2.4s infinite ease-in-out !important;
    transition: all 0.5s;
    transform-origin: center;
}
.img-circle {
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    color: inherit;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    background-color: #25d366;
    width: 72px;
    height: 70px;
    bottom: 14px;
    right: 49px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.9;
    transform-origin: center;
}
@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-8deg);
    }
    50% {
        -webkit-transform: rotate(8deg);
    }
    100% {
        -webkit-transform: rotate(-8deg);
    }
}
@-moz-keyframes circle-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: 0.1;
        -moz-opacity: 0.1;
        -webkit-opacity: 0.1;
        -o-opacity: 0.1;
    }
    30% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.5;
        -moz-opacity: 0.5;
        -webkit-opacity: 0.5;
        -o-opacity: 0.5;
    }
    100% {
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: 0.6;
        -moz-opacity: 0.6;
        -webkit-opacity: 0.6;
        -o-opacity: 0.1;
    }
}
@-webkit-keyframes circle-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }
    30% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}
@-o-keyframes circle-anim {
    0% {
        -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
        -o-opacity: 0.1;
    }
    30% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        -o-opacity: 0.5;
    }
    100% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        -o-opacity: 0.1;
    }
}
@keyframes circle-anim {
    0% {
        transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: 0.1;
    }
}
@-moz-keyframes circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}
@-webkit-keyframes circle-fill-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}
@-o-keyframes circle-fill-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}
@keyframes circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
}
@keyframes tossing {
    0% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(-8deg);
    }
}
.img-circleblock {
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    color: inherit;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    width: 68px;
    height: 65px;
    background-image: url(../img/whatsapp_icon.svg);
    fill: #fff;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    -webkit-animation-name: tossing;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    transform-origin: center;
}
.circle-fill {
    cursor: pointer;
    color: inherit;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    background-color: #25d366;
    width: 100px;
    height: 100px;
    bottom: 0px;
    right: 35px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    animation: circle-fill-anim 2.3s infinite ease-in-out;
    transition: all 0.5s;
    transform-origin: center;
}
#wa_button {
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    outline: 0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    bottom: 25px;
    right: 0px;
    position: fixed;
    z-index: 999;
}

.bottomright {
    position: fixed;
    bottom: 20px;
    right: 16px;
    font-size: 18px;
    z-index: 100;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background-image: url(../img/whatsapp-icon.png);
    background-repeat: no-repeat;
    background-size: 80px 80px;
    background-position: center;
    box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.75);
}
section {
    min-height: 90vh;
    padding: 0 7%;
    padding-top: 7.5rem;
}

.btn-home {
    display: inline-block;
    border: 0.2rem solid var(--blue);
    font-size: 1.7rem;
    color: var(--blue);
    background: #c5e4fb;
    margin-top: 1rem;
    padding: 0.7rem 3rem;
}

.btn-home:hover {
    background: var(--blue);
    color: #fff;
    border-radius: 5rem;
}

.btn {
    display: inline-block;
    border: 2px solid var(--blue);
    font-size: 2.1rem;
    /* color: var(--blue);
    background: #c5e4fb; */
    background: var(--blue);
    color: #fff;
    border-radius: 5rem;
    margin-top: 1rem;
    padding: 0.7rem 3rem;
    cursor: pointer;
}

.btn:hover {
    background: white;
    color: var(--blue);
    font-weight: 700;
    /* border: ; */
}

.heading {
    font-size: 3.5rem;
    color: #007ac1;
    text-align: center;
    text-transform: initial;
    padding: 1rem;
}
.header2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    height: 7%;
    z-index: 1000;
    background-color: #fff;
}
.header2 p ion-icon {
    vertical-align: middle;
}
.header2 p img {
    width: 2rem;
    height: 2rem;
    vertical-align: -3px;
}
.header2 .address .line {
    margin: 0 1rem;
}
.header2 .email {
    flex: 1;
}
.header2 p span,
.header2 p {
    font-size: 1.9rem;
    vertical-align: middle;
}
.header2 .num {
    font-size: 2.1rem;
}

header {
    position: fixed;
    top: 7%;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #007ac1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 7%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

header .logo {
    width: 21%;
}
header .navbar {
    display: flex;
}
header .navbar a {
    font-size: 1.7rem;
    margin-left: 2rem;
    /* color: #666; */
    color: #fff;
}

header .navbar a:hover {
    /* color: var(--blue); */
    color: #eee;
}

#menu {
    font-size: 2.5rem;
    /* color: #666; */
    color: #fff;
    border: 0.2rem solid rgb(255, 255, 255);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 10000;
}
.home {
    min-height: 67vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent),
        url(../img/home.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content {
    width: 60rem;
    padding: 4rem 0;
    padding-bottom: 15rem;
}

.home .content h4 {
    color: #fff;
    font-size: 4.3rem;
}

.home .content p {
    color: #aaa;
    font-size: 1.9rem;
    padding: 1rem 0;
}

.icons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -10rem;
}

.icons-container .icons {
    width: 25rem;
    margin: 1rem;
    padding: 2rem 1rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #fff;
}
.icons-container .icons:hover {
    transform: translateY(-1rem);
}

.icons-container .icons img {
    width: 9rem;
    /* height: 6rem; */
    margin: 1rem 0;
}

.icons-container .icons h3 {
    font-size: 2.5rem;
    color: var(--blue);
}

.icons-container .icons p {
    font-size: 1.3rem;
    color: #999;
    padding: 1rem 0;
}
.project .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.project .box-container .box {
    overflow: hidden;
    border-radius: 0.5rem;
    width: 27rem;
    height: 45rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 1rem;
}

.project .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.project .box-container .box .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 3.5rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
}

.project .box-container .box:hover .title {
    bottom: -100%;
}

.project .box-container .box .info {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.project .box-container .box:hover .info {
    bottom: 2rem;
    transition-delay: 0.3s;
}

.project .box-container .box .info h3 {
    color: var(--blue);
    font-size: 2rem;
}

.project .box-container .box .info p {
    color: #999;
    font-size: 1.3rem;
    padding: 1rem 0;
}

.project .box-container .box .info a {
    color: #666;
    font-size: 1.4rem;
}

.project .box-container .box .info a:hover {
    color: #e55401;
}
.contenedor-project {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* .contenedor-project .contenedor-button button {
   border: 0.2rem solid #1d6fb8;
   font-size: 1.5rem;
   color: var(--blue);
   background: #c5e4fb;
   margin-top: 1rem;
   padding: 0.7rem 3rem;
}
.contenedor-project .contenedor-button button:hover {
   background: rgb(52, 102, 211);
   color: #fff;
   border-radius: 5rem;
} */

.team {
    background: #eee;
}

.team .box-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.team .box-container .box {
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 1rem;
    background: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 35rem;
    width: 27rem;
    position: relative;
}

.team .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team .box-container .box .info {
    position: absolute;
    bottom: -7rem;
    left: 0;
    width: 100%;
    background: #fff;
}

.team .box-container .box:hover .info {
    bottom: 0;
}

.team .box-container .box:hover {
    transform: scale(1.03);
}

.team .box-container .box .info h3 {
    font-size: 2.5rem;
    color: var(--blue);
}

.team .box-container .box .info p {
    font-size: 1.5rem;
    color: #999;
}

.team .box-container .box .info .share {
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    padding: 1rem 0;
}
.modal-team {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-team .contenedor-modal {
    width: 37rem;
    height: 37rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
}
.modal-team .contenedor-modal img {
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
}
.modal-team .contenedor-modal p {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
}
.modal-team .contenedor-modal a:active {
    color: inherit;
}
.modal-team .contenedor-modal .fa-times {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    color: #444;
    font-size: 4rem;
}

.modal-team .contenedor-modal .fa-times:hover {
    transform: rotate(90deg);
}

.team .box-container .box .info .share a {
    font-size: 1.7rem;
    color: #999;
    margin: 0.5rem;
    height: 4rem;
    width: 4.5rem;
    line-height: 4rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.team .box-container .box .info .share a:hover {
    color: #fff;
    background: var(--blue);
}

.testimonial .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial .box-container .box {
    text-align: center;
    margin: 1rem;
    width: 27rem;
}

.testimonial .box-container .box .comment {
    border: 0.1rem solid var(--blue);
    padding: 1rem;
    margin-bottom: 3.5rem;
    position: relative;
    border-radius: 0.5rem;
    background: #f9f9f9;
}

.testimonial .box-container .box .comment p {
    color: var(--blue);
    font-size: 1.3rem;
    padding: 1rem 0;
}

.testimonial .box-container .box .comment i {
    color: var(--blue);
    font-size: 3rem;
    padding: 1rem;
}

.testimonial .box-container .box .comment::before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    height: 3rem;
    width: 3em;
    background: var(--blue);
    z-index: -1;
}

.testimonial .box-container .box .user {
    margin: 2rem 0;
}

.testimonial .box-container .box .user img {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .box-container .box .user h3 {
    font-size: 1.5rem;
    color: #999;
    padding: 1rem 0;
}

.testimonial .box-container .box .user .stars i {
    font-size: 2rem;
    color: gold;
}

.events {
    background: #f6fcff;
}
/* .events button {
   border: 0.2rem solid #1d6fb8;
   font-size: 1.5rem;
   color: var(--blue);
   background: #c5e4fb;
   margin-top: 1rem;
   padding: 0.7rem 3rem;
}
.events button:hover {
   background: rgb(52, 102, 211);
   color: #fff;
   border-radius: 5rem;
} */

.events .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.events .box-container .box {
    width: 35rem;
    margin: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}

.events .box-container .box img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
}

.events .box-container .box .content {
    padding: 1.5rem;
}

.events .box-container .box .content h3 {
    font-size: 1.5rem;
    color: var(--blue);
}

.events .box-container .box .content .title {
    font-size: 2rem;
    color: #333;
    display: block;
    padding-top: 1rem;
}

.events .box-container .box .content .title:hover {
    text-decoration: underline;
}

.events .box-container .box .content p {
    padding: 1rem 0;
    color: #999;
    font-size: 1.4rem;
}
.contenedor-events {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.todos-blogs .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.todos-blogs h2 {
    font-size: 3.5rem;
    color: #444;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
}
.todos-blogs .box-container .box {
    width: 35rem;
    margin: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}
.todos-blogs .box-container .box:hover {
    border: 2px solid var(--blue);
}

.todos-blogs .box-container .box img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
}
.todos-blogs .box-container .box .content {
    padding: 1.5rem;
}
.todos-blogs .box-container .box .content h3 {
    font-size: 1.5rem;
    color: var(--blue);
}

.todos-blogs .box-container .box .content .title {
    font-size: 2rem;
    color: #333;
    display: block;
    padding-top: 1rem;
}

.todos-blogs .box-container .box .content .title:hover {
    text-decoration: underline;
}

.todos-blogs .box-container .box .content p {
    padding: 1rem 0;
    color: #999;
    font-size: 1.4rem;
}
.input-button {
    background-image: linear-gradient(to top, #31a8cf9c 0%, #5296c196 100%),
        url("../img/fondo-suscripcion.jfif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7rem 0;
}
.input-button .form h2 {
    font-size: 3rem;
    color: white;
}
.input-button .form input[type="email"] {
    background-color: rgb(255, 252, 252);
    width: 80%;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
}
.input-button .form input[type="submit"] {
    cursor: pointer;
    background-color: #c5e4fb;
    color: #1d6fb8;
    margin-top: 10px;
    width: 80%;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 8px;
    height: 4rem;
}
.input-button .form {
    width: 65%;
    background-color: #1d6fb8;
    border-radius: 10px;
    height: 30rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.input-button .form .linea {
    height: 0.3rem;
    width: 8rem;
    background-color: #c5e4fb;
    margin-top: 8px;
    margin-bottom: 25px;
}
.footer {
    width: 100%;
    background: url(../img/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.footer .box-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-left: 8rem;
}

.footer .box-container .box {
    flex: 1 1 25rem;
    margin: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--blue);
    padding: 1rem 0;
}

.footer .box-container .box p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.footer .box-container .box p i {
    padding-right: 0.5rem;
    color: var(--blue);
}

.footer .box-container .box a {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
    display: block;
}

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

.footer .credit {
    padding: 2rem 1rem;
    font-size: 2rem;
    color: #666;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer .credit a {
    color: var(--blue);
}

.container-contact {
    margin-top: 7%;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-contact:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/maquina.JPG) no-repeat center;
    background-size: cover;
    filter: blur(50px);
    z-index: -1;
}
.contact-box {
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    margin: 4rem 0;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}

.left {
    background: url(../img/maquina.JPG) no-repeat center;
    background-size: cover;
    height: 100%;
}

.right {
    padding: 25px 40px;
}

.title-contact {
    position: relative;
    padding: 0 0 10px;
    margin-bottom: 10px;
    font-size: 2.4rem;
}

.title-contact:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    border-radius: 2px;
    background-color: #1d6fb8;
}

.cotizar {
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    outline: none;
    background-color: rgba(230, 230, 230, 0.6);
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: 0.3s;
}

.cotizar:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

textarea {
    min-height: 150px;
}

footer {
    position: relative;
    width: 100%;
    background: #007ac1;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 14rem;
}

footer .social_icon,
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li {
    list-style: none;
}

footer .social_icon li a {
    font-size: 4rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover {
    transform: translateY(-10px);
}

footer .menu li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url(../img/wave.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
footer .logo-footer {
    width: 20rem;
    margin-left: 1rem;
    margin-bottom: -8rem;
}

.btn-contact {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: #1d6fb8;
    color: #fff;
    font-size: 2.1rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #1d6fb8;
}

.cotizar:focus {
    border: 2px solid rgba(30, 85, 250, 0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
    .left {
        height: 200px;
    }
    .footer .box-container {
        margin-left: 0;
    }
}
/* media queries  */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    header .logo {
        width: 20%;
    }
}


@media (max-width: 400px) {
    .contenedor-project h1 {
        font-size: 2.6rem;
    }
    .contenedor-project .contenedor-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .contenedor-project .contenedor-button button {
        font-size: 1.5rem;
    }
    html {
        font-size: 50%;
    }

    .project .box-container .box {
        width: 100%;
    }

    .team .box-container .box {
        width: 100%;
    }

    .testimonial .box-container .box {
        width: 100%;
    }
}


body {
    background: #eee;
}

.title-catalogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12rem;
    margin-bottom: 4rem;
}

/* detalle del blog */
.section__modal {
    padding: 0 4rem;
    width: 100%;
    margin-top: 15rem;
    margin-bottom: 3rem;
}
.section__modal .contenedor__blogd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section__modal .contenedor__blogd article:nth-child(1) p {
    font-size: 1.5rem;
    text-align: justify;
}
.section__modal .contenedor__blogd article:nth-child(1) small {
    font-size: 1.4rem;
    color: #007ac1;
    font-weight: bold;
    display: block;
    margin-bottom: 0.9rem;
}
.section__modal .contenedor__blogd article:nth-child(1) h2 {
    font-size: 3.5rem;
}
.section__modal .contenedor__blogd article:nth-child(1) {
    width: 70%;
}
.section__modal .contenedor__blogd article:nth-child(1) img {
    width: 80%;
    margin: 1rem;
}
.section__modal .contenedor__blogd article:nth-child(2) h2 {
    font-size: 2.7rem;
}
.section__modal .contenedor__blogd article:nth-child(2) p {
    font-size: 1.5rem;
}
.section__modal .contenedor__blogd article:nth-child(2) small {
    font-size: 1.3rem;
}
.section__modal .contenedor__blogd article:nth-child(2) .blog__reciente {
    width: 100%;
    height: 20rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    /* background-image: linear-gradient(to top, #000000a0 0%, #00000092 100%), url("https://rab-import-assets.s3.amazonaws.com/blogs/blog2.jpg"); */
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.section__modal .contenedor__blogd article:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 25%;
}

/* categorías de productos */
.content-pruducts {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.filtros__categorias {
    display: none;
    position: fixed;
    width: 100%;
    padding: 0.5rem 0.8rem;
    z-index: 100;
    left: 0;
    top: 11.7rem;
    background-color: #fff;
}
.filtros__categorias p i {
    vertical-align: middle;
}
.filtros__categorias p {
    font-size: 1.7rem;
}

.contenedor-text-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ltn__pagination_categorias ul {
    margin: 2rem 2rem;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ltn__pagination_categorias {
    /* display: flex;
   flex-direction: column; */
}

.ltn__pagination_categorias ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    /* font-family: var(--ltn__heading-font); */
    font-family: "Poppins", sans-serif;
}
.ltn__pagination_categorias ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    /* font-family: var(--ltn__heading-font); */
    font-family: "Poppins", sans-serif;
}

.ltn__pagination_categorias ul li:hover a,
.ltn__pagination_categorias ul li.active a {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--blue);
}
.ltn__pagination_categorias ul li a {
    height: 50px;
    width: 50px;
    line-height: 46px;
    border: 2px solid var(--blue);
    text-align: center;
    display: block;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    font-size: 1.5rem;
    color: #000;
}
.wrapper {
    /* min-height: 100vh; */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.search_box {
    background: #007ac1;
    position: relative;
    padding: 15px;
    border-radius: 50px;
    display: flex;
}

.search_box .search_btn i {
    font-size: 2rem;
}
.search_box .search_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007ac1;
    margin-right: 15px;
    cursor: pointer;
}

.search_box .input_search {
    outline: none;
    font-size: 2rem;
    border: 0;
    background: #fff;
    border-radius: 50px;
    padding: 15px 20px;
    width: 300px;
    height: 50px;
    color: #007ac1;
}

.search_box .input_search::placeholder {
    color: #007ac1;
}

.search_box .input_search::-webkit-input-placeholder {
    color: #007ac1;
}

.search_box .input_search:-ms-input-placeholder {
    color: #007ac1;
}
.show-filtros {
    /* float: left; */
    /* width: 88%; */
    display: flex;
    flex-wrap: wrap;
    width: 50rem;
    height: auto;
}
.show-filtros a {
    margin: 0.3rem;
    box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.3);
}

.show-filtros a.btn-limpa-filtro {
    height: 30px;
    font-size: 14px;
    padding: 3px 15px;
}

a.btn-util,
button.btn-util {
    display: inline-block;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
    border-radius: 40px;
    border: #fff solid 1px;
    padding: 8px 25px;
    background: #202020;
}

.limite_parrafo {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* margin: 0 0 1em 0; */
}

.category-peoduct {
    width: 26%;
    z-index: 10;
}
.category-peoduct .cat1,
.category-peoduct .cat2,
.category-peoduct .cat3 {
    box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    background-color: white;
}
.container__product {
    width: 71%;
    background-color: #eee;
}
.category-peoduct h3 {
    font-size: 2.3rem;
    color: #000;
}
.category-peoduct h2 {
    font-size: 2.6rem;
    color: #000;
}
.search {
    border-radius: 10px;
    margin-top: 1rem;
    height: 3.3rem;
    width: 100%;
    outline: none;
    border: 1px solid black;
    background-color: rgb(254, 254, 254);
    padding: 0 1rem;
}
.inputs-checkbox::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
}
.inputs-checkbox::-webkit-scrollbar-thumb {
    background-color: #007ac188;
}
.inputs-checkbox::-webkit-scrollbar-thumb:hover {
    background-color: #007ac1;
}
.inputs-checkbox {
    margin-top: 2rem;
    max-height: 30rem;
    overflow: auto;
    margin-bottom: 3rem;
}
.inputs-checkbox div input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
}
.inputs-checkbox div.filter_hidden {
    display: none;
}
.inputs-checkbox label {
    font-size: 2rem;
    text-transform: capitalize;
    margin-left: 0.1rem;

    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.container .title {
    font-size: 3.5rem;
    color: #444;
    /* flex: 1; */
    margin-bottom: 2%;
    text-transform: uppercase;
    text-align: center;
    margin-right: 3rem;
}

.container .products-container .product {
    width: calc(25% - 2rem);
    border-radius: 20px;
}
.container .products-container {
    width: 100%;
    /* margin-left: 2rem; */
    /* display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:2rem; */
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* width: 70rem; */
    justify-content: center;
}

.product hr {
    height: 1px;
    background-color: rgb(217, 209, 209);
}
.product {
    /* margin: 1rem; */
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    outline: 0.1rem solid #ccc;
    outline-offset: -1.5rem;
    height: 43rem;
    width: 23rem;
    cursor: pointer;
}

.product:hover {
    outline: 0.2rem solid #1d6fb8;
    outline-offset: 0;
}

.product img {
    height: 18rem;
    width: 100%;
    object-fit: contain;
}

.product:hover img {
    transform: scale(0.9);
}

.product .marca {
    font-weight: 100;
}
.product h3::first-letter {
    text-transform: uppercase;
}
.product h3 {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 2rem;
    color: #444;
    text-transform: lowercase;
}

.product:hover h3 {
    color: #1d6fb8;
}

.product .price {
    font-size: 2rem;
    color: #444;
}

.products-preview {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}

.contenedor {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contenedor article {
    width: 30rem;
}
.products-preview .preview {
    display: none;
    padding: 2rem;
    text-align: center;
    background: #fff;
    position: relative;
    margin: 2rem;
    width: 70rem;
}

.products-preview .preview.active {
    display: inline-block;
}

.products-preview .preview img {
    height: 30rem;
}

.products-preview .preview .fa-times {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    color: #444;
    font-size: 4rem;
}

.products-preview .preview .fa-times:hover {
    transform: rotate(90deg);
}

.products-preview .preview h3 {
    color: #444;
    padding: 0.5rem 0;
    font-size: 2.5rem;
}

.products-preview .preview .stars {
    padding: 1rem 0;
    font-size: 1.7rem;
}

.products-preview .preview .stars i {
    color: #e55401;
}

.products-preview .preview .stars span {
    color: #999;
}

.products-preview .preview p {
    line-height: 1.5;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: #777;
}

.products-preview .preview .price {
    padding: 1rem 0;
    font-size: 2.5rem;
    color: #e55401;
}

.products-preview .preview .buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.products-preview .preview .buttons a {
    flex: 1 1 16rem;
    padding: 1rem;
    font-size: 1.8rem;
    color: #444;
    border: 0.1rem solid #444;
}

.products-preview .preview .buttons a.cart {
    background: #444;
    color: #fff;
}

.products-preview .preview .buttons a.cart:hover {
    background: #111;
}

.products-preview .preview .buttons a.buy:hover {
    background: #444;
    color: #fff;
}

.section-principal {
    width: 100%;
    margin-top: 5rem;
}
.section__products {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.content__detalles h3 {
    font-size: 2.5rem;
}
.content__detalles .article__detalle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.content__detalles .article__detalle article {
    display: flex;
    width: 50rem;
}
.content__detalles .article__detalle article img {
    width: 50%;
}
.content__detalles .article__detalle article .text__detalle {
    width: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    vertical-align: middle;
}

.content__caracteristicas nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.content__caracteristicas nav h2.active__h2 {
    border-bottom: 2px solid #007ac1;
    color: #007ac1;
}
.content__caracteristicas nav h2 {
    font-size: 2.5rem;
    cursor: pointer;
}
.content__caracteristicas nav h2:hover {
    color: #007ac1;
}
.content__caracteristicas .text__caracteristicas {
    margin-top: 2rem;
}
.content__caracteristicas .text__caracteristicas p {
    font-size: 1.7rem;
}
.content__caracteristicas .text__caracteristicas li {
    font-size: 1.7rem;
}
.content__caracteristicas iframe {
    width: 85%;
    display: block;
    margin: auto;
    margin-top: 4rem;
    height: 40rem;
}

.article__relacionados::-webkit-scrollbar {
    background-color: transparent;
    height: 0;
}
.article__relacionados {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 2rem;
    overflow: auto;
    scroll-behavior: smooth;
    padding: 2rem;
}
.article__relacionados .product {
    min-width: calc(25% - 1.5rem);
    width: calc(25% - 1.5rem);
    border-radius: 20px;
}
.content__relacionados {
    position: relative;
}
.content__relacionados .left_relacionado {
    left: -3rem;
}
.content__relacionados .right_relacionado {
    right: -5rem;
}
.content__relacionados .left_relacionado,
.content__relacionados .right_relacionado {
    position: absolute;
    top: 50%;
    font-size: 5rem;
    cursor: pointer;
}
.article__accesorios::-webkit-scrollbar {
    background-color: transparent;
    height: 0;
}
.article__accesorios {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 2rem;
    overflow: auto;
    scroll-behavior: smooth;
    padding: 2rem;
}
.article__accesorios .product {
    min-width: calc(25% - 1.5rem);
    width: calc(25% - 1.5rem);
    border-radius: 20px;
}
.content__accesorios {
    position: relative;
}
.content__accesorios .left_accesorio {
    left: -3rem;
}
.content__accesorios .right_accesorio {
    right: -5rem;
}
.content__accesorios .left_accesorio,
.content__accesorios .right_accesorio {
    position: absolute;
    top: 50%;
    font-size: 5rem;
    cursor: pointer;
}

.section-modal {
    margin: 0;
    padding: 0;
    min-height: auto;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 5rem;
    margin-top: 8rem;
}
.detalle__imgp {
    width: 100%;
    height: 39rem;
    border: 3px solid #007ac1;
    border-radius: 10px;
    display: grid;
    margin: auto;
    place-items: center;
}
.slider__detalles {
    position: relative;
}
.slider__detalles i {
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 5rem;
    transform: translateY(-50%);
}
.slider__detalles .left__detalles-slider {
    left: 6%;
}
.slider__detalles .right__detalles-slider {
    right: 6%;
}
.slider__detalles .imgs__slider::-webkit-scrollbar {
    background-color: transparent;
    height: 0;
}
.slider__detalles .imgs__slider {
    display: flex;
    width: 70%;
    margin: 2rem auto;
    gap: 1rem;
    overflow: auto;
    scroll-behavior: smooth;
    align-items: center;
}
.slider__detalles .imgs__slider div {
    min-width: calc(33.33% - .7rem);
    width: calc(33.33% - .7rem);
    height: 10rem;
    border: 2px solid #000;
    background-color: white;
    border-radius: 10px;
}
.slider__detalles .imgs__slider div img {
    width: 95%;
    display: block;
    cursor: pointer;
    margin: auto;
    object-fit: contain;
    height: 95%;
}
.contenedor1-modal {
    height: auto;
    place-items: center;
    width: 44%;
}
.contenedor1-modal h2 {
    font-size: 5rem;
}
.contenedor1-modal img {
    width: 92%;
    /* height: 35rem; */
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}
.contenedor1-modal .stars i {
    font-size: 2rem;
    color: gold;
}
.contenedor2-modal {
    width: 50%;
    height: auto;
}
/* .contenedor1-modal, .contenedor2-modal{
   margin: 1rem 5rem;
} */
.contenedor2-modal h2 {
    font-size: 3rem;
}
.contenedor2-modal hr {
    height: 1px;
    display: block;
    margin-top: 1rem;
    width: 100%;
    background-color: #c8b7b7;
}
.contenedor2-modal p {
    font-size: 1.6rem;
}

@media (max-width: 991px) {
    .contenedor {
        justify-content: center;
    }
    html {
        font-size: 55%;
    }
}

@media (max-width: 768px) {
    .section__modal .contenedor__blogd article:nth-child(2) .blog__reciente{
        width: 50% !important;
    }
    footer .logo-footer {
        width: 20rem !important;
        margin: 1rem auto !important;
    }
    footer .wave {
        position: absolute;
        top: -40px;
    }
    .section__modal .contenedor__blogd {
        gap: 3rem;
    }
    .section__modal .contenedor__blogd article {
        width: 100% !important;
    }
  
   
    header {
        top: 4%;
    }
    .header2 {
        height: 4%;
        padding: 0 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header2 .address,
    .header2 .email {
        display: none;
    }
    .header2 .address .line {
        display: none;
    }
    .contenedor-project {
        width: 98%;
        justify-content: center;
    }
    #menu {
        display: block;
    }

    header .logo {
        width: 14rem;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 1px 1px 19px 0px rgba(0, 0, 0, 0.35);
        background: #fff;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        flex-direction: column;
    }

    header .navbar.nav-toggle {
        transform: scaleY(1);
        opacity: 1;
    }

    header .navbar a {
        display: block;
        margin: 2rem 0;
        padding: 0 1rem;
        color: black;
        font-size: 2.2rem;
        border-left: 0.2rem solid var(--blue);
    }

    .home {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url(../img/home.jpg) no-repeat;
        background-size: cover;
        background-position: right;
    }

    .home .content {
        text-align: center;
        width: auto;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    section {
        padding: 0 3%;
        padding-top: 8rem;
    }
    .input-button .form {
        width: 95%;
    }
    .input-button h2 {
        text-align: center;
    }
    .container__productos .title-catalogo {
        margin-bottom: 0;
    }
    .container__productos {
        margin-top: 5rem;
    }
    .filtros__categorias {
        display: flex;
        align-items: center;
    }
    .content__relacionados{
        overflow: hidden;
    }
    .article__relacionados{
        width: 90%;
        margin: auto;
        gap: 0;
        padding: 0 !important;
    }
    .article__relacionados .product {
        min-width: calc(50% - 1rem);
        width: calc(50% - 1rem);
        margin: .5rem;
    }
    .content__relacionados .left_relacionado,
    .content__relacionados .right_relacionado {
        top: 60% !important;
    }
    .content__accesorios .left_accesorio,
    .content__accesorios .right_accesorio {
        top: 60% !important;
    }
    .content__accesorios .left_accesorio,
    .content__relacionados .left_relacionado {
        left: -1.7rem !important;
    }
    .content__accesorios .right_accesorio,
    .content__relacionados .right_relacionado {
        right: -1.7rem !important;
    }
    .content__accesorios{
        overflow: hidden;
    }
    .article__accesorios {
        gap: 0;
        width: 90%;
        padding: 0 !important;
        margin: auto;
    }
    .article__accesorios .product {
        min-width: calc(50% - 1rem);
        width: calc(50% - 1rem);
        margin: .5rem;
    }
    .content__caracteristicas .text__caracteristicas {
        margin-left: 3rem;
    }
    .slider__detalles .left__detalles-slider {
        left: 14.5rem;
    }
    .slider__detalles .right__detalles-slider {
        right: 15rem;
    }
    .img_producto_container {
        width: 90% !important;
        height: 50rem !important;
    }
    .slider__detalles .imgs__slider {
        display: flex;
        width: 50%;
        margin: 2rem auto;
        gap: 1rem;
        overflow: auto;
        scroll-behavior: smooth;
        align-items: center;
    }
    .container__product {
        width: 100%;
    }
    .category-peoduct .cat1,
    .category-peoduct .cat2,
    .category-peoduct .cat3 {
        box-shadow: none;
    }
    .category-peoduct.active_filtro {
        transform: translateX(0);
    }
    .category-peoduct {
        width: 50%;
        position: absolute;
        transform: translateX(-150%);
        top: 19%;
        transition: 0.3s ease all;
        left: 0;
        margin: 0 !important;
        background-color: white;
    }
    .contenedor-project .contenedor-button button {
        margin-bottom: 2rem;
    }
    .products-preview .preview img {
        height: 25rem;
    }
    .section-modal {
        flex-wrap: wrap;
    }
    .contenedor1-modal {
        width: 100%;
        margin: 0;
    }
    .contenedor2-modal {
        margin: 0;
        width: 100%;
    }
    .title-catalogo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .title-catalogo h3 {
        margin-left: 0;
        text-align: center;
    }

    .content-pruducts {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 100%;
        width: 100%;
        margin: 0;
        background-color: white;
    }

    .container .products-container .product {
        width: 19rem;
    }
    .container .products-container {
        width: 100%;
    }
    .container .title {
        margin-left: 0 !important;
    }
    .search_box .input_search {
        width: 200px !important;
    }
}
@media (max-width: 600px) {
    .section__modal .contenedor__blogd article:nth-child(2) .blog__reciente{
        width: 100% !important;
    }
    .slider__detalles .left__detalles-slider {
        left: 1rem;
    }
    .slider__detalles .right__detalles-slider {
        right: 2rem;
    }
    .slider__detalles .imgs__slider {
        display: flex;
        width: 70%;
        margin: 2rem auto;
        gap: 1rem;
        overflow: auto;
        scroll-behavior: smooth;
        align-items: center;
    }
    .img_producto_container {
        width: 100% !important;
        height: 30rem !important;
    }
    .category-peoduct.active_filtro {
        transform: translateX(0);
    }
    .category-peoduct {
        width: 90%;
        position: absolute;
        transform: translateX(-150%);
        top: 18%;
        transition: 0.3s ease all;
        left: 0;
        margin: 0 !important;
        background-color: white;
    }
}
@media (max-width: 400px) {
    .container .products-container .product {
        width: 47%;
    }
    html {
        font-size: 50%;
    }
}
