

:root {
    /* :::Aqua Treat::: */
    --aq-blue: #050E2C;
    --aq-white: #ffffff;
    --aq-gray: #949794;
    --aq-light-gray: #F5F5F5;
    --aq-light-blue: #2361C3;
    --aq-accordion-btn-icon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgOEgwVjZINlYwSDhWNkgxNFY4SDhWMTRINlY4WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzIwMF81NDIpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMjAwXzU0MiIgeDE9IjAiIHkxPSIwIiB4Mj0iMTYuNzQ4MyIgeTI9IjUuMjc2MjkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzIzNjFDMyIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNTBFMkMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
    --aq-accordion-btn-active-icon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgOEgwVjZINlYwSDhWNkgxNFY4SDhWMTRINlY4WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzIwMF81NDIpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMjAwXzU0MiIgeDE9IjAiIHkxPSIwIiB4Mj0iMTYuNzQ4MyIgeTI9IjUuMjc2MjkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzIzNjFDMyIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwNTBFMkMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
}
@font-face {
    font-family: 'Alexandria-Regular';
    src: url(../font/Alexandria-Regular.woff) format('woff2');
}
@font-face {
    font-family: 'Alexandria-Bold';
    src: url(../font/Alexandria-Bold.woff) format('woff2');
}

* {
    box-sizing: border-box;
}
body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--rd-white);
}
html {
    scroll-behavior: smooth;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px var(--rd-grey);
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--rd-grey);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--rd-dark);
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: var(--aq-light-blue);
    font-size: 18px;
    font-weight: 300;
    font-family: 'Alexandria-Regular';
    letter-spacing: 1px;
}
#loading img {
    width: 50px; /* Tamaño del spinner */
}
input#productTags {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.ui-widget.ui-widget-content {
    border-color: transparent;
    border-bottom: 2px solid #c5c5c5;
}
.ui-menu .ui-menu-item-wrapper {
    color: var(--aq-blue);
}
.ui-widget-content {
    box-shadow: 0px 6px 13px 0px rgb(35 97 195 / 25%);  
    -webkit-box-shadow: 0px 6px 13px 0px rgb(35 97 195 / 25%);  
    -moz-box-shadow: 0px 6px 13px 0px rgb(35 97 195 / 25%);   
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.ui-menu .ui-menu-item {
    padding: 0 0 8px 0;
}
/* Utils --------------- */
.valid-feedback,
.invalid-feedback,
.gral-message {
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0.45rem 0;
    color: var(--rd-blue);
    display: block;
}
.gral-message {
    color: var(--rd-blue);
}

section {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding: 0;
    background-color: var(--aq-white);
    font-family: 'Alexandria-Regular';
}
.btn {
    font-size: 14px;
    width: 100%;
    height: 48px;
    max-width: 200px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Alexandria-Regular';
    --bs-btn-border-radius: 25px;
    --bs-btn-border-width: 2px
}

.btn-primary {
    --bs-btn-bg: var(--aq-light-blue);
    --bs-btn-color: var(--aq-white);
    --bs-btn-border-color: var(--aq-light-blue);
    --bs-btn-hover-color: var(--aq-light-blue);
    --bs-btn-hover-bg: var(--aq-white);
    --bs-btn-hover-border-color: var(--aq-light-blue);
    --bs-btn-active-bg: var(--aq-light-blue);
    --bs-btn-active-border-color: var(--aq-light-blue);
}
.btn-dark {
    --bs-btn-bg: var(--aq-blue);
    --bs-btn-color: var(--aq-white);
    --bs-btn-border-color: var(--aq-blue);
    --bs-btn-hover-color: var(--aq-blue);
    --bs-btn-hover-bg: var(--aq-white);
    --bs-btn-hover-border-color: var(--aq-blue);
    --bs-btn-active-bg: var(--aq-white);
    --bs-btn-active-border-color: var(--aq-gray);
    --bs-btn-active-color: var(--aq-blue);
}
.btn-white {
    --bs-btn-bg: var(--aq-white);
    --bs-btn-color: var(--aq-blue);
    --bs-btn-border-color: var(--aq-white);
    --bs-btn-hover-color: var(--aq-white);
    --bs-btn-hover-bg: var(--aq-blue);
    --bs-btn-hover-border-color: var(--aq-blue);
    --bs-btn-active-bg: var(--aq-blue);
    --bs-btn-active-border-color: var(--aq-blue);
}
.btn-outline-white {
    --bs-btn-color: var(--aq-white);
    --bs-btn-border-color: var(--aq-white);
    --bs-btn-hover-color: var(--aq-blue);
    --bs-btn-hover-bg: var(--aq-white);
    --bs-btn-hover-border-color: var(--aq-white);
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}
.btn-gradient {
    --bs-btn-color: var(--aq-white);
    --bs-btn-border-color: linear-gradient(90deg, rgba(35,97,195,1) 0%, rgba(5,14,44,1) 100%)!important;
    --bs-btn-hover-color: var(--aq-white);
    --bs-btn-active-border-color: var(--aq-white);
    --bs-btn-hover-bg: var(--aq-blue);
    --bs-btn-hover-border-color:transparent;
    --bs-btn-active-bg: var(--aq-white);
    --bs-btn-active-border-color: transparent;
    background: linear-gradient(90deg, rgba(35,97,195,1) 0%, rgba(5,14,44,1) 100%);
    transition: all 3s ease;
}
.btn-gradient:hover {
    --bs-btn-color: var(--aq-light-gray);
    background: linear-gradient(90deg, rgba(5,14,44,1) 0%, rgba(35,97,195,1) 100%);
}
.btn-gradient.active {
    color: var(--aq-white);
    background: var(--aq-light-blue);
}

/* Navbar --------------- */
header {
    position: fixed;
    z-index: 4;
    width: 100%;
    font-family: 'Alexandria-Regular';
    font-weight: 700;
    background-color: var(--aq-white);
}
.navbar-brand {
    --bs-navbar-brand-padding-y: 0;
    padding: 0;
}
.navbar-nav {
    width: 100%;
    gap: unset;
    justify-content: end; 
 }
.navbar-nav .nav-link {
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    color: var(--aq-gray);
    font-weight: 400;
 }
 .navbar-nav .nav-link.active {
    padding: 8px 18px;
    color: var(--aq-light-blue);
    font-weight: 600;
 }
.aq-navbar-logo {
    width: auto;
    height: 40px;
    object-fit: cover;
}
.navbar-expand-lg .navbar-collapse.aqtreat {
    align-items: center;
    justify-content: space-between;
}
.navbar-expand-lg .navbar-nav.aqtreat {
    gap: 0;
    letter-spacing: 1px;
    align-items: start;
    justify-content: center;
}
.aq-contact-head {
    width: 100%;
    max-width: unset;
}
/* Section.Home ------------ */
.aq-main-banner-container .aq-title-page {
    font-size: 28px;
}
.aq-main-banner {
    margin: 0;
    padding: 0;
}
.aq-main-banner-container {
    position: relative;
    text-align: center;
    width: 100%;
    height: calc(100vh - 60px);
    color: var(--aq-white);
    padding: 60px 0;
}

.aq-main-banner-container .layout {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(5 14 44 / 50%);
}
.aq-layout {
    position: absolute;
    width: 100%;
    background: #050E2C;
    height: 100%;
    z-index: 1;
    opacity: .56;
}
.aq-button {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 100%
}
.aq-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aq-main-file {
    position: absolute;
    top: 64;
    width: 100%;
    height: 100%;
    border-radius: 0;
    right: 0;
    object-fit: cover;
}

.aq-caption {
    position: relative;
    z-index: 2;
    top: 50%;
    width: 80%;
    height: calc(100% - 300px);
    color: var(--hk-white);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    transform: translateY(-50%);
}
.aq-main-banner .aq-caption {
    top: 50%;
}
.aq-main-banner .aq-caption.aq-home {
    height: auto;
}

.aq-main-icon {
    height: 90px;
    margin: 0 auto 28px auto;
}
.aq-title-box,
.aq-link-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.aq-title-box {
    flex-direction: column;
}
.aq-link-box {
    flex-direction: column;
    gap: 12px;
}
.btn.aq-more-home {
    max-width: 180px;
}
/* Slider.Categories ------------ */
section.aq-categories {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(224, 220, 226, 1);

}
.swiper-wrapper,
.aq-companies-slider .swiper-wrapper {
    height: 500px;
}
.aq-categories.projects .swiper-wrapper {
    height: 480px;
}
.aq-companies-slider .swiper-wrapper {
    height: auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper.aq-catgeories-slider {
    min-height: unset;
    height: 100%;
}
.swiper-button-next, .swiper-button-prev {
    width: auto !important;
    height: auto !important;
    color: var(--aq-light-blue);
    border-radius: unset;
    background-color: transparent;
    box-shadow: unset;
    /* box-shadow: 2px 1px rgba(0, 0, 0, 0.40); */
}
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after, 
.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after {
    font-family: unset !important;
    font-size: 40px !important;
    font-weight: bold;
}
.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
    content: "\279D" !important;
    transform: rotate(180deg);
}
.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
    content: "\279D" !important;
}
.aq-card {
    width: 200px;
    height: auto;
    min-height: unset;
    border-radius: 20px;
    padding: 12px;
    background-color: transparent;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    transition: all ease .5s;
    scale: .5;
    gap: 12px;
}

