@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --dark-one: #333;
    --dark-two: #7a7a7a;
    --main-color: #40a8f4;
    --light-one: #fff;
    --light-two: #f9fafb;
    --light-three: #f6f7fb;
}

@font-face {
    font-family: Bio;
    src: url("../fuentes/bio.ttf");
}

@font-face {
    font-family: Alcalina;
    src: url("../fuentes/alcalina.otf");
}

/* Genral Styles */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

button {
    border: none;
    cursor: pointer;
}

.container {
    position: relative;
    z-index: 5;
    max-width: 89rem;
    padding: 0 4rem;
    margin: 0 auto;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.text {
    font-size: 1.25rem;
    color: #515872;
    line-height: 1.6;
}

.column-1 {
    margin-right: 1.5rem;
}

.column-2 {
    margin-left: 1.5rem;
}

.image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-index {
    position: relative;
    z-index: 2;
}

.section {
    padding: 7rem 0;
    overflow: hidden;
}

.section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    line-height: 1.4;
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
}

.title:before {
    content: attr(data-title);
    display: block;
    margin-bottom: 0.4rem;
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-header .text {
    max-width: 600px;
    margin: 0 auto;
}

.title-sm {
    color: var(--dark-one);
    font-weight: 600;
    font-size: 1.6rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    color: var(--light-one);
    border-radius: 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    transition: 0.3s;
    background-size: 300% 100%;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.btn {
    background-image: linear-gradient(to right, #40a8f4, #97d0f9, #97d0f9, #40a8f4);
    box-shadow: 0 4px 15px 0 #40a9f4b0;
}

.btn:hover {
    background-position: 100% 0;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}


/* End Genral Styles */

/* Loader */

.loader {
    background-color: #fefefe;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99555555999;
    clip-path: circle(150% at 100% 0);
    -webkit-clip-path: circle(150% at 100% 0);
    transition: clip-path 2s ease-in-out;
    -webkit-transition: clip-path 2s ease-in-out;
}

.loader2 {
    clip-path: circle(0% at 100% 0);
    -webkit-clip-path: circle(0% at 100% 0);

}

.loader img {
    width: 150px;
}

/* End loader */

/* Header */

header {
    width: 100%;
    background: linear-gradient(90deg, #00175D 0%, #00175D 40% 65%, #fff 35%);
    position: relative;
    overflow: hidden;
}

nav {
    width: 100%;
    position: relative;
    z-index: 50;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fffffff0;
    padding: 1rem 0;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.07);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    transition: .3s;
}

.nav__logo img {
    width: 120px;
}

.links {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.links ul {
    display: flex;
}

.links a {
    display: inline-block;
    padding: 0.9rem 1.2rem;
    color: var(--dark-one);
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.links a.active {
    background-color: var(--main-color);
    color: var(--light-one);
    border-radius: 2rem;
    font-size: 1rem;
    padding: 0.9rem 2.1rem;
    margin-left: 1rem;
}

.links a:hover {
    color: var(--main-color);
}

.links a.active:hover {
    color: var(--light-one);
    background-color: #3e92f3;
}

.hamburger-menu {
    width: 2.7rem;
    height: 3rem;
    z-index: 100;
    position: relative;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu .bar {
    position: relative;
    width: 2.1rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--dark-one);
    transition: 0.5s;
}

.bar:before,
.bar:after {
    content: "";
    position: absolute;
    width: 1.5rem;
    right: 15%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--dark-one);
    transition: 0.5s;
}

.bar:before {
    transform: translateY(-9px);
}

.bar:after {
    transform: translateY(9px);
}

nav.open .hamburger-menu .bar {
    background-color: transparent;
    transform: rotate(360deg);
}

nav.open .hamburger-menu .bar:before {
    transform: translateY(0) rotate(45deg);
}

nav.open .hamburger-menu .bar:after {
    transform: translateY(0) rotate(-45deg);
}

nav.open .links {
    transform: translateX(0);
}

.header-content .container.grid-2 {
    grid-template-columns: 5fr 2fr;
    min-height: calc(100vh - 6rem);
    padding-bottom: 2.5rem;
    margin-top: 5rem;
    text-align: left;
}

.header-content .container .column-1 {
    z-index: 3;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.header-title {
    font-size: 3.8rem;
    line-height: 1.4;
    color: #fff;
    width: 85%;
    padding: 0 1rem 0 0;
}

.header-content .text {
    margin: 2.15rem 0;
    color: #c5c5c5;
    width: 85%;
    padding: 0 1rem 0 0;
}

.header-content form {
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
    align-items: center;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
}

.header-content form input {
    padding-bottom: .5rem;
    margin-top: 1rem;
    width: 100%;
    border: none;
    border-bottom: 1px solid #dcdcdcee;
}

.header-content form input:focus{
    outline: none;
}

.header-content .image {
    position: relative;
}

.header-content .image video {
    width: 700px;
    height: 700px;
    object-fit: cover;
    position: absolute;
    transform: translateX(-0px);
    border-radius: 40px;
}

@media (max-width: 1125px) {
    .header-content .image video {
        width: 600px;
        height: 600px;
        position: absolute;
        transform: translateX(-30px);
    }

}

/* End header */

/* Services */

.cards-servicios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: .2rem;
    justify-content: center;
    align-items: center;
}

.card-wrap-servicios {
    position: relative;
    margin: 1.7rem 0.8rem;
}

.card-servicios {
    position: relative;
    width: 100%;
    min-height: 690px;
    max-height: 690px;
    border-radius: 20px;
    background-color: #f3f6ff;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    padding: 0rem 0rem 2.2rem 0rem;
}

.card-servicios .card-content {
    padding: 0 2rem;
}

.img-service {
    overflow: hidden;
}

.img-service img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .4s all;
    transform: scale(1.1);
}

.img-service4 {
    object-position: left;
}

.icon-service {
    overflow: hidden;
    max-height: 95px;
    max-width: 95px;
    min-height: 95px;
    min-width: 95px;
    border-radius: 50%;
    margin-top: -60px;
    margin-bottom: 1.7rem;
    transition: .4s all;
    transform: scale(1);
    box-shadow: 0 4px 15px 0 #40a9f423;
}

.card-servicios .text {
    margin: 1.5rem 0;
}

.card-servicios:hover .img-service img {
    transform: scale(1.2);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.card-servicios:hover .icon-service {
    transform: scale(1.1);
}

.card-servicios .title-sm {
    transition: 0.3s all;
}

.card-wrap-servicios:hover .card-servicios .title-sm {
    color: var(--main-color);
}


/* End Services */


/* Services */

.beneficios .title span {
    color: var(--main-color)
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.card {
    position: relative;
    background-color: #f3f6ff;
    border-radius: 15px;
    padding: 3rem 1.9rem 2rem 1.9rem;
    transition: .3s all;
    overflow: hidden;
}

.card:nth-child(2) {
    transform: translateY(45px);
}

.card:nth-child(3) {
    transform: translateY(90px);
}

.card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}

.card:before {
    content: attr(data-card);
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--main-color);
    opacity: 0.055;
    transition: .3s all;
}

.card-wrap:hover .card:before {
    opacity: 0.095;
}

.icon {
    background: #12294d;
    box-shadow: 0 4px 15px 0 #12294db3;
    color: #fff;
    border-radius: 1000px;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-2 {
    background: var(--main-color);
    box-shadow: 0 4px 15px 0 #40a9f4c1;
}

.icon-3 {
    background-color: #99c4f5;
    box-shadow: 0 4px 15px 0 #99c4f5da;
}

.icon img {
    width: 70%;
}

.card .title-sm {
    line-height: 0.8;
    margin-top: 1.5rem;
}

.card .text {
    font-size: 1.15rem;
    margin: 1.8rem 0;
    color: #515872;
}


/* End Services */

/* Políticas */

.politicas {
    background-color: var(--main-color);
    text-align: center;
    color: #fff;
}

.politicas .text {
    color: #f3f6ff;
}

/* End politicas */

.products__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.products__item {
    cursor: pointer;
    padding: 0 2.5rem 0 0;
    margin: 1rem;
    text-align: center;
    border-right: 1px solid #ccc;
}

/* Active link products */

.active-product .products__title {
    background-color: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 40px;
}

.products__content.grid {
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1046px) {
    .products__content.grid {
        grid-template-columns: repeat(2, 50%);
    }
}

.products__card {
    border-radius: .5rem;
}

.products__title {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(0, 0%, 39%);
    margin-bottom: .5rem;
}

.products__stock {
    font-size: .813rem;
    color: #67696B;
}

.products__content {
    grid-template-columns: 200px;
    justify-content: center;
}

.products__img {
    max-width: 170px;
    transition: .4s;
    max-height: 200px;
}

.cartuchos-img {
    max-width: 60px;
}

.products__card:nth-child(14) .cartuchos-img,
.products__card:nth-child(15) .cartuchos-img,
.products__card:nth-child(16) .cartuchos-img {
    max-width: 30px;
}

.products__card:nth-child(17) .cartuchos-img,
.products__card:nth-child(18) .cartuchos-img {
    max-width: 50px;
}

.products__shape {
    position: relative;
    border-radius: .5rem .5rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    height: 250px;
    background-color: #f0f0f0;
}

.products__data {
    padding: 1rem 0 1.25rem 0rem;
    position: relative;
}

.products__name {
    font-size: 1rem;
    position: relative;
}

.tanques .products__name span {
    font-size: 1rem;
    font-size: 12px;
    position: absolute;
    margin-left: 3px;
}

.products__card:hover .products__img {
    transform: translateY(-.25rem);
}

/* About */

.about {
    overflow: hidden;
    background-color: #111f35;
}

.about .title {
    color: var(--light-one);
    margin-bottom: -12px;
    line-height: 1.208em;
}

.about .title:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.about img {
    max-width: 600px;
    border-radius: 20px;
}

.about .text {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #d3d3d3;
}

.skills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.skill-group {
    margin: 0rem 1rem;
}

.skill-group .title {
    padding: 0;
    margin: 0;
}

.skill-group .title:after {
    width: 0px;
    height: 0px;
}

.skill-group p {
    margin-top: -5px !important;
}

.skills span {
    color: #eba800;
}

.about .column-1 {
    position: relative;
}

.about a {
    box-shadow: none;
    width: 100%;
    text-align: center;
}

/* Questions */

.accordion .contentBx {
    margin: 10px 0;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
}

.accordion .contentBx:nth-child(1),
.accordion .contentBx:nth-child(2) {
    border-bottom: 1px solid #6e7d97;
}

.accordion .contentBx .title-sm {
    color: #FFF;
    transition: .4s all;
    display: flex;
    align-items: center;
}

.accordion .contentBx .title-sm img {
    width: 60px;
    border-radius: 1000px;
    margin-right: 20px;
    opacity: 1;
}

.accordion .contentBx .title-sm::before {
    content: '+';
    position: absolute;
    right: 20px;
}

.accordion .contentBx:hover .title-sm {
    color: var(--main-color);
}

.accordion .contentBx .content {
    position: relative;
    margin-top: 0px;
    height: 0px;
    overflow: hidden;
    transition: 0.2s;
    overflow: auto;
    margin-top: 1rem;
}

.accordion .contentBx .content .text {
    margin: 0;
}

.accordion .contentBx .content::-webkit-scrollbar {
    width: .6rem;
    border-radius: .5rem;
    background-color: hsl(19, 8%, 75%);
}

.accordion .contentBx .content::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background-color: var(--main-color);
}

.accordion .contentBx.active .content {
    height: 80px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.accordion .contentBx.active .title-sm::before {
    content: '-';
}

.about .column-1 img {
    border-radius: 24px;
    object-fit: cover;
    min-height: 900px;
}

/* End Questions */
/* Logos */
.logos .section-header {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.logos .container {
    max-width: 2000px;
    padding: 0;
}

.infinite-carousel {
    width: 100%;
    overflow: hidden;
}

.infinite-carousel>div {
    width: max-content;
    padding: 1em 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
}

.infinite-carousel img {
    width: 300px;
    margin: 0 1.5em;
    opacity: .8;
    transition: .4s;
}

.infinite-carousel img:hover {
    mix-blend-mode: normal;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: .8;
}

@keyframes move {
    to {
        transform: translate(calc(-50% - 1.5em));
    }
}

/**/

/* Contacto */

.section-contact {
    min-height: 80vh;
    background-image: linear-gradient(175deg, var(--light-three) 50%, var(--light-one) 50%, var(--light-one));
    color: #28B6D0;
    padding-top: 100px;
}

.map {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: .3s all;
}

.map:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.form-group input,
textarea {
    color: var(--dark-one);
}

.section-contact .section-header {
    text-align: center;
}

.section-contact .section-header .title {
    color: #111;
}

.section-contact .container .form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    background-color: var(--light-one);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e6ea;
}

@media (min-width: 768px) {
    .section-contact .container .form {
        grid-template-columns: repeat(2, 1fr)
    }
}

.section-contact .container .form .form-group {
    position: relative;
}

.section-contact .container .form .form-group.full {
    grid-column: 1 / -1
}

.section-contact .container .form .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 14px
}

.section-contact .container .form .form-group .form-element {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: var(--light-three);
    border: 1px solid var(--light-three);
    transition: 0.4s
}

.section-contact .container .form .form-group .form-element:focus {
    border: 1px solid #e5e6ea;
}


.section-contact .container .form .form-group textarea {
    resize: none;
    min-height: 100px
}

.section-contact .container .form .submit-group {
    grid-column: 1 / -1;
    text-align: center;
}

.form .btn {
    width: 100%;
}

.section-contact .container .form .submit-group input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
}

.form .btn:disabled {
    opacity: 50%;
    cursor: none;
    background-color: var(--main-color);
}

.wrapper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.thumbnail {
    width: 100%;
    height: 150px;
    position: relative;
    flex-shrink: 0;
    margin-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail img {
    max-width: 150px;
    border-radius: 15px;
    position: absolute;
}

.aside {
    position: relative;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
}

.aside .text:nth-child(1) {
    margin-bottom: 30px;
}

.aside .text:nth-child(2) {
    font-weight: 600;
    color: #666;
}

.testimonials :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 16px;
    font-weight: 800;
    color: var(--main-color);
    position: absolute;
    opacity: 0;
}

@media (min-width: 850px) {
    .wrapper-slide {
        flex-direction: row;
        padding: 30px 100px;
    }

    .thumbnail {
        width: 200px;
        height: 200px;
    }

    .thumbnail img {
        right: 0;
        top: 20px;
    }

    .aside {
        align-self: flex-end;
        text-align: start;
    }

    .testimonials :is(.swiper-button-next, .swiper-button-prev)::after {
        opacity: 1;
    }
}


/*=============== SCROLL UP ===============*/
.btn-whats {
    position: fixed;
    right: 2rem;
    bottom: -30%;
    background-color: var(--main-color);
    box-shadow: 0 4px 15px 0 #40a9f4c1;
    display: inline-flex;
    padding: 1.5rem;
    border-radius: 1000px;
    color: #fff;
    font-size: 2rem;
    z-index: 10;
    transition: .3s;
}

.btn-whats:hover {
    background-color: #31e573;
    box-shadow: 0 4px 15px 0 #31e573cf;
}

/* Show Scroll Up*/

.show-scroll {
    bottom: 4rem;
}

/* Whats */

.whats {
    position: fixed;
    z-index: 999;
    bottom: 8rem;
    right: 1rem;
}

#whats {
    font-size: 45px;
    background-color: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    transition: .7s all;
}

#whats:hover {
    box-shadow: -1px 1px 44px -3px rgba(37, 211, 101, 0.876);
    background-color: #31e573;
}

