/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 1000;

    --green: #2471A3;
    --black:#192a56;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hover:.2rem solid var(--black);
    --blue: #2471A3;
    --fondo: #111827;
    --fondo2: #19243a;
    --fondoGit1: #0D1117;
    --fondoGit2: #0D1318;
    --footerGit: #161B22;
    --fondoLoater: #0c1b21;
    --purple: #8e44ad;
    --red: #c0392b;
    --orange: #f39c12;
    --black2: #333;
    --white: #fff;
    --light-color: #666;
    --light-white: #ccc;
    --light-bg: #f5f5f5;
    --border: .1rem solid var(--black);
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*ESTILOS GENERALES*/
* {
    padding: 0px;
    margin: 0px;
    font-family: 'Nunito', sans-serif !important;
    text-decoration: none;
    outline: none;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}



ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.container{
    margin-inline: 1.5rem;
    padding: 1rem 2rem;
}

/*CABECERA*/
/*
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    z-index: 99999;
}

.nav{
    height: 6rem;
}

.nav__logo,
.nav__burger,
.nav__close{
    color: black;
}

.nav__data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo{
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: 400;
}

.nav__logo img{
    width: 6.5rem;
}

.nav__toggle{
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 3.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close{
    opacity: 0;
}
*/
/* Navegacion para dispositivos mobiles*/
/*
@media screen and (max-width: 1118px){
    .nav__menu{
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        transition: top .4s, opacity .3s;
    }
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        background-color: white;
        padding-top: 1rem;
    }
}

.nav__link{
    color: var(--black-color);
    background-color: var(--white-color);
}*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  font-size: 2.5rem;
  text-transform: uppercase;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

header .icons i,
header .icons a,
header .icons div{
    cursor: pointer;
    margin-left: .5rem;
    height:4.5rem;
    line-height: 4.5rem;
    width:4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color:var(--black);
    border-radius: 50%;
    background: #eee;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }

  .dropdown__link{
    width: auto !important;
  }

  .dropdown__sublink,
  .dropdown__subsublink {
  width: 100% !important;
  }

  #dropdown2{
    padding-left: 5.5rem;
  }

  #dropdown3{
    padding-left: 8.5rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  font-size: 2rem;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 5.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__sublink,
.dropdown__subsublink {
  background-color: var(--black-color-lighten);
}

.dropdown__link, 
.dropdown__sublink,
.dropdown__subsublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
  font-size: 1.50rem;
  width: 170px;
}

.dropdown__sublink{
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
}

.dropdown__link i, 
.dropdown__sublink i,
.dropdown__subsublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover,
.dropdown__subsublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu,
.dropdown__subsubmenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu,
.dropdown__subsubitem:hover > .dropdown__subsubmenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add,
.dropdown__subadd {
  margin-left: auto;
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu,
  .dropdown__subsubmenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink,
  .dropdown__subsublink {
    /*padding-inline: 1rem 3.5rem;*/
    padding-inline: 1rem;
  }

  .dropdown__subitem .dropdown__link,
  .dropdown__subsubitem .dropdown__sublink {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  .dropdown__subsubmenu{
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown subsubmenu */
  .dropdown__subsubitem:hover > .dropdown__subsubmenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

.about,
.products,
.contactUs{
    padding:2rem 9%;
    
}

.sub-heading{
    text-align: center;
    color:var(--green);
    font-size: 2rem;
    padding-top: 3rem;
    text-transform: capitalize;
}

.heading{
    text-align: center;
    color:var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

.banner
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    background-size: cover;
    margin-top: 5rem;
}
.banner img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.banner .content
{
    position: relative;
    max-width: 900px;
    text-align: center;
}

.banner .content .box-img{
    background-color: white;
    width: 340px;
    height: 300px;
    align-self: center;
    margin: 0 auto;
    border-radius: 40px;
}

.content img{
    align-self: center;
    margin: 0 auto;
    border-radius: 40px;
}

.banner .content img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    /*height: 320px;
    margin-top: 50px;
    margin-bottom: 80px;*/
    opacity: .9;
    width: 297px;
    margin: 0 auto;
}
.banner .content h2
{
    font-size: 8em;
    color: #fff;
}
.banner .content p
{
    font-size: 2.5em;
    color: #fff;
    margin-top: 30px;
    font-weight: 700;
}

.banner .btn
{
    font-size: 17px;
    color: #fff;
    background:var(--green);
    display: inline-block;
    border-radius: 6px;
    padding: 10px 30px;
    margin-top: 30px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}
.about .btn_p
{
    font-size: 14px;
    color: #fff;
    background:var(--green);
    display: inline-block;
    border-radius: 4px;
    padding: 10px 30px;
    margin-top: 30px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}
.banner .btn:hover
{
    background: #1F618D;
}

.bubbles img{
    width: 50px;
    /*height: 50px;*/
    animation: bubble 7s linear infinite;
    z-index: 999;
    cursor: pointer;
}
.bubbles img:hover{
    display: none;
}
.bubbles{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 10px; /*-70px*/
}

@keyframes bubble{
    0%{
        transform: translateY(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        transform: translateY(-80vh);
        opacity: 0;
    }
}

.bubbles img:nth-child(1){
    animation-delay: 2s;
    width: 25px;
}
.bubbles img:nth-child(2){
    animation-delay: 1s;
}
.bubbles img:nth-child(3){
    animation-delay: 3s;
    width: 25px;
}
.bubbles img:nth-child(4){
    animation-delay: 4.5s;
}
.bubbles img:nth-child(5){
    animation-delay: 3s;
}
.bubbles img:nth-child(6){
    width: 20px;
    animation-delay: 6s;
}
.bubbles img:nth-child(7){
    width: 35px;
    animation-delay: 7s;
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-button a:hover {
  background-color: #128c7e;
}

.whatsapp-button a i {
  font-size: 50px;
}

.whatsapp-button a span {
  display: none;
}

.whatsapp-button a:hover span {
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width: 1200px){
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-button a i {
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
  .whatsapp-button a span {
    display: inline-block;
    margin-left: 10px;
  }
}

@media screen and (max-width: 540px){
    .whatsapp-button a i {
        font-size: 30px;
    }
}

@media screen and (max-width: 320px){
    .whatsapp-button a i {
        font-size: 20px;
    }
}

/************************** Nosotros *********************************/
.about .row{
    display: flex;
    flex-wrap: wrap;
    gap:3.5rem;
    align-items: center;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{ 
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about .row .content{
    flex:1 1 45rem;
}

.about .row .content h3{
    color:var(--black);
    font-size: 4rem;
    padding:.5rem 0;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.about .row .content .copywriting{
    color:var(--light-color);
    font-size: 1.5rem;
    padding:.5rem 0;
    line-height: 1.8;
}

.about .row .content .copywriting .end{
    color: var(--blue);
    font-weight: 900;
}

.about .row .content .copywriting .contentAudio{
    width: 100%;
    display: flex;
}

.about .row .content .copywriting .contentAudio #myAudio{
    width: 26rem;
    margin-top: 2.8rem;
}

.about .row .content .icons-container{
    display: flex;
    gap:1rem;
    flex-wrap: wrap;
    padding:1rem 0;
    margin-top: .5rem;
}

.about .row .content .icons-container .icons{
    background:#eee;
    border-radius: .5rem;
    border:.1rem solid rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    flex:1 1 17rem;
    padding:1.5rem 1rem;
}

.about .row .content .icons-container .icons i{
    font-size: 2.5rem;
    color:var(--green);
}

.about .row .content .icons-container .icons span{
    font-size: 1.5rem;
    color:var(--black);
}

/************************** Productos *********************************/
.products .product-slider{
    box-sizing: border-box !important;
    padding:1rem;
}
.products .product-slider .QuimPools{
    box-sizing: border-box !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .product-slider .QuimPools img{
    box-sizing: border-box !important;
    height: 150px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/*.products .miragetx{
    min-height: 140px;
}*/

.products .product-slider:first-child{
    box-sizing: border-box !important;
    margin-bottom: 2rem;
}

.products .product-slider .box{
    box-sizing: border-box !important;
    text-align: center !important;
    outline-offset: -1rem;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    background: rgb(255, 255, 255);
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    outline: var(--outline);
    transition: 0.2s linear;
}

.products .product-slider .box:hover{
    box-sizing: border-box !important;
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.products .product-slider .box img{
    box-sizing: border-box !important;
    height:20rem;
    border-radius: 20px;
}

.products .product-slider .box h3{
    box-sizing: border-box !important;
    font-size: 2.5rem;
    color:var(--black);
    margin-top: 10px;
}

.products .product-slider .box .price{
    box-sizing: border-box !important;
    font-size: 2rem;
    color:var(--light-color);
    padding:.5rem 0;
}

.btn
{
    font-size: 12px;
    color: #fff;
    background:var(--blue);
    display: inline-block;
    border-radius: 2px;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
    border-radius: 3px;
}
.btn:hover
{
    letter-spacing: 4px;
    background: #1F618D;
}

/************************** Contacto *********************************/
.contactUs{
    position: relative;
    padding: 40px 100px;
}
/*.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}*/
.contactUs .form{
    grid-area: form;
}
.contactUs .info{
    grid-area: info;
}
.contactUs .map{
    grid-area: map;
}
.contactUs .contact{
    padding: 40px;
    padding-bottom: 0;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.contactUs .box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contactUs .contact h3{
    color: var(--black);
    font-size: 3rem;
    margin-bottom: 10px;
}

/* form */

.contactUs .formBox{
    position: relative;
    width: 100%;
}
.contactUs .formBox .row50{
    display: flex;
    gap: 20px;
}
.contactUs .inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.contactUs .formBox .row100 .inputBox{
    width: 100%;
}
.contactUs .inputBox span{
    color: var(--blue);
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 5px;
}
.contactUs .inputBox input{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #333;
}
.contactUs .inputBox textarea{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #333;
    resize: none;
    min-height: 290px;
    margin-bottom: 10px;
}
.contactUs .inputBox input[type="submit"]{
    background: var(--blue);
    color: #fff;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
    border-radius: 3px;
    cursor: pointer;
    padding: 14px 15px;
}
.contactUs .inputBox input[type="submit"]:hover{
    background-color: #1F618D;
}
.contactUs .inputBox::placeholder{
    color: #999;
}

/* info */
.contactUs .info{
    background: #0e3959;
}
.contactUs .info h3{
    color: #fff;
}
.contactUs .info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.contactUs .info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-right: 15px;
}
.contactUs .info .infoBox div p{
    color: #fff;
    font-size: 14px;
}
.contactUs .info .infoBox div a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.contactUs .sci{
    margin-top: 40px;
    display: flex;
    font-size: 18px;
}
.contactUs .sci li{
    list-style: none;
    margin-right: 15px;
}
.contactUs .sci li a{
    color: #fff;
    font-size: 2em;
    color: #ccc;
}
.contactUs .sci li a:hover{
    color: #fff;
    transition: all .0001s linear;
}
.contactUs .map{
    padding: 0;
}
.contactUs .map iframe{
    width: 100%;
    height: 100%;
}

/* copyright */
.copyrightText
{
    padding: 16px 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}
.copyrightText p
{
    color: #333;
    font-size: 2rem;
}
.copyrightText a
{
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 2rem;
}
.copyrightText a span
{
    color: var(--red2);
    font-weight: 500;
    text-decoration: none;
    font-size: 2rem;
}


/***********************************RESPONSIVE****************************************/
@media(max-width: 1156px){
  .about .row .image{
    text-align: center;
  }
  .about .row .image img{
      width: 70%;
      height: 400px;
      text-align: center;
      object-fit: cover;
  }
}

@media(max-width: 1101px){
    
    html{
        font-size: 55%;
    }
    section{
        padding:2rem;
    }
    .contactUs{
        padding: 20px;
    }
    .contactUs .box {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "form"
            "info"
            "map";
        grid-gap: 20px;
        margin-top: 20px;
    }
    .contactUs .formBox .row50 {
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .contactUs .inputBox {
        width: 100%;
    }
    .contactUs .contact {
        padding: 30px;
    }
    .contactUs .map {
        padding: 0px;
        min-height: 300px;
    }
}


@media (max-width:840px){
    .about .row .content .copywriting .contentAudio #myAudio{
        display: flex;
        justify-content: center;
    }
}

@media (max-width:790px){
    .banner .content .box-img{
        width: 200px;
        height: 200px;
    }
    .banner .content img{
        width: 180px;
    }
    .about .row .image img{
      width: 100%;
  }
  section{
        padding: 0;
    }
}

@media (max-width:593px){
    .box-container .box .content p {
        font-size: 1.7rem;
        padding: 1.5rem 0;
        min-height: 180px;
    }
}

@media (max-width:550px){

    html{
        font-size: 50%;
    }
}

@media (max-width:380px){
    .banner .content {
        position: relative;
        max-width: 600px;
        text-align: center;
    }
    .contactUs{
        padding: 0;
    }
}

@media (max-width:325px){
    .banner .content img {
        margin-bottom: 60px;
    }
    .contactUs .contact {
        padding: 5px;
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .products .product-slider .box img {
        width: 100%;
    }
}