.swiper-slide .aq-card img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: contain;
    transition: all ease .5s;
}
.category-img {
    height: 250px;
}
.aq-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.aq-card-wrapper h5 {
    text-transform: uppercase;
    font-weight: 500;
}

.aq-card-wrapper p {
    line-height: 1.2;
    margin: 1rem 0;
    padding: 0 24px;
    font-size: 14px;
}
.aq-card .aq-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.aq-card .aq-link {
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    letter-spacing: 1px;
    color: var(--aq-gray);
    text-decoration: none;
}
.aq-card .aq-link {
    opacity: 1;
}
.swiper-slide.swiper-slide-active {
    height: 580px;
}
.swiper-slide.swiper-slide-active .aq-card {
    scale: 1.5;
}
.swiper-slide.swiper-slide-active .aq-card .aq-link {
    opacity: 1;
    font-size: 14px;
    color: var(--aq-light-blue);
    pointer-events: all;
    text-decoration: none;
    line-height: 1.1;
}
/* Proyectos --------------------------- */

.aq-categories.projects {
    text-align: center;
    background: rgba(245, 245, 245, 1);
    padding: 12px;
    min-height: unset;
    align-items: start;
}

.aq-projects-title {
    margin: 48px 0;
}
.aq-card.projects {
    width: 200px;
    height: auto;
}
.aq-card.projects .aq-card-wrapper {
    opacity: 0;
    display: none;
}
.swiper-slide.swiper-slide-active .aq-card.projects .aq-card-wrapper,
.swiper-slide.swiper-slide-active .aq-card.projects .aq-link {
    opacity: 1;
    display: flex;
} 
.swiper-slide.swiper-slide-active .aq-card.projects .aq-link {
    font-size: 10px;
    color: var(--aq-blue);
    pointer-events: none;
    border-bottom: unset;
    line-height: 1.3;
    text-transform: unset;
    cursor: default;
    letter-spacing: unset;
}
.aq-card.projects .aq-card-wrapper {
    gap: 4px;
}
.aq-card.projects .aq-card-wrapper .aq-icon {
    width: 100px;
    height: 36px;
    object-fit: contain;
    display: inline-block;
    margin: 6px auto 0 auto;
}
.aq-clients-slick,
.aq-partner-slick {
    display: none;
}
.aq-client-item,
.aq-partner-item {
    flex: 0 0 100%;
    height: 90px;
    box-sizing: border-box;
}
.aq-partner-slick.partner1 .aq-partner-item {
    flex: unset;
    width: 100%; /* Cada slide ocupará el 100% del contenedor */
    text-align: center;
    margin: 0 24px;
}
.aq-client-item img,
.aq-partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Expertos ------------ */
section.aq-experts {
    background: rgb(35,97,195);
    background: linear-gradient(90deg, rgba(35,97,195,1) 0%, rgba(5,14,44,1) 100%);
}
.aq-experts-banner {
    width: auto;
    height: 30%;
    object-fit: contain;
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
}
.aq-experts-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
    color: var(--aq-white);
    margin: 60px 0 0 0;
    padding: 12px;
}
.aq-experts-wrapper .aq-title {
    font-size: 30px;
    text-transform: uppercase;
}
.aq-experts-text span {
    font-size: 2.5rem;
}
.aq-experts-text p {
    font-size: 18px;
}