footer {
    background: #00175D;
    width: 100%;
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
}

footer .grid {
    display: grid;
    grid-template-columns: repeat(4, 24%);
    justify-content: center;
    gap: 2rem;
}

.col-footer h3 {
    width: fit-content;
    margin-bottom: 20px;
    position: relative;
    color: #f6f7fb;
    border-bottom: 2px solid #f6f7fb;
    padding-bottom: 20px;
}

.col-footer ul li {
    margin-bottom: 12px;
}

.col-footer .links-footer {
    color: rgb(196, 196, 196);
    font-size: .8rem;
    transition: .3s all;
}

.col-footer .links-footer:hover {
    color: var(--main-color);
}

.logo-footer {
    width: 200px;
}

.social-icons .bx {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background-color: #fff;
    margin-right: 15px;
    cursor: pointer;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copy {
    text-align: center;
    color: #fff;
}

/* Responsive */

@media (max-width: 1280px) {
    .text {
        font-size: 1.15rem;
    }

    .title {
        font-size: 2.1rem;
        padding-bottom: 0.65rem;
    }

    .title:before {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .title:after {
        height: 3.5px;
        width: 70px;
    }

    .title-sm {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.75rem 1.7rem;
        font-size: 0.8rem;
    }

    .btn.small {
        padding: 0.65rem 1.6rem;
        font-size: 0.7rem;
    }

    .section-header .text {
        max-width: 500px;
    }

    .section {
        padding: 4.5rem 0;
    }

    .column-1 {
        margin-right: 1rem;
    }

    .column-2 {
        margin-left: 1rem;
    }

    .header-content .image .img-element {
        max-width: 500px;
        min-height: 500px;
    }

    nav .container {
        height: 4.5rem;
    }

    .header-content .container.grid-2 {
        min-height: 80vh;
        padding-bottom: 1.5rem;
    }

    .links a {
        font-size: 1rem;
        padding: 0.65rem 0.7rem;
    }

    .links a.active {
        font-size: 0.8rem;
        padding: 0.7rem 1.7rem;
        margin-left: 0.6rem;
    }

    .header-title {
        font-size: 2.6rem;
    }

    .header-content .text {
        margin: 1.1rem 0;
    }

    .card .text {
        font-size: 0.9rem;
        margin: 1rem 0;
    }

    .card:before {
        font-size: 5rem;
    }

    .grid {
        margin: 0.8rem 0;
    }

    .grid-item {
        padding: 0.8rem;
    }
}

@media (max-width: 1000px) {
    .header-content .container.grid-2 {
        grid-template-columns: 1fr !important;
    }

    header {
        width: 100%;
        background: #00175D;
        position: relative;
    }

    .header-content form {
        padding: 1.5rem 1.5rem;
        gap: 1.5rem;
        margin-bottom: 0rem;
    }

    .header-content .container .column-1 {
        padding: 0;
    }

    .header-content {
        padding: 0 1rem;
        margin-top: 10rem;
    }

    .header-title {
        font-size: 2.3rem;
    }

    .header-content .image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .header-title {
        font-size: 2.6rem;
        width: 100%;
    }

    .header-content .text {
        margin: 1.1rem 0;
        width: 100%;
    }

    .header-content .image video {
        width: 100%;
        transform: translateX(0px) translateY(0);
        border-radius: 20px;
        min-width: 500px;
        min-height: 500px;
        position: relative;
    }

}

@media (max-width: 1020px) {
    .cards-servicios {
        grid-template-columns: 1fr 1fr;
        gap: 0rem;
    }

    .cards {
        grid-template-columns: repeat(2, 50%);
        justify-content: center;
        align-items: center;
    }

    .card:nth-child(2) {
        transform: translateY(100px);
    }

    .card:nth-child(3) {
        transform: translateY(0px);
    }
}

@media (max-width: 870px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    .links {
        width: 70%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
    }

    .links ul {
        gap: 2rem;
    }

    .links a {
        font-size: 2rem;
    }

    .links a.active {
        padding: 20px;
        font-size: 1.5rem;
    }

    .column-1 {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .column-2 {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .links {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        background-color: #ffffffba;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(100%);
        transition: 0.5s;
    }

    .links ul {
        flex-direction: column;
    }

    .links a.active {
        margin-left: 0;
        margin: 0.5rem 0;
    }

    .header-content .container.grid-2 {
        min-height: 80vh;
    }

    .about .grid-2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .about .column-2 {
        margin-bottom: 2rem;
    }

    .about .column-1 img {
        border-radius: 24px;
        object-fit: cover;
        min-height: 0;
        max-height: 600px;
    }

    .logos .container .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-contact .grid-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .section-contact .grid-2 .column-1,
    .section-contact .grid-2 .column-2 {
        width: 100%;
    }

    .rate {
        font-size: 1.15rem;
        margin-bottom: 1.1rem;
    }

    .review-text {
        font-size: 1.05rem;
    }

    .review-info {
        margin-top: 1.1rem;
    }

    .review-name {
        font-size: 1.05rem;
    }

    .review-job {
        font-size: 0.85rem;
    }

    .quote {
        font-size: 6.5rem;
    }

    .review-nav {
        font-size: 1.55rem;
    }

    .testi-content {
        margin-top: 1.7rem;
    }

    .testi-content .image {
        max-width: 500px;
        margin: 0 auto;
    }

    footer {
        bottom: unset;
    }

    footer .grid {
        display: grid;
        grid-template-columns: repeat(4, 24%);
        justify-content: center;
        gap: 2rem;
    }

    footer .grid {
        display: grid;
        grid-template-columns: repeat(1, 100%);
        justify-content: center;
        gap: 2rem;
    }

    .col-footer .links-footer {
        font-size: 1rem;
    }
}

@media (max-width: 780px) {
    .header-content form {
        grid-template-columns: 1fr;
    }

    .card-servicios {
        min-height: 100px;
        max-height: 600px;
    }

    .img-service img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .4s all;
        transform: scale(1.1);
    }

    .cards-servicios {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .cards {
        grid-template-columns: repeat(1, 100%);
        justify-content: center;
        align-items: center;
    }

    .card:nth-child(2) {
        transform: translateY(0px);
    }

    .card:nth-child(3) {
        transform: translateY(0px);
    }

    .btn-whats {
        padding: 1.3rem;
        font-size: 1.5rem;
        right: 1rem;
    }
}

@media (max-width: 600px) {
    .grid-item {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 2rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .text {
        font-size: 0.92rem;
    }

    .header-content .container {
        padding: 0;
    }

    .header-content .image video {
        transform: translateX(0px) translateY(0);
        border-radius: 20px;
        min-width: 100px;
        min-height: 100px;
        width: 100%;
        height: 300px;
        position: relative;
    }

    .header-content .image .img-element {
        max-width: 700px;
        width: 100%;
        min-width: 100px;
        position: relative;
        transform: translateX(0px);
    }

    .products__filters {
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }

    .products__item {
        cursor: pointer;
        padding: 0 .5rem;
        border-right: 1px solid #c1c1c2;
    }

    .products__content.grid {
        grid-template-columns: repeat(1, 100%);
    }
}

@media (max-width: 500px) {
    .card-servicios {
        min-height: 100px;
        max-height: 800px;
    }

    .logos .container .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos .section-header h3 {
        width: 100%;
    }

    .gallery .grid-2 .grid-gallery {
        display: grid;
        grid-template-columns: repeat(1, 100%);
        column-gap: 1rem;
    }

    .col-footer:nth-child(2),
    .col-footer:nth-child(3) {
        flex-basis: 100%;
    }

    .about .column-1 .buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .products__filters {
        display: grid;
        grid-template-columns: repeat(1, 100%);
    }

    .products__item {
        cursor: pointer;
        padding: 0 .5rem;
        border-right: none;
    }
}

@media (max-width: 375px) {
    .products__item {
        border-right: none;
    }
}

/* End Responsive */