/* Section.aq-services-slider ------------*/
.line {
    width: 100%;
    height: 250px;
    background-color: var(--aq-light-gray);
}
section.aq-services-slider {
    margin: 0;
    padding: 0;
    height: auto;
}
.aq-services-slider .aq-title-page {
    line-height: 1;
    font-weight: 600;
}
.aq-services-slider-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aq-services-wrapper {
    width: 100%;
    height: auto;
    padding: 60px 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aq-services-slider-title {
    width: 100%;
    height: 100%;
    color: var(--aq-blue);
    background-color: var(--aq-white);
    gap: 30px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.aq-services-slider-title p {
    color: var(--aq-blue);
    font-weight: 600;
    font-size: 18px;
}
.aq-services-slider-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 0;
}
.aq-arrows-slider-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0 0;
}
.aq-arrows-slider-container a {
    width: auto;
    background-color: white;
    transform: translateX(0);
    transition: all .3s ease;
}
a.slick-services-prev:hover {
    transform: translateX(-4px);
}
a.slick-services-next:hover {
    transform: translateX(4px);
}
.aq-arrows-slider-container a:active,
.aq-arrows-slider-container a:hover {
    color: rgb(245 245 245 / 70%)!important;
    background-color: rgb(245 245 245 / 70%)!important;
    border-color: rgb(245 245 245 / 70%)!important;
    filter: blur(74%)!important;
}
.aq-arrows-slider-container a>img{
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.aquatreat-card {
    width: 90%;
    height: auto;
    border-radius: 7px;
    backdrop-filter: blur(64px);
    background: rgb(245 245 245 / 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 12px;
    margin: 12px auto;
}
.aquatreat-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}
.aquatreat-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.aquatreat-txt {
    color: var(--aq-blue);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Section.Services ------------*/
section.aq-services {
    width: 100%;
    height: auto;
    padding: 60px 0 12px 0;
    background-color: var(--aq-light-gray);
}
.aq-services-item {
    margin: 0 0 48px 0;
}
.aq-services-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: block;
}
.aq-services-box {
    text-align: center;
}
.aq-services-box .title {
    font-size: 24px;
    font-weight: 500;
    color: var(--aq-light-blue);
    width: 100%;
    line-height: 1.2;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto 10px auto;
}
.aq-services-box .desc {
    font-size: 18px;
    color: var(--aq-blue);
    font-weight: 500;
    margin: 0 6px;
}

/* Section.Banner ------------*/
.aq-banner-bg {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 24px 12px;
    background-size: cover;
    background-image: url('../images/aqua-banner.webp?v=1.0.3');
    background-position-y: center;
}
.aq-banner-layout {
    position: absolute;
    background: rgb(5 14 44 / 50%);
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: 0;
}
.aq-banner-wrapper {
    position: relative;
    z-index: 1;
    color: var(--aq-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.aq-banner-logo-title {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.aq-banner-bg .title {
    font-size: 20px;
}
.aq-banner-wrapper .desc {
    font-size: 18px;
}
section.aq-treatment {
    padding: 24px 0 0 0;
    background-color: var(--aq-white);
}
.aq-treatment-wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.aq-treatment-wrapper .aq-title{
    font-size: 32px;
    color: var(--aq-blue);
}
.aq-treatment-wrapper .aq-desc{
    font-size: 18px;
    font-weight: 500;
    color: black
}
.aq-treatment-banner {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 48px 0;
}
.aq-treatment-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.aq-treatment-box {
    width: 100%;
    margin: 0 auto 60px;
    color: var(--aq-white);
    background: var(--aq-light-blue);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 10px;
    padding: 20px;
    align-items: center;
    justify-items: center;
}
.aq-treatment-box a {
    justify-self: center;
}
.aq-treatment-box-icon {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: center;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}
.aq-treatment-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0;
}

/* Footer ------------*/
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: unset;
    margin: 0;
    padding: 60px 0 0 0;
    background-color: var(--aq-blue);
    /* background-size: cover;
    background-position: top;
    background-image: url(../images/aq-footer-bh.png); */
}

.aq-footer-container {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
.aq-footer-container h4 {
    color: var(--aq-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.aq-footer-logo>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aq-footer-menu {
    grid-column: 1/2;
    grid-row: 2/3;
}
.aq-footer-locations {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    gap: unset;
}

.aq-footer-terms {
    grid-column: 1 / 2;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-top: 2px solid var(--aq-white);
    padding: 24px 0;
    margin: 40px 0 0 0;
}
.aq-footer-container a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--aq-white);
    display: inline-block !important;
    margin: 0 24px 3px 0;
}
.aq-footer-container a.active {
    text-decoration: underline;
}
.aq-footer-terms, 
.aq-footer-terms a {
    letter-spacing: 0.1em;
    font-weight: 400;
    color: var(--aq-white);
    text-transform: unset;
}
.aq-footer-container a.aq-mail {
    text-transform: unset;
}
.aq-footer-logo {
    grid-column: 1/1;
    grid-row: 1/1;
    width: auto;
    height: 50px;
    display: inline-block;
    margin: 0 auto;
}
.aq-footer-logo>a {
    width: auto;
    height: 45px;
    display: inline-block;
}
.aq-footer-info {
    display: flex;
    flex-direction: column;
}
.aq-social-media {
    display: flex;
    gap: 24px;
    justify-content: start;
    align-items: center;
    margin: 12px 0 0 0;
}
.aq-social-media>a,
.aq-footer-info>a>img {
    display: block;
    width: 16px;
    height: 16px;
    line-height: 1;
}
.aq-footer-info>a>img {
    display: inline-block;
    object-fit: contain;
}
.aq-social-media>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.social-media {
    display: flex;
    gap: 24px;
    row-gap: 24px;
    column-gap: 24px;
    margin: 12px 0;
}

/* page.about ------------ */
section.aq-main-banner.about{
    background: linear-gradient(90deg, rgba(5,14,44,1) 0%, rgba(35,97,195,1) 100%)
}
.aq-main-banner-container>img.aq-banner {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: -60px;
    height: 30%;
}
.aq-caption-banner {
    position: relative;
    z-index: 2;
    top: 35%;
    width: 80%;
    height: calc(100% - 300px);
    color: var(--aq-white);
    margin: 0 auto;
    display: block;
    transform: translateY(-30%);
}
.aq-caption-banner>.aq-title-box {
    justify-content: start;
    align-items: start;
    text-align: left;
}
.aq-caption-banner .aq-subtitle-page {
    font-size: 16px;
    margin: 48px 0 0 0;
}
.aq-caption-banner .aq-subtitle-page.contact {
    font-size: 20px;
}
.aq-main-banner.services .aq-caption-banner{
    transform: unset;
    top: 30px;
}

/* section.values ------------ */
section.aq-values {
    padding: 60px 0;
}
.aq-values-box {
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 0 30px 0;
}
.aq-values-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: inline-block;
    margin: 0 auto;
}
.aq-values-box span {
    font-size: 20px;
    color: var(--aq-blue);
}

.aq-cicle-container {
    margin: 60px 0 0 0;
}
.aq-circle-banner {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    padding: 12px;
    margin: 48px 0;
}
.aq-circle-banner .icon {
    margin: 0 0 24px 0;
    width: auto;
    height: 250px;
}
.aq-circle-banner .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aq-circle-banner .desc {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
.aq-circle-banner .desc h4 {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--aq-blue);
    font-weight: 500;
    text-align: left;

}
.aq-circle-banner span {
    width: 50%;
    height: 2px;
    margin: 12px 0;
    display: inline-block;
    background: linear-gradient(107.49deg, #2361C3 0%, #050E2C 100%);
}
.aq-circle-banner p {
    font-size: 20px;
    line-height: 1.2;
    color: var(--aq-blue);
    font-weight: 500;
}
.aq-circle-banner:nth-of-type(even) .icon {
    grid-column: 1/2;
    grid-row: 1/2;
}
.aq-circle-banner:nth-of-type(even) .desc {
    grid-column: 1/2;
    grid-row: 2/3;
}

.aq-banner-bg.about {
    background-image: unset;
    background: linear-gradient(107.49deg, #2361C3 0%, #050E2C 100%);
}

/* Section.FAQ ------------ */
section.aq-faq {
    padding: 0;
    margin: 60px 0 120px 0;
    height: auto;
}
.aq-title-page.faq {
    color: var(--aq-blue);
    text-align: center;
    margin: 60px 0;
}

.accordion-item {
    margin: 0 0 32px 0;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-color: #050E2C;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-flush>.accordion-item:last-child {
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-color: #050E2C;
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-button {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    --bs-accordion-btn-color: rgba(0, 13, 51, 1);
}
section.aq-faq .accordion-button::after {
    background-image: var(--aq-accordion-btn-icon);
}
section.aq-faq .accordion-button:not(.collapsed)::after {
    background-image: var(--aq-accordion-btn-active-icon);
    --bs-accordion-btn-icon-transform: rotate(135deg);
}
.accordion-body {
    font-size: 16px;
    color: var(--aq-blue);
}
.accordion-button:not(.collapsed) {
    --bs-accordion-active-bg: var(--aq-white);
    --bs-accordion-border-color: var(--aq-white);
}
.accordion-button:focus {
    box-shadow: unset;
}

/* Section.Contact ------------ */
section.aq-contact {
    margin-bottom: unset;
    min-height: 100vh;
    padding: 110px 12px 120px;
    background: linear-gradient(90deg, rgba(35, 97, 195, .10) 0%, rgba(0, 11, 45, 0.78) 68%, #000D33 100%);
}
img.contact-bg,
.aq-contact div.layout {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.aq-contact div.layout {
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 11, 45, 0.78) 68%, #000D33 100%);
}
.aq-contact-form {
    position: relative;
    z-index: 3;
    padding: 12px;
    border-radius: 20px;
    background-color: var(--aq-light-gray);
}
.aq-contact-form .title {
    font-size: 32px;
    color: var(--aq-blue);
    margin: 0 0 24px 0;
}
.aq-contact-form form .form-control {
    height: 60px;
    padding: 12px 24px;
    border-radius: 10px;
    --bs-border-color: transparent;
    --bs-border-width: 2px;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.aq-contact-form form textarea.form-control {
    height: 180px;
    resize: none;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.aq-contact-form .btn.btn-dark {
    max-width: unset;
}
.aq-contact-form .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--aq-light-gray);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .10);
}
/* Página Contactanos  */
section.aq-contact.contact {
    background: white;
}
section.aq-contact.contact .aq-contact-form {
    box-shadow: 0px 4px 4px 0px #00000040;
}
.aq-main-banner.contact .layout {
    background: rgba(0, 0, 0, 0.7);
}
.aq-main-banner.water .layout {
    background: #050e2c73;
}
.aq-main-banner.contact .aq-main-banner-container {
    height: calc(100vh - 64px);
}
.aq-main-banner.contact .aq-main-banner-container>img.aq-banner {
    right: 0;
    height: 30%;
}
.aq-main-banner.contact .aq-caption-banner .aq-subtitle-page {
    margin: 12px 0 0 0;
}
.aq-contact-info-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin: 50px 0 0 0;
}
.aq-contact-info-box h4 {
    font-size: 32px;
    color: var(--aq-blue);
    margin: 0 0 12px 0;
    font-weight: bold;
}
.aq-contact-info-box p {
    font-weight: 600;
}
.aq-contact-info-box {
    grid-column: 1/3;
    grid-row: 1/1;
}
.aq-contact-info-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-self: center;
    gap: 12px;
    margin: 0 0 12px;
}
.aq-contact-info-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.aq-contact-info-item span,
.aq-contact-info-item a.aq-link {
    width: auto;
    display: inline;
    text-decoration: none;
    color: var(--aq-blue);
    font-weight: 600;
}
.aq-contact-info-item:nth-child(2) {
    grid-column: 1/1;
    grid-row: 2/3;
}

.aq-contact-info-item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
}

.aq-contact-info-item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
}

/* Pag. servicios  */
.aq-treatment.services .aq-treatment-wrapper {
    gap: 6px;
    padding: 12px;
    margin: 0;
}
.aq-main-banner.services .aq-main-banner-container {
    height: auto;
    background: linear-gradient(90deg, #141433 14.5%, rgba(20, 20, 51, 0.814364) 40.5%, rgba(20, 20, 51, 0.6) 53.5%, rgba(20, 20, 51, 0) 70%);
}
.aq-main-banner.services .layout {
    background: linear-gradient(90deg, #141433 -70%, rgba(20, 20, 51, 0.814364) 40.5%, rgba(20, 20, 51, 0.6) 70%, rgba(20, 20, 51, 5) 100%);
}
.aq-main-banner.services .aq-caption-banner .aq-subtitle-page {
    margin: 12px 0 0 0;
}
.aq-treatment.services .aq-treatment-wrapper .aq-title {
    line-height: 1;
    color: black;
}
.aq-treatment-banner img.services {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.aq-treatment.services ul {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}
.aq-treatment.services ul li{
    margin: 5px 0;
}
.aq-contact div.layout.services {
    background: #FFFFFF4D;
}
.aq-contact-form.services {
    text-align: center;
}
.aq-contact-form.services .title {
    margin: 12px 0;
}
.aq-contact-form.services span {
    color: var(--aq-blue);
    font-weight: 600;
    margin-bottom: 32px;
}
.aq-contact.services form {
    margin: 24px 0 0 0;
}
section.aq-partner-slider,
section.aq-companies-slider {
    padding: 0 0 60px 0;
}
.aq-partner-title {
    font-size: 32px;
    color: #000D33;
    text-transform: uppercase;
}
.aq-company-title {
    margin: 48px 0 024px 0;
}
.swiper-companies-1 .swiper-wrapper .swiper-slide img,
.swiper-partner-1 .swiper-wrapper .swiper-slide img,
.swiper-partner-2 .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 85px;
    object-fit: contain;
    display: inline-block;
    margin: 12px auto;
}
/* .swiper-partner-1 .swiper-wrapper .swiper-slide .aq-partner img {
    max-width: 100%;
    max-height: 100%;
} */
.tab-content>.tab-pane {
    padding: 0 0 30px 0;
}
.nav-tabs .nav-link {
    border: unset;
    color: #949794;
}
.nav-tabs .nav-link.active {
    --bs-nav-tabs-link-active-color: #0071CE;
    border-bottom: 1px solid #0071CE;
}
.nav-link:focus, .nav-link:hover {
    color: #0071CE;
}

 .aq-services-tab {
    width: 100%;
    margin:0 auto;
 }
 .aq-services-tab >*{
    color: #949794;
    border: unset;
    justify-content: center;
 }
 .aq-title-list {
    font-size: 17px;
    font-weight: bold;
 }
 /* Sistemas de agua ------------- */
 .aq-not-available-products {
    color: gray;
    font-style: italic;
    font-weight: 400;
 }
 section.water-systems {
    padding: 12px;
 }
 .aq-main-banner.water .aq-main-banner-container {
    height: 150px;
}
.aq-caption-banner.water>.aq-title-box .aq-title-page {
    font-size: 24px;
    line-height: 1;
    margin: 0;
 }
.aq-caption-banner.water {
    top: 24px;
    transform: unset;
}
 .aq-treatment-box.water {
    width: 100%;
    margin: 50px 0 0 0;
 }
 hr.water {
    --bs-border-width: 2px;
    color: #2361C3;
    opacity: 1;
    margin: 2rem auto 3rem auto;
    width: 90%;
 }
 section.water-systems .aq-search,
 .aq-search .input-group-text {
    --bs-body-bg: #2361C30D;
    --bs-tertiary-bg: #2361C30D;
    /* background: #2361C30D; */
    /* border: 1px solid  #2361C3; */
 }
 .aq-search .input-group-text,
 .aq-search input {
    --bs-border-color: #2361C3;
 }
 .aq-search .input-group-text {
    border-right: 1px solid transparent;
 }
 .breadcrumb-item a {
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
 }
 .breadcrumb-item.active { 
    --bs-breadcrumb-item-active-color: black;
    font-weight: bold;
 }
 .breadcrumb-item.active a {
    color: rgba(33, 37, 41, 1);
 }
 .aq-order-by {
    display: flex;
    justify-content: end;
    align-items: center;
 }
 .aq-order-by .form-floating select {
    color: var(--aq-blue);
    background: #2361C30D;
    padding: 26px 12px 10px 12px;
    border: 1px solid #2361C3;
 }
 .aq-order-by .form-floating select:focus {
    box-shadow: unset;
    border: 1px solid #2361C3;
 }
 .aq-order-by .form-floating>.form-select~label::after{
    font-weight: bold;
    background-color: transparent;
 }
 .aq-order-by .form-floating label {
    font-weight: bold;
    color: var(--aq-blue);
 }
 .aq-order-by .form-floating label img {
    width: 18px;
    height: 18px;
    object-fit: contain;
 }
 .aq-caption-banner.water>.aq-title-box {
    justify-content: center;
    align-items: center;
 }
 .aq-water-filter {
    margin: 24px 0;
 }
 .aq-water-filter .accordion-item {
    margin: 0;
 }

 .accordion.aq-water-filter {
    --bs-accordion-bg: #2361C30D;
 }
 .accordion.aq-water-filter .accordion-item {
    border: unset;
    --bs-accordion-border-color: #2361C30D;
 }

 .accordion.aq-water-filter .accordion-button,
 .accordion.aq-water-filter .accordion-button:not(.collapsed) {
    --bs-accordion-active-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-bg: #2361C30D;
    font-weight: bold;
 }

 .accordion.aq-water-filter .accordion-header {
    position: relative;
    text-align: center;
 }
 .accordion.aq-water-filter .aq-accordion-border {
    width: 90%;
    display: inline-block;
    height: 1px;
    background: #2361C3;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 5%;
    opacity: 0;
 }
 .accordion.aq-water-filter .accordion-button:not(.collapsed) ~ .aq-accordion-border{
    opacity: 1;
 }
 .aq-water-category-container .form-check {
    position: relative;
    margin-bottom: 6px;
 }
 .aq-water-category-container .form-check .form-check-label {
    position: relative;
    z-index: 3;
    margin-left: -1.5em;
    color: #050E2C;
    line-height: 1.2;
 }
 .aq-water-category-container .form-check-input[type=radio],
 .aq-water-category-container .form-check-input:checked[type=radio] {
    position: absolute;
    opacity: 0;
    z-index: 0;
 }

 .aq-water-category-container .form-check-label {
    font-weight: 400;
    transform: translateX(0);
    transition: all .3s ease;
 }
 .aq-water-category-container .form-check-label a{
    text-decoration: none;
    color: #050E2C;
 }
 .aq-water-category-container .form-check-label:hover {
    transform: translateX(4px);
 }
 .aq-water-category-container .form-check-input:checked ~ .form-check-label a {
    color: var(--aq-light-blue);
    transform: translateX(4px);
    font-weight: 500;
 }

 /* Marcas/Brands  */
 .aq-water-brands-container .form-check-input:checked {
    background-color: #050E2C;
    border-color: #050E2C;
 }
 .aq-water-brands-container .form-check-input:checked ~ .form-check-label {
    color: var(--aq-light-blue);
 }
 .aq-water-brands-container .form-check-input {
    --bs-form-check-bg: #2361C30D;
 }

 /* productos  */
 .aq-water-systems-title {
    font-size: 24px;
 }
 .aq-water-container {
    height: auto;
    min-height: 50vh;
 }
 .aq-box {
    margin: 12px 0;
 }
 .aq-box-banner {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    border: 1px solid rgba(211,211,211, .5);
    border-radius: 4px;
    padding: 12px;
 }
 .aq-box-banner a,
 .aq-box-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: inline-block;
 }
 .aq-box-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin: 6px 4px 4px;
 }
 .aq-box-detail a {
    font-weight: 500;
    max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    text-decoration: none;
    color: var(--aq-blue);
 }
 .aq-arrows {
    display: flex;
    gap: 12px;
    justify-content: end;
    align-items: center;
 }
 
 .aq-arrows a{
    display: inline-block;
 }
 .aq-arrows a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
 }
 .aq-search .form-control,
 .aq-search .form-control:focus {
    box-shadow: unset;
    border-color: #2361C3;
    border-left: transparent;
 }
 .aq-search .form-control:focus ~ span  {
    border: 1px solid rgba(13,110,253,.5);
 }
 /* pagination  */
 .aq-paginator-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
 .aq-paginator-container .aq-showing {
    margin: 0;
    width: 100%;
 }
 .aq-pagination {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.aq-pagination .pagination {
    margin: 0;
}
 .aq-pagination li.page-item a.page-link img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.aq-pagination .page-item:last-child a.page-link img {
    width: 34px;
    height: 34px;
    object-fit: scale-down;
}
.aq-pagination li.page-item {
    color: var(--cb-blue);
    margin: 0 6px;
}
.aq-pagination .page-item:first-child .page-link, 
.aq-pagination .page-item:last-child .page-link, 
.aq-pagination .page-item:not(:first-child) .page-link {
    border-radius: 14px;
    --bs-pagination-border-color: transparent;
}
.aq-pagination .page-item:first-child .page-link,
.aq-pagination .page-item:last-child .page-link {
    background: transparent;
    border-color: transparent;
    transform: translate(0);
    transition: all .3s ease;
}
.aq-pagination .page-item:first-child .page-link:hover {
    transform: translateX(-4px);
}
.aq-pagination .page-item:last-child .page-link:hover {
    transform: translateX(4px);
}

.aq-pagination .disabled>.page-link, .page-link.disabled {
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-border-color: transparent;
    opacity: .5;
}
 /* Detalle producto ----------- */
 .aq-water-header-filter-container {
    text-transform: uppercase;
    margin: 0 0 48px 0;
    font-size: 14px;
 }
 .aq-product-title {
    font-size: 20px;
    margin: 12px;
 }
 .aq-product-box {
    width: auto;
    height: 350px;
    border: 1px solid lightgray;
    border-radius: 8px;
    margin: 0 12px;
    padding: 24px;
 }
 .aq-product-box img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
 }
 .aq-product-models {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 48px auto 12px auto;
 }
 .btn.aq-model {
    width: auto;
    height: auto;
    min-width: 100px;
    min-height: 42px;
    border-radius: 4px;
    max-width: 250px;
    font-size: 13px;
    padding: 4px 6px;
    line-height: 1.2;
    white-space: break-spaces;
    border: 1px solid black;
 }
 .btn.aq-model.active {
    background: black;
    color: white;
 }
 .aq-slick-product-container {
    /* margin: 0 0 48px 0; */
 }
 .slick-dots li button,
 .slick-dots li button:before {
    font-size: 25px;
    width: 20px;
    height: 20px;
 }
 .slick-dots li button:before {
    color: var(--aq-light-blue);
 }
 .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--aq-light-blue);
 }
 .aq-product-body {
    width: 100%;
    height: auto;
 }
 .aq-product-item .content {
    margin: 0 0 24px 0;
    height: auto;
    max-height: 150px;
    overflow: hidden;
    overflow-y: scroll;
    min-height: 50px;
 }
 .aq-product-item .content.product {
    min-height: 50px;
 }
 .aq-product-item .content.model {
    min-height: 60px;
    max-height: 300px;
 }
 .aq-product-item>h4 {
    position: relative;
    font-size: 18px;
    color: #000D33;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0 0 32px;
    margin: 0 0 10px 0;
 }
 .aq-product-item>h4::before,
 .btn-outline-dark.aq-doc::before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    background-image: url(../images/product-check-icon.svg);
    transform: translateY(-50%);
}
.aq-product-body .content {
    color: #000D33;
    font-weight: 500;
    /* line-height: 1.3; */
}

.aq-product-docs {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
}
.aq-product-docs.product {
    justify-content: start;
}
.aq-product-docs .btn {
    height: 40px;
}
.aq-product-docs .btn.btn-outline-dark:hover {
    color: var(--aq-blue);
    border-color: var(--aq-blue);
    background-color: rgb(5 14 44 / 25%)
}
.aq-product-docs .btn.btn-outline-dark:hover .aq-doc::before {
    filter: brightness(100);
}
.aq-doc {
    position: relative;
    padding: 12px 24px 12px 12px;
}
.aq-doc::before {
    left: unset!important;
    right: 20px !important;
    width: 12px!important;
    height: 12px!important;
    background-image: url(../images/icon-arrow.png) !important;
}
.aq-subproducts {
    padding: 60px 0;
    margin: 60px 0;
    background-color: #f2f2f2;
}
.aq-subproducts-title {
    color: #050E2C;
    font-weight: bold;
    margin: 0 0 60px 0;
    line-height: 1;
    font-size: 24px;
}
.aq-slick-product-container,
.aq-slick-subproducts-container {
    display: none;
}
.aq-slick-subproducts-container .aq-subproduct-item {
    width: 300px;
    height: 100px;
    max-height: unset;
    margin: 0 12px;
    border: 1px solid rgba(211,211,211, .25);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
.aq-slick-subproducts-container .aq-subproduct-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.aq-treatment-box.product-detail {
    padding: 30px auto 60px auto;
}
@media (min-width: 576px) {
    .aq-main-banner.services .layout {
        background: linear-gradient(90deg, #141433 14.5%, rgba(20, 20, 51, 0.814364) 40.5%, rgba(20, 20, 51, 0.6) 53.5%, rgba(20, 20, 51, 0) 70%);
    }
    .aq-services-slider-title {
        padding: 48px;
    } 
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: calc(450px - 45%);
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: calc(450px - 45%);
    }
    .aq-experts-wrapper {
        width: 70%;
        height: auto;
        margin: 60px 0;
        padding: 12px 30px;
    }
    .aq-experts-banner {
        height: 50%;
    }
   .aq-footer-container a {
        margin: 0px 24px 0 0;
    }
    .aq-treatment-box {
        width: 90%;
        align-items: center;
        justify-items: start;
        grid-template-columns: 1.5fr .5fr;
    }
    .aq-treatment-box-icon {
        gap: 60px;
        flex-direction: row;
        text-align: left;
    }
    .aq-card {
        width: 315px;
        gap: 0;
        min-height: unset;
        height: 250px;
    }
    .aq-card.category,
    .aq-card.category .category-img {
        height: auto;
    }
    .aq-main-banner-container .aq-title-page {
        font-size: 34px;
    }
    .aq-card.projects {
        width: 300px;
    }
    .swiper-slide.swiper-slide-active .aq-card.projects .aq-link {
        font-size: 9px;
    }
    .aquatreat-card {
        height: 250px;
    }
    .aq-main-banner-container {
        height: auto;
    }
    .aq-caption,
    .aq-caption-banner {
        transform: unset;
    }
    .aq-main-banner-container>img.aq-banner {
        right: 0;
    }
    .aq-caption-banner {
        width: 60%;
        margin: 0 auto 0 0;
        padding: 24px;
    }
    .aq-main-banner-container>img.aq-banner {
        height: 50%;
    }
    .aq-treatment-banner img.services {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .aq-main-banner.water .aq-main-banner-container {
        padding: 0;
    }
    .aq-caption-banner.water {
        top: 60%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .aq-box {
        margin: 12px;
    }
    .aq-treatment-box img {
        margin: 0 0 0 60px;
    }
}
@media (min-width: 768px) { 
    .aq-subproducts-title {
        font-size: 32px;
    }
    #playPauseButton {
        display: none;
    }
    .swiper.aq-catgeories-slider {
        min-height: 500px;
    }
    section.water-systems {
        padding: 24px;
    }
}
@media (min-width: 992px) {
    
    .aq-subproducts-title {
        font-size: 2.5vw;
    }
    section.aq-treatment {
        padding: 60px 0 0 0;
    }
    .aq-services-tab {
        width: 80%;
        margin: 24px auto 60px auto;
    }
    .aq-main-banner.services .aq-caption-banner {
        top: 50%;
        height: auto;
        transform: translateY(-50%);
    }
    .aq-caption-banner .aq-subtitle-page {
        font-size: 20px;
    }
    .aq-values-box span {
        font-size: 24px;
    }
    .aq-banner-bg .title{
        font-weight: 30px;
    }
    .aq-contact-form {
        padding: 20px;
    }
    section.aq-categories {
        height: 100vh;
    }
    .aq-contact-head {
        max-width: 220px;
    }
    .aq-partner-title { 
        font-size: 2.5vw;
    }
    .swiper.aq-categories .aq-category-item .aq-card {
        width: 315px;
    }

    .aq-services-slider-title {
        /* width: 450px; */
        width: 100%;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: calc(50% - 315px);
    }
    .swiper-button-next, .swiper-rtl .swiper-button-next {
        right: calc(50% - 315px);
    }
    /* slider-projects */
    .aq-projects-title {
        margin: 24px 0;
    }
    .swiper.aq-catgeories-slider.projects .swiper-button-prev, 
    .swiper.aq-catgeories-slider.projects .swiper-rtl .swiper-button-next {
        left: calc(50% - 380px);
    }
    .swiper.aq-catgeories-slider.projects .swiper-button-next, 
    .swiper.aq-catgeories-slider.projects .swiper-rtl .swiper-button-next {
        right: calc(50% - 380px);
    }
    .aq-title-page {
        font-size: 3.2vw;
    }
    .aq-title-page.project {
        font-size: 2vw;
        margin: 0 0 24px;
        line-height: 1.2;
    }
    .aq-experts-wrapper .aq-title {
        font-size: 3vw;
    }
    .navbar-expand-lg .navbar-nav.aqtreat {
        gap: 30px;
        align-items: center;
    }
    .aq-experts-wrapper {
        width: 100%;
        justify-content: center;
        margin: 0 0 0 120px;
    }
    .aq-experts-banner {
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
    }
    .aq-main-banner-container {
        height: calc(100vh - 64px);
    }
    .aq-caption {
        gap: 60px;
        transform: translateY(-50%);
    }
    .aq-main-banner-container {
        padding: 0;
    }
    .aq-main-icon {
        height: 110px;
    }
    .aq-banner-bg .title {
        font-size: 2vw;
        margin: 0;
    }
    .aq-banner-wrapper {
        flex-direction: row;
    }
    .aq-treatment-wrapper {
        width: 80%;
        align-items: start;
    }
    .aq-treatment-wrapper .aq-title{
        font-size: 2vw;
    }
    .aq-treatment-banner {
        margin: 0;
    }
    .aq-treatment-banner img {
        width: auto;
        height: 560px;
    }
    section.aq-treatment {
        padding: 60px 12px;
    }
    .aq-card.projects {
        width: 350px;
    }
    .aq-categories.projects {
        height: auto;
        min-height: 100vh;
    }
    .swiper-wrapper,
    .aq-categories.projects .swiper-wrapper {
        height: auto;
    }
    .swiper-wrapper {
        display: flex;
        align-items: center;
    }
    section.aq-services {
        padding: 100px 0 24px 0;
    }
    .aq-services-slider-wrapper {
        grid-template-columns: .5fr 1.5fr;
        grid-template-rows: 1fr;
    }
    section.aq-services-slider {
        height: auto;
    }
    .aq-services-wrapper {
        padding: 100px 12px;
    }
    .aquatreat-txt {
        font-size: 18px;
    }
    .aquatreat-card {
        height: 450px;
    }
    .aquatreat-icon {
        width: 190px;
        height: 190px;
    }
    .aq-main-banner-container>img.aq-banner {
        right: 0;
        height: 500px;
    }
    .aq-main-banner-container {
        height: 100vh;
    }
    .aq-caption-banner {
        width: 80%;
        margin: 0 auto;
        padding: 0 12px;
    }
    .aq-main-banner-container {
        height: calc(100vh - 64px);
        margin: 64px 0 0 0;
    }
    .aq-values-box {
        gap: 30px;
        margin: 0 0 60px 0;
    }
    .aq-cicle-container {
        margin: 0;
    }
    .aq-circle-banner {
        width: 90%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;    
        padding: 0;
        margin: 0 auto 24px auto;
    }
    .aq-circle-banner:nth-of-type(even) .icon {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }
    .aq-circle-banner:nth-of-type(even) .desc {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    .aq-circle-banner .desc {
        width: 80%;
    }
    .aq-circle-banner .icon {
        height: 450px;
        margin: 0 auto;
    }
    .aq-partner-title {
        font-size: 2.75vw;
    }
    .aq-partner-slider .swiper-wrapper {
        height: auto;
    }
    .aq-banner-bg {
        height: 280px;
    }
    .aq-contact-form .title {
        font-size: 2.5vw;
        margin: 0 0 32px 0;
    }
    .aq-contact-form {
        padding: 48px 24px;
    }
    .aq-contact-info-box h4 {
        font-size: 2.5vw;
    }
    .aq-contact-info-wrapper {
        padding: 0 0 0 48px;
    }
    .aq-contact-info-wrapper { 
        margin: 0;
    }
    .aq-main-banner.contact .aq-main-banner-container>img.aq-banner {
        right: 7%;
        height: 280px;
    }
    .aq-main-banner.contact .aq-main-banner-container {
        height: calc(50vh - 64px);
    }
    .aq-main-banner.water .aq-main-banner-container {
        height: 200px;
    }
    .aq-main-banner.services .aq-main-banner-container {
        height: calc(70vh - 64px);
    }
    .aq-caption-banner .aq-subtitle-page {
        font-size: 24px;
    }
    .aq-treatment-banner {
        margin: 0;
    }
    .aq-treatment-banner img.services {
        width: 80%;
        height: 100%;
        object-fit: cover;
    }
    .aq-treatment-wrapper {
        margin: 0 auto;
    }
    .aq-experts-wrapper {
        height: 100vh;
    }
    /* Footer ----------------------------- */
    .aq-footer-container {
        gap: unset;
        grid-template-columns: 1fr .75fr 1fr 1fr;
        grid-template-rows: 1fr auto;
        align-items: start;
        justify-items: center;
    }
    .aq-footer-menu, 
    .aq-footer-locations, 
    .aq-footer-terms {
        display: flex;
        gap: 6px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .aq-footer-terms {
        grid-column: 1 / 6;
        grid-row: 2 / 3;
        flex-direction: row;
        justify-content: space-between;
    }
    .aq-link-box {
        flex-direction: row;
        gap: 60px;
    }
    .aq-footer-menu {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .aq-footer-locations {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        gap: unset;
    }
    .aq-footer-logo>a {
        width: auto;
        height: 50px;
        display: inline-block;
    }
    .aquatreat-card {
        margin: 12px auto;
    }
    .aq-caption-banner.water>.aq-title-box .aq-title-page {
        font-size: 3vw;
     }
     .swiper-slide.swiper-slide-active .aq-card .aq-link {
        font-size: 13px;
     }
     
    section.water-systems {
        padding: 24px 48px 0;
    }
    .aq-caption-banner.water {
        top: 30%;
    }
    
    .aq-contact-head {
        max-width: 180px;
    }
}
@media (min-width: 1200px) {  
    .container-fluid.aq-fluid {
        max-width: 90%;
    }
}
@media (min-width: 1400px) { 
    section.aq-categories {
        height: auto;
        min-height: unset;
        padding: 12px 12px 48px 12px;
    }
    
    .navbar-expand-lg .navbar-nav.aqtreat {
        justify-content:space-evenly;
    }
}
@media (min-width: 2000px) { 

    .category-img {
        height: 290px;
    }
    .aq-projects-title {
        margin: 60px 0 48px 0;
    }
    .aq-title-page.project {
        font-size: 2.5vw;
    }
    .aq-card.projects {
        width: 380px;
    }
    #loading strong{
        font-size: 2.25vw;
    }
    section.aq-categories {
        min-height: calc(100vh - 57px);
    }
    .aq-partner-title {
        font-size: 3.2vw;
    }
    .btn {
        max-width: 380px;
        height: 58px;
        font-size: 1.75rem;
    }
    .container {
        max-width: 1620px;
    }
    section.aq-values {
        padding: 100px 0;
    }
    .navbar-brand {
        padding: 12px 0;
    }
    .aq-card .aq-link {
        font-size: 1.75rem;
    }
    .aq-main-icon {
        width: auto;
        height: 280px;
    }
    .aq-navbar-logo {
        height: 64px;
    }
    .aq-main-banner-container {
        height: calc(100vh - 104px);
        margin: 104px 0 0 0;
    }
    .aq-main-banner-container .aq-title-page{
        font-size: 3.5vw;
        line-height: 1;
    }
    .aq-main-banner-container .aq-title-page.services {
        font-size: 3.5vw;
    }
    .aq-caption-banner>.aq-title-box {
        font-size: 1.2vw
    }
    .aq-experts-text span,
    .aq-values-box span {
        font-size: 1.5vw;
    }
    .aq-subtitle-page {
        font-size: 3.5vw;
        line-height: 1.2;
    }
    .aq-partner-title {
        font-size: 3vw;
    }
    .navbar-nav .nav-link {
        font-size: 1.75rem;
    }
    section.aq-categories {
        height: auto;
        min-height: unset;
        padding: 12px 0;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: calc(50% - 600px);
    }
    .swiper-button-next, .swiper-rtl .swiper-button-next {
        right: calc(50% - 600px);
    }
    .aq-categories.projects .swiper-wrapper {
        height: auto;
    }
    .swiper-wrapper {
        height: 700px;
    }
    .swiper.aq-catgeories-slider {
        min-height: unset;
    }
    .swiper-slide.swiper-slide-active .aq-card .aq-link {
        font-size: 22px;
        line-height: 1.1;
    }
    .swiper-slide.swiper-slide-active .aq-card img {
        width: 100%;
        max-width: 500px;
    }
    .aq-banner-bg .title{
        font-size: 2vw;
    }
    .aq-card {
        width: 100%;
        height: 400px;
    }
    .aq-experts-banner {
        top: unset;
        height: 100%;
    }
    .btn.aq-more-home {
        max-width: 280px;
    }
    .aq-experts-wrapper {
        height: auto;
        min-height: 50vh;
        width: 80%;
        margin: 0 auto;
    }
    .aq-experts-text p,
    .aq-services-slider-title p,
    .aq-treatment-wrapper .aq-desc,
    .aq-treatment-box-icon {
        font-size: 28px;
    }
    .aq-company-title {
        margin: 60px 0;
        font-size: 2.5vw;
    }
    section.aq-companies-slider {
        padding: 0 0 100px 0;
    }
    .aq-categories.projects {
        height: auto;
        min-height: 70vh;
    }
    .aq-title-page {
        font-size: 3vw;
        line-height: 1.1;
        margin: 0 0 60px 0;
    }
    section.aq-services-slider {
        height: 50vh;
    }
    footer .container-lg {
        max-width: 1820px;
    }
    .aq-treatment-box {
        width: 84%;
    }
    .aq-treatment-box img {
        width: 100px;
        height: 100px;
    }
    .aq-caption-banner .aq-subtitle-page {
        font-size: 1.5vw;
    }
    .aq-main-banner-container>img.aq-banner {
        height: 50%;
        max-height: 800px;
    }
    .aq-caption-banner.about {
        top: 210px;
    }
    .aq-main-banner-container>img.aq-banner.about {
        height: 80%;
        max-height: unset;
    }
    .aq-values-box img {
        width: 130px;
        height: 130px;
    }
    .aq-circle-banner .desc h4 {
        font-size: 2.3vw ;
    }
    .aq-circle-banner p {
        font-size: 1.75rem;
    }
    .aq-values-box {
        margin: 0 0 100px 0;
    }
    .aq-partner-title {
        margin: 30px 0 0 0;
    }
    section.aq-contact {
        height: auto;
        min-height: auto;
    }
    .accordion-button,
    .accordion-body {
        font-size: 28px;
    }
    .aq-caption-banner>.aq-title-box {
        font-size: 1.3vw;
    }
 
}
