/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    position: relative;
    top: 0!important;
}
html{
    scroll-behavior: smooth;
}
/* PARTICLES JS */
#particles-js{position:absolute; width:100%; height:105%; top:0; left:0;}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/*****LOADING******/

/* all similar content styling codes */
section{
    padding: 70px 0;
}
.ind{
    position: relative;
    
}
.ind a{
    color:  #1469ae!important;
    font-weight: bold!important;
    letter-spacing: 0.5px;
}
.ind::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -10px;
    background: #1469ae;
    border-radius: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.max-width{
    max-width: 1200px;
    padding: 0 60px;
    margin: auto;
}
.opcs-1 i{
    color: #0000;
}

.enabled i{
    color: #0000;
}
.about{
/*
    padding-bottom: 11em;
*/
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.text-v{
    color: #111;
    position: relative;
    text-align: center;
    margin-bottom: 5%;
    font-size: 1.2em;
}
#read-more{
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: rgb(39, 65, 124);
    font-weight: bold;
    border: none;
    background: none;
    padding: 0 2%;
    font-size: 17px;
    margin: 0;
}
.call_to_touch{
    display: flex;
    flex-direction: row;
    grid-gap: 10px;
}

.tel_cont{

}
.tel_cont{
    
}
.aplicaciones .owl-nav{
}
/****GALLERY COLECCTION ***/
.wrapper{
    width: 100%;
  margin: 0;
  max-width: 1100px;
}
.gallery_0 .owl-stage{
    margin: 0 auto!important;
    transform: none!important;
}
.wrapper nav{
  display: flex;
  justify-content: start;
}
.wrapper .items{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.items span{
    padding: 7px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
    border-radius: 50px;
    border: 2px solid #0000;
    transition: all 0.3s ease;
}
.items span.enable,
.items span:hover{
    color: #fff;
    background: #1469ae;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.gallery .image{
    position: relative;
  width: calc(100% / 4);
  padding: 7px;
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}
.gallery .image:hover img{
    transition: all 0.3s ease;
  object-position: top;
}
.gallery .image div{
    position: absolute;
    width: 95%;
    height: 0%;
    bottom: 0;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}
.gallery .image div>h3{
    color: #fff;

}
.gallery .image div>p>strong{
    color: #1469ae;
}
.gallery .image div>p{
    color: #999;
    font-size: 14px;
    width: 95%;
}

.gallery .image:hover div{
    background: #111e;
    transition: all 0.3s ease;
    position: absolute;
    width: 95%;
    height: 100%;
    bottom: 0;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.gallery .image.hide{
  display: none;
}
.gallery .image.show{
  animation: animate 0.4s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  z-index: 10;
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview-box .details .title{
    display: flex;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Roboto';
    margin: 0;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 0;
}
.preview-box .details .title::before{
    display: none;
}
.preview-box .details .title p{
  font-weight: 500;
  margin: 0;
}
.preview-box .details .icon{
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}
.preview-box .image-box{
  width: 100%;
  display: flex;
}
.image-box img{
    width: 100%;
    border-radius: 0 0 3px 3px;
    height: 500px;
    object-fit: cover;
}
.shadow{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image{
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapper nav .items{
    max-width: 600px;
  }
  nav .items span{
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapper{
    margin: 30px auto;
  }
  .wrapper nav .items{
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .items span{
    margin: 5px;
  }
  .gallery .image{
    width: 100%;
  }
}
/*****END GALLERY ***/
.whats_m {
    padding: 3% 0;
    color: #fff;
    background: #222;
    border-radius: 15px;
    width: 170px;
    min-width: 120px;
}
.whats_m div{
     /* grid-gap: 10px; */
    display: flex;
    justify-content: center;
    grid-gap: 12px;
    align-items: center;
}
.whats_m i{
    color: #fff!important;
    font-size: 20px;
}
.slider-01{
    margin-bottom: 3%;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    color: #111;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 0;
    background: #1469ae;
    border-radius: 5px;
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #ff6500;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}
.content-h{
    background: #063a7a;
    width: 100%;
    position: relative;
    padding: 0.2% 0;
}
#ajust-call::before{
    content: attr(data-label);
    position: absolute;
    right: -350%;
    font-size: 13px;
    color: #fff;
    width: 150px;
    text-align: right;
}

.head-0{
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 2;
    display: flex;
}
.head-0 ul{
    display: flex;
    width: 50%;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
    grid-gap: 10px;
}
.head-0 ul>li{
    position: relative;
    list-style: none;
    margin: auto 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    cursor: pointer;
    color: #ffffff;
    background: none;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 1%;
    transition: 0.3s;
}
.head-0 ul:first-child li{
width: 22%;
justify-content: start;
position: relative;
}
.head-0 ul:first-child li::before{
right: 0!important;
width: 100%!important;
}

.head-0 ul>li>i{
    font-size: 13px;
}
.head-0 ul>li>ol{
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 20% 80%;
    width: 150px;
    align-items: center;
    border: 1px solid #999;
    padding: 2% 5%;
    align-content: center;
    border-radius: 7px;
}
.head-0 ul>li>ol>li{
    display: flex;
    align-items: center;
}
.head-0 ul>li>ol>li>ion-icon{
    margin: auto;
    font-size: 17px;
}
.head-0 ul>li>ol>li>select{
    width: 100%;
    border: none;
    background: #0000;
    color: #ddd;
    padding: 2% 3%;
    border-radius: 2px;
    font-size: 14px;
}

#about-0{
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    width: 425px;
    height: 100%;
}
#about-0 img{
    width: 50%;
}
#about-0 li{
        position: relative;
    border: 2px solid #eee;
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    padding: 10%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    transition: 0.2s;
}

#ajust-title{
    color: #fff;
}


/***************SHOOOPPPP******/
.slider-01 nav{
    width: 500px!important;
    position: relative;
    background: #fffe;
    margin: 3.5em auto;
    box-shadow: 0 6px 10px rgb(179 179 179 / 50%);
    border-radius: 10px 10px 0 0;
}

.slider-01 nav > ul{
    padding: 0;
    display: flex;
    justify-content: space-around;
}
.slider-01 nav>ul>li{
    padding: 0;
    list-style: none;
    border-bottom: 4px solid #eee;
    cursor: pointer;
    width: 100%;
}
.slider-01 nav>ul>li>a{
    font-family: 'Roboto', sans-serif;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    color: #121212;
}
.indicator{
}


.slider-01 h2{
    font-family: 'Roboto', sans-serif;
    margin: auto 0;
    padding: 0;
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 1.5em;
}
#dolar-price{
    position: relative;
}
#dolar-price::after{
    content: attr(data-label);
    position: absolute;
    font-size: 0.65em;
    padding-left: 1em;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    display: none;
}

#dolar-price small{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.7em;
}
.recomended .owl-dots{
    display: none;
}
.xzoom-source{
    /*
    width: 100%!important;
    */
}
.xzoom-preview{
    /*
    width: 100%!important;
    */
}

.slider-01 i{
    font-size: 20px;
    margin: auto 25px auto 0;
    cursor: pointer;
}

.slider-01 ol{
    width: 100%;
    padding: 0;
    list-style: none;
    display: grid;
    justify-content: flex-start;
    grid-gap: 20px;
    grid-template-columns: repeat(5, 1fr);
}

.slider-01 .item{
    background: #fff;
    width: 255px;
    height: 360px;
    text-align: center;
    position: relative;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(204 204 204 / 15%);
    padding-bottom: 0.1%;
    border-radius: 5px;
    border: 2px solid #eee;
}
.slider-01 .item::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    background: #1469ae;
    bottom: 0;
    left: 0;
    transition: 0.2s;
    margin: 0 auto;
    right: 0;
    border-radius: 5px;
}
.slider-01 .item:hover:after{
    transition: 0.2s;
    width: 100%;
}
.slider-01 .item:hover{
    border: 2px solid #fff;
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.slider-01 .item div{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-01 .item div>ul{
    width: fit-content;
    margin: 5%;
    padding: 0;
    position: absolute;
    display: block;
    border: none;
    right: 0;
    top: 0;
    color: #ffffffd9;
    visibility: hidden;
    transform: translateX(10px);
    opacity: 0;
    transition: 0.3s;
}

.slider-01 .item div:hover ul{
    visibility: visible;
    transform: translateX(0px);
    opacity: 1;
    transition: 0.3s;
    z-index: 10;
}
.slider-01 .item div>ul>li{
        display: flex;
        width: 35px;
        height: 35px;
        background: #222;
        margin: 0 0 5px 0;
        border-radius: 5px;
}
#title-promo {
    line-height: normal;
    height: auto;
    position: absolute;
    top: 2%;
    left: 2%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-transform: capitalize;
    color: #111;
    background: #fff;
    padding: 0;
    letter-spacing: 0.5px;
    z-index: 1;
    border-radius: 100%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    align-items: center;
    justify-content: center;
}
#title-promo img{
    width: 20%!important;
    display: inline!important;
}

/********************************************************************/

.slider-01 .item div>ul>li:hover{
        background: var(--color-gold-p);
        color: #000;
}

.slider-01 .item div>ul>li>i{
        margin: auto;
        font-size: 16px;
}

.slider-01 .item div>img{
        width: 100%;
        margin: 0%;
        padding: 10%;
        cursor: pointer;
        border: 1px solid #21252900;
        height: 260px;
        object-fit: contain;
        border-bottom: 1px solid #eee;
        transition: all ease 0.5s;
}
.slider-01 .item div>img:hover{
    transition: all ease 0.5s;
    transform: scale(1.1) rotate(4deg);
    z-index: 5;
}
.slider-01 .item h3{
        width: 100%;
        margin: 0%;
        padding: 2% 1%;
        display: flex;
}

.slider-01 .item h3>i{
        font-size: 10px;
        margin-right: 5px;
        color: #FF9800;
}

.slider-01 .item h4{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    margin: 0;
    padding: 15px;
    font-size: 18px;
    color: #444;
    text-align: center;
    font-weight: 500;
}

.slider-01 .item p{
        font-weight: bold;
        font-size: 17px;
        letter-spacing: 0.5px;
        color: #1469ae;
        position: absolute;
        bottom: 0.7em;
        margin: 0 auto;
        left: 0;
        right: 0;
}
.slider-01 .item p>ion-icon{
        font-size: 15px;
}
.slider-01 .item button{
    border: none;
    padding: 7px;
    background: #222;
    color: #fff;
    margin: 2% 0;
    border-radius: 4px;
    text-decoration: none;
    outline: none;
}
.slider-01 .item p>small{
    font-weight: bold;
    text-transform: uppercase;
}
/* notepad */

.notepad {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 4px hsla(0, 0%, 0%, .25);
    position: relative;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 30px, rgba(173, 216, 230, 0.31) 30px, rgba(173, 216, 230, 0.31) 32px), linear-gradient(to right, transparent 0, transparent 2rem, rgba(255, 182, 193, 0.48) 2rem, rgba(255, 182, 193, 0.48) 2.2rem, transparent 2.2rem);
    padding: 30px 20px 30px 40px;
    width: 350px;
    transform: rotate(-0.5deg);
    margin: 1.5em 0;
}
.notepad::after{
    content: '';
    position: absolute;
    right: 5%;
    top: 4%;
    width: 40px;
    height: 40px;
    background-image: url('../images/secure.svg');
    background-size: cover;
    z-index: 0;
}
.notepad p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    color: #3c3b3b;
}
.notepad strong{
    color: #222;
}
.goog-te-gadget .goog-te-combo {
    margin: 0 0!important;
    font-weight: normal;
    background: #111;
    color: #fff;
    border: none;
    font-size: 14px!important;
    letter-spacing: 0.5px;
}
.goog-te-banner-frame {
    display: none!important;
}
.goog-logo-link, .goog-logo-link:link, .goog-logo-link:visited, .goog-logo-link:hover, .goog-logo-link:active .goog-te-banner-frame {
        display: none!important;
}
.goog-te-gadget {
    font-family: 'Montserrat', sans-serif!important; 
    font-weight: bold; 
    letter-spacing: 1.5px; 
    cursor: pointer; 
    color: #333; 
    font-size: 0px!important; 
    color: #333!important; 
    white-space: nowrap; 
}
.goog-te-combo, .goog-te-banner , .goog-te-ftab , .goog-te-menu , .goog-te-menu2 , .goog-te-balloon * {
    font-family: 'Montserrat', sans-serif!important;
    font-size: 15px!important;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    color: #333;
    outline: none;
    text-decoration: none;
    width: 100%!important;
}
.active{
    transition: .2s;
    border: 2px solid #777;
    border-radius: .25rem;
}

/******DIVISOR ***/
.containers {
    max-width: 800px;
}
.titles-img-0{
    position: relative;
}

.titles-img-1{
    position: relative;
}

#comparison {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}

#comparison figure {
    position: absolute;
    background-image: url(../images/reja-1.jpg);
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

#divisor_0 {
    background-image: url(../images/reja-0.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}
#divisor_0::before, #divisor_0::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}
#divisor_0::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
#divisor_0::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle_0 {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
#handle_0::before, #handle_0::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
#handle_0::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}
#handle_0::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}
/******************************************/
#divisor_1 {
    background-image: url(../images/cdmx-0.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}
#divisor_1::before, #divisor_1::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}
#divisor_1::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
#divisor_1::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle_1 {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
#handle_1::before, #handle_1::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
#handle_1::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}
#handle_1::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}
/**************************************/
#divisor_2 {
    background-image: url(../images/guerrero-0.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}
#divisor_2::before, #divisor_2::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}
#divisor_2::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
#divisor_2::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle_2 {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
#handle_2::before, #handle_2::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
#handle_2::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}
#handle_2::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}
/**************************************/
#comparison input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 2;
}
#comparison input[type=range]:focus, input[type=range]:active {
    border: none;
    outline: none;
}

#comparison input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid white;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

#comparison input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: transparent;
    position: relative;
    outline: none;
}          
/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 7px 0;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    z-index: 9;
    background: linear-gradient(to left, #fff,#ffffffe6, #fff, #fff);
}
.navbar.sticky{
    position: fixed;
    padding: 0;
    top: 0;
    transition: all 0.3s ease;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0;
}
.logo{
    width: 200px;
    height: 100px;
    object-fit: cover; 
    position: relative;
}
.navbar .logo img{
    width: 200px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    position: relative;
}
.navbar .logo::before{
    content: '';
    position: absolute;
    left: 0;
    background: #fff;
    width: 50%;
    height: 100%;
    z-index: -1;
    /* transform: skew(-50deg, 0deg); */
    transition: all 0.3s ease;
    bottom: -12%;
    transform: skew(0deg, 6deg);
}
.navbar .logo::after{
    content: '';
    position: absolute;
    right: 0;
    background: #fff;
    width: 50%;
    height: 100%;
    z-index: -1;
    /* transform: skew(-50deg, 0deg); */
    transition: all 0.3s ease;
    bottom: -12%;
    transform: skew(0deg, -6deg);
}
.navbar.sticky .logo::before{
    bottom: 0;
    transform: skew(0deg);
    transition: all 0.3s ease;
    transform: skew(0deg, 0deg)!important;
}
.navbar.sticky .logo::after{
    bottom: 0;
    transform: skew(0deg);
    transition: all 0.3s ease;
    transform: skew(0deg, 0deg)!important;
}
.navbar .logo a span{
    color: #ff6500;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu {
    width: 100%;
    text-align: end;
    margin: 0;
    text-decoration: none!important;
    outline: none!important;
    border: none;
}
.active-dropdown  li{
    margin: 0;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
    margin:  0 1%;
}
.navbar .menu li a{
    display: block;
    color: #111;
    font-size: 17px;
    font-weight: normal;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
    outline: none;
}
#boton_shop{
    grid-template-columns: 80% 20%;
    display: inline-grid;
    grid-gap: 7px;
    align-items: center;
    margin: 0 1.5%;
    position: relative;
}
#boton_shop span{

}
#boton_shop ion-icon{
    font-size: 1.1rem;
}

.cancel-i:before{
    font-family: "Font Awesome 5 Brands";
    content: "\f067"!important;
}   

.navbar .menu li>a>button{
    padding: 5% 0;
    color: #fff;
    background: #1469ae;
    font-size: 17px;
    width: 165px;
    border: 1px solid #1469ae;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    grid-gap: 5px;
    align-items: center;
}
.navbar .menu li a:hover{
    color: #000;
}
.navbar.sticky .menu li a:hover{
    color: #000;
}

.pulsingButton {
    text-align: center;
    white-space: nowrap;
    display: block;
    box-shadow: 0 0 0 0 rgb(20 105 174);
    border-radius: 10px;
    background-color: #1469ae;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    color: #ffffff;
    transition: all 300ms ease-in-out;
    margin: 0!important;
    width: 190px;
    letter-spacing: 0.5px;
}

/* Hover animated */
button.pulsingButton:hover {
      -webkit-animation: none;
      -moz-animation: none;
      -ms-animation: none;
      animation: none;
      color: #ffffff;
}

    /* Animation */
@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

/******SCROLL ANIMATED ****/
.scroll-container {
}
.scroll-container:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 650px) {
  .scroll-container,
  .scroll-container:nth-of-type(even) {
    flex-direction: column;
    align-content: inherit;
  }

  .scroll-element {
    height: 100%;
  }

  .scroll-element,
  .scroll-caption {
    width: 100%;
  }
}
/**Styling scrollable elements*/

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******END ANIMATED IN SCROLL ***/


/*** DROPDOWN MENU ****/
        .dropdown-w-one{
            position: relative;
        }

        .dropdown-w-one div{
            position: absolute;
            width: 210px;
            top: 50px;
            padding: 0% 0% 0% 0%;
            margin: 0% 0% 0% 0%;
            background-color: #fff;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease 0s;
            transform: translateY(15px);
            border-radius: 3px 3px 3px 3px;
            box-shadow: 0 0 5px rgba(0,0,0,0.5);
        }
        .dropdown-w-one div:after{
            position: absolute;
            left: 17%;
            margin-left: -8px;
            top: -8px;
            height: 16px;
            width: 16px;
            background-color: #111;
            box-shadow: -2px -2px 2px 0 rgba(0,0,0,0.2);
            content: "\00a0";
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            transition: 150ms ease color,150ms ease background-color;
            z-index: 0;
            border-radius: 100%;
        }

        .dropdown-w-one:hover div{
            opacity: 1;
            visibility: visible;
            padding: 0% 0% 0% 0%;
            transition: all 0.3s ease 0s;
            transform: translateY(0px);
        }

        .dropdown-w-one ul{
            display: block;
            margin: 0% 0% 0% 0%;
            padding: 5% 0%;
            width: 100%;
            background-color: #ffffffe3;
            border-radius: 5px;
            border: none;
        }

        .dropdown-w-one li{
            font-family: 'Roboto Condensed', sans-serif;
            width: 100%;
            padding: 5% 10%;
            margin: 0% 0% 0% 0%;
            color: #111;
            text-align: left;
            border-radius: 0px;
            cursor: pointer;
        }
        .dropdown-w-one .menu-btn i{
            transition: 0.3s;
            transform: rotate(0deg);
            font-size: 0.8em;
        }
        .dropdown-w-one .menu-btn:hover i{
            transition: 0.3s;
            transform: rotate(180deg);
        }

        .active-dropdown li:hover{
            color: #fff;
            background: #111;
        }
        .active-dropdown li{
                position: relative;
                margin: 0!important;
        }
        .active-dropdown li>i{
            position: absolute;
            right: 10%;
            color: #ddd;
            transition: 0.3s;
            transform: rotate(0deg);
        }
        .active-dropdown li:hover i{
            transition: 0.3s;
            transform: rotate(-90deg);
        }

        .active-dropdown{
            text-align: center;
        }

        .active-dropdown p{
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1.5px;
            color: #333;
            width: fit-content;
            background-color: #0000;
            text-align: center;
            margin: auto;
            margin-bottom: 15px;
            padding: 0% 10%;
            border-radius: 5px;
            border: 1.5px solid #cfa54bab;
        }

/**** SECOND DROPDOWN *****/
        .dropdown-w-one-0{
            position: relative!important;
        }

        .dropdown-w-one-0 div{
            position: absolute!important;
            width: 210px!important;
            top: 0!important;
            padding: 0% 0% 0% 0%!important;
            margin: 0% 0% 0% 0%!important;
            background-color: #fff!important;
            opacity: 0!important;
            visibility: hidden!important;
            transition: all 0.3s ease 0s!important;
            transform: translateY(15px)!important;
            border-radius: 3px 3px 3px 3px!important;
            box-shadow: 0 0 5px rgba(0,0,0,0.5)!important;
            right: -100%;
        }

        .dropdown-w-one-0 div:after{
            position: absolute!important;
            left: 17%!important;
            margin-left: -8px!important;
            top: -8px!important;
            height: 16px!important;
            width: 16px!important;
            background-color: #111!important;
            box-shadow: -2px -2px 2px 0 rgba(0,0,0,0.2)!important;
            content: " "!important;
            -webkit-transform: rotate(45deg)!important;
            -ms-transform: rotate(45deg)!important;
            transform: rotate(45deg)!important;
            transition: 150ms ease color,150ms ease background-color!important;
            z-index: 0!important;
            border-radius: 100%!important;
            display: none;
        }

        .dropdown-w-one-0:hover div{
            opacity: 1!important;
            visibility: visible!important;
            padding: 0% 0% 0% 0%!important;
            transition: all 0.3s ease 0s!important;
            transform: translateY(0px)!important;
        }

        .dropdown-w-one-0 ul{
            display: block!important;
            margin: 0% 0% 0% 0%!important;
            padding: 5% 0%!important;
            width: 100%!important;
            background-color: #ffffffe3!important;
            border-radius: 5px!important;
            border: none!important;
        }

        .dropdown-w-one-0 li{
            font-family: 'Roboto Condensed', sans-serif!important;
            width: 100%!important;
            padding: 5% 10%!important;
            margin: 0% 0% 0% 0%!important;
            color: #111!important;
            text-align: left!important;
            border-radius: 0px!important;
            cursor: pointer!important;
        }
        .dropdown-w-one-0 .menu-btn i{
            transition: 0.3s!important;
            transform: rotate(0deg)!important;
            font-size: 0.8em!important;
        }
        .dropdown-w-one-0 .menu-btn:hover i{
            transition: 0.3s!important;
            transform: rotate(180deg)!important;
        }

        .active-dropdown-0 li:hover{
            color: #fff!important;
            background: #111!important;
        }
        .active-dropdown-0 li{
                position: relative!important;
        }
        .active-dropdown-0 li>i{
            position: absolute!important;
            right: 10%!important;
            color: #ddd!important;
            transition: 0.3s!important;
            transform: rotate(0deg)!important;
        }
        .active-dropdown-0 li:hover i{
            transition: 0.3s!important;
            transform: rotate(-90deg)!important;
        }

        .active-dropdown-0{
            text-align: center!important;
        }

        .active-dropdown-0 p{
            font-family: 'Roboto Condensed', sans-serif!important;
            font-size: 18px!important;
            font-weight: bold!important;
            letter-spacing: 1.5px!important;
            color: #333!important;
            width: fit-content!important;
            background-color: #0000!important;
            text-align: center!important;
            margin: auto!important;
            margin-bottom: 15px!important;
            padding: 0% 10%!important;
            border-radius: 5px!important;
            border: 1.5px solid #cfa54bab!important;
        }
/****WHATS ***/
.button-whatsapp{
        margin: 0;
        padding: 0;
        border:none;
        outline: none!important;
        position: fixed;
        z-index: 5;
        bottom: 50px;
        left: 20px;
        border-radius: 50px;
        display: flex;
        justify-content: flex-start;
        background-color: #0000;
        cursor: pointer;
    }

    .button-whatsapp p{
        width: 60px;
        height: 60px;
        margin: 0px;
        padding: 0px;
        display: flex;
        background-color: #28a745;
        border-radius: 50px;
    }

    .button-whatsapp p>i{
        margin: auto;
        font-size: 30px;
        color: #fff;
    }

    .button-whatsapp h2{
        background-color: #28a745;
        color: #fff;
        font-size: 19px;
        width: 0px;
        height: 40px;
        border-radius: 15px;
        margin: 10px 0px 10px 10px;
        padding: 5px 0px;
        visibility: hidden;
        opacity: 0;
        transition: 0.2s;
        transform: translateX(-30px);
        display: flex;
        font-weight: normal;
        align-items: center;
        align-self: center;
        align-content: center;
        justify-content: center;
        letter-spacing: 1px;
    }

    .button-whatsapp-ative h2{
        background-color: #28a745;
        color: #fff;
        font-size: 19px;
        width: 180px;
        height: 40px;
        border-radius: 50px;
        margin: 10px 0px 10px 10px;
        padding: 5px 0px;
        visibility: visible;
        opacity:1;
        transition: 0.2s;
        transform: translateX(0px);
        display: flex;
        font-weight: normal;
        align-items: center;
        align-self: center;
        align-content: center;
        justify-content: center;
        letter-spacing: 1px;
    }

    .slide-1{
        background-image: url(../images/slide/1-1.jpg);
    }
    .slide-2{
        background-image: url(../images/slide/4-1.jpg);
    }
    .slide-3{
        background-image: url(../images/slide/3-1.jpg);
    }
    .slide-4{
        background-image: url(../images/slide/2-1.jpg);
    }
    .slide-5{
        background-image: url(../images/slide/1-1.jpg);
    }
    .banner-m{
        background-image: url(../images/slide/medium-0.jpg);
    }

/***sections ***/

.other-sections{
    height: 45vh!important;
    min-height: 300px!important;
    background-position: top!important;
}
.other-sections h2 {
    font-size: 45px!important;
}
.other-sections h3 {
    font-weight: normal;
    margin-top: 5%;
    font-size: 1.5em;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Roboto';
}
.other-sections h3>small{
    cursor: pointer;
}
.other-sections h3>small:hover{

}
.other-sections h3>i{
    font-size: 15px;
    color: #ff6500;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #ff6500;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}

.profile{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    margin: 0 5%;
    position: relative;
}

.profile img{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    object-fit: cover;
}
.profile::after{
    content: "";
    width: 50px;
    height: 50px;
    background: #ff6500;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}
.fondo-0{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    /* background: #000000; */
    background: -webkit-linear-gradient(to bottom, #434343, #000000);
    /* background: linear-gradient(to left, #ffffff00,#ffffff00,  #ffffff); */
}
/* home section styling */
.home{
    display: flex;
    height: 100%;
    background-size: cover!important;
    background-position: top;
    color: #fff;
    min-height: 600px;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
    padding: 0;
    background-position: bottom;
}
.home::after{

}
.home:hover:after{
}
.medium{
    height: 100%!important;
    padding: 25px 0!important;
    min-height: 460px;
    background-position: top;
    background-attachment: fixed;
}
.medium .home-content .text-2{
    font-size: 60px!important;
        padding-right: 10%;
}
.medium .home-content .text-2 strong{
    color: #ff6500;
}
.medium .home-content a{
    color: #ff781f!important;
    border: 2px solid #ff6500!important;
}
.medium .home-content a:hover{
    background: #ff6500;
    color: #fff!important;
    border: 2px solid #ff6500;
    transition: all 0.3s ease;
}
.content-info{
    height: 100%;
    background: #000000d1;
    position: absolute!important;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 35%!important;
    padding: 2%!important;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.content-info a{

}
.content-info h3{
    padding: 0 10%;
    font-size: 1.7em;
    text-transform: uppercase;
}
.content-info p{
    font-size: 15px;
    position: relative;
    cursor: pointer;
}
.content-info p>ion-icon{
    color: #f0c900;
}

#contant-industry{
    background: #000;
    border-color: #fff!important;
    color: #fff!important;
}

.home-content{
    position: relative;
    font-family: 'Oswald', sans-serif;
    padding: 60px 0;
    padding-top: 0;
    line-height: normal;
    width: 50%; 
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 20px;
    color: #777;
}
.home .home-content .text-2{
    font-size: 35px;
    font-weight: bolder;
    margin-left: -3px;
    color: #111;
    letter-spacing: 0px;
    line-height: 1.3;
    margin: 10px 0;
    text-transform: uppercase;
}
.home .home-content .text-2 strong{
}
.home .home-content .text-3{
    font-size: 22px;
    margin: 5px 0;
    color: #777;
}
.home .home-content .text-3 span{
    color: #ff6500;
    font-weight: 500;
}
.home .home-content a{
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    padding: 10px 40px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 10px;
    color: #111;
    border: 2px solid #1469ae;
    background: #1469ae;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    background: none;
    color:#1469ae!important;
    border: 2px solid#1469ae;
    transition: all 0.3s ease;
}
/*** BUTTON TO WHATS ***/
.active-c{
    bottom: 10%!important;
    transition: all 0.3s ease!important;
    display: block!important;
    opacity: 1!important;
    transform: translateY(15px)!important;
}
.button-to-whats{
    position: fixed;
    bottom: 5%;
    z-index: 100;
    right: 5%;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.button-to-whats button{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: none;
    background: #0000;
    cursor: pointer;
}
.button-to-whats button>i{
    color: #fff;
    font-size: 2em;
}
.contact-to{
    position: fixed;
    width: 350px;
    height: 240px;
    right: 6%;
    background: #fff;
    bottom: 0;
    z-index: 99;
    border-radius: 10px;
    padding: 1%;
    overflow-y: hidden;
    transition: all 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(0px);
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 50%);
}
.contact-to ul{
    width: 100%;
    list-style: none;
    /* padding: 5%; */
    /* height: 100%; */
    display: grid;
    grid-template-columns: 28% 68%;
    border-left: 5px solid #25d366;
    background: #fff;
    grid-gap: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    margin: 5% 0;
}
.contact-to ul>li{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contact-to ul>li>img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    padding: 10%;
}
.contact-to ul>li>h2{
    font-weight: normal;
    font-size: 1em;
}
.positions{
    position: relative;
}
.floating__0{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.floating__0 img{
    animation: float 6s ease-in-out infinite;
}

.rotates{
    right: auto;
    left: 0;
    top: 1%;
    animation: float 6s ease-in-out infinite;
}

.rotates img{

    transform: rotate(-10deg);
}
/*** BOTONS TO CAROUSEL ******/
    .desc {

   }

   .hero-img{
        position: relative;
        width: 100%;
        height: 100vh;   
    }

   .hero-img img{
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
   }


   .hero-img:before {
       background: rgba(0, 0, 0, 0.38);
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
   }

   .btn-gradient-bg {
       color: #fff;
       display: inline-block;
       padding: 11px 33px;
       background: linear-gradient(to right, #f05874 0%, #fc6a2a 100%);
       border-radius: 30px;
   }
   .delay-1 {
        animation-delay: .2s;
   }
   .delay-2 {
        animation-delay: .4s;
   }    
   .delay-3 {
        animation-delay: .6s;
   }    
   .delay-4 {
        animation-delay: .8s;
   }

   .slider-counter {
        z-index: 99;
        bottom: 5%;
        position: absolute;
        text-align: center;
        right: 5%;
        color: #eeeeee54;
        font-weight: normal;
        font-size: 1.1em;
        display: none;
   }
   @media (max-width: 767px){
       .slider-counter {
        font-weight: 600;
        bottom: 0;

       }
   }
   @media (max-width: 576px){
       .slider-counter {
        font-weight: 500;
        bottom: 0;

       }
   }

   .hero_carosel .owl-nav button.owl-prev,.hero_carosel .owl-nav button.owl-next{
      position: absolute;
      bottom: 50%;
      color: #000;
   }

   .hero_carosel .owl-nav button.owl-prev{
      left: 5%;
      width: 50px;
      height: 50px;
      border: 2px solid #fff!important;
      border-radius: 100%;
   }

   .hero_carosel .owl-nav button.owl-next{
      right: 5%;
      width: 50px;
      height: 50px;
      border: 2px solid #fff!important;
      border-radius: 100%;
   }

  .hero_carosel i.owl-direction {
       margin: 0 13px;
       font-size: 1.5em;
       padding: 0;
       color: #fff;
       transition: 0.3s;
   }

    .hero_carosel i.owl-direction:hover{
        color: #fff;
        transition: 0.3s;
    }

   .hero_carosel .owl-nav button.owl-next,.hero_carosel .owl-nav button.owl-prev{
       outline: 0;
       background: none;
       display: none;
       transition: 0.3s;
    }/********HOVER SEGUNDA CLASE **/
    .hero_carosel:hover .owl-nav button.owl-next{
        display: block;
        transition: 0.3s;
    }
    .hero_carosel:hover .owl-nav button.owl-prev{
        display: block;
        transition: 0.3s;        
    }


    .tag{
    }
    .aplicaciones .owl-nav button>span{
        top: -1px!important;
    }
    .aplicaciones .owl-dots{
        bottom: -10%!important;
    }

    @keyframes fadeInUp{
        0%{
            opacity:0;
            transform:translate3d(0,100%,0)
        }to
        {
            opacity:1;
            transform:translateZ(0)
        }
    }
    .fadeInUp{
        animation-name:fadeInUp
    }
/* about section styling */
.about .title::after{
    content: "";
}
.about .about-content ul{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    width: 100%;
}
.about .about-content ul>li{
    list-style: none;
    background: #fff;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    position: relative;
    text-align: center;
}
.about .about-content ul>li>h2{
    color: #fff;
    background: #ff6500;
    font-size: 1.2em;
    position: relative;
    top: -1.5em;
    margin: 0;
    padding: 0 5%;
    font-weight: normal;
}
.about .about-content ul>li>p{
    padding: 0 5%;
    text-align: left;
    font-size: 1em;
}
.about .about-content ul>li>button {
    padding: 2% 10%;
    color: #ff6500;
    background: none;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    margin: 4% 0;
    border: 2px solid #ff6500;
    font-weight: bold;
}
.about .about-content ul>li>img{
    width: 100%;
    border-radius: .25rem;
}
.about .about-content ul>li>img:hover{
    transform: scale(1.0);
}
.about .about-content .left{
    width: 45%;
    position: relative;
    z-index: 2;
    text-align: center;
}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    position: relative;
    /*
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 50%);
    
    filter: drop-shadow(2px 4px 4px #585858);*/
    margin: 0 auto;
}
.about .card{
    background: #fff;
}
.about .card h3{
    font-size: 25px;
}
.about .card h4{
    font-size: 18px;
    color: #999;
}
.about .card p{
    font-size: 16px;
    margin: 2% 0;
    margin-bottom: 0;
}
.about .card img{
    transition: 0.2s;
    border: 5px solid #eee;
    filter: grayscale(100%);
}
.about .card:hover{
    transform: translateY(-10px);
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.about .card:hover img{
    transition: 0.2s;
    border: 5px solid #1469ae;
    filter: grayscale(0%);
}
.about .card button{
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 5px 30px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #1469ae;
    background: #1469ae;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
}
.about .owl-nav button>span{
    top: -3px;
}
#sub__img{
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 280px;
    height: 300px;
    z-index: 1;
    padding: 3.5%;
    background: #ffffffcf;
    border-radius: 20px;
}
.about .about-content .left::after{
    content: '';
    position: absolute;
    left: 2.5%;
    bottom: -4%;
    width: 350px;
    height: 350px;
    background: #111;
    z-index: -1;
    border-radius: 5px;
}
#left-none::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 350px;
    height: 350px;
    /* background: #00225a; */
    z-index: -1;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
#left-none::before{
}
.corte_sec{
    width: 100%;
    position: absolute;
    bottom: -15%;
}
.corte_sec svg{
    background: none;
    margin-bottom: -10px;
    z-index: 2;
    padding: 0;
    width: 100%;
    height: 100%;
}
.corte_sec path {
    fill: #fff;
}
.botons_emp{
    width: 35%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 2em;
}
.botons_emp ul{
    display: grid;
    list-style: none;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    width: 100%;
    text-align: center;
}
.botons_emp ul>li{
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    padding: 5%;
    cursor: pointer;
    text-shadow: 0 0 black;
    font-size: 18px;  
}
.ena{
    background: #fbb419;
    border: 2px solid #fbb419!important;
}
.about .about-content .right{
    width: 55%;
}
.about .about-content .right ol{
    text-decoration: none;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin: 5% 0;
    grid-gap: 10px;
}
.about .about-content .right ol>li>img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 2%;
    padding: 15%;
}
.about .about-content .right ol>li{
    font-size: 14px;
    background: #fff;
    border: 2px solid #eee;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    border-radius: 5px;
    padding: 10%;
    transition: 0.3s;
}
.about .about-content .right ol>li:hover{
    border: 2px solid #1469ae;
    transition: 0.3s;
}
.about .about-content .right ol>li>i{
    margin-right: 10px;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #111;
}
.about .about-content .right p{
    text-align: left!important;
}
.about .about-content .right a{
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #111;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
.about .about-content .right a:hover{
    color: #111;
    background: none;
}
.about .about-content .right a>i{
    font-size: 15px;
    margin-left: 10px;
}
/*****DESCRIPTION PRODUCTS*****/
.xzoom-container img{
        width: 100%!important;
        padding: 10%;
}

.xzoom-thumbs a{
    text-decoration: none;
}
.xzoom-thumbs img{
    display: inline-block;
    height: 100px;
    width: 100px;
}

.xzoom-preview{
    border: 1px solid #eee;
}

.oculto{
    display: none;
}
.xzoom-thumbs img:hover {
    transition: .4s;
    border: 2px solid #ddd;
    border-radius: .25rem;
}
.partners{
    position: relative;
    margin: 0;
    background: #fff;
    padding: 0;
    width: 100%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(204 204 204 / 15%);
}
.products-desc{
    background: #f5f5f6cc;
}
.partners img{
    padding: 10% 15%;
    cursor: pointer;
    /* filter: grayscale(1.2); */
    object-fit: contain;
    width: 150px!important;
    height: 150px!important;
}
.owl-nav{
    width: 100%;
    text-align: end;
    padding: 0;
    font-size: 2em;
    position: absolute;
    top: -15%;
    display: flex;
    justify-content: end;
    align-items: center;
    align-content: center;
    align-self: center;
}
.owl-nav button{
    margin: 0 0.5%;
    width: 30px;
    height: 30px;
    border: 2px solid #1469ae!important;
    align-items: center;
    align-content: center;
    align-self: center;
    display: flex;
    justify-content: center;
    border-radius: 0;
    background: #1469ae!important;
    text-decoration: none!important;
    outline: none!important;
    transition: 0.3s;
}
.owl-nav button:hover{
    background: none!important;
    color: #222!important;
    border: 2px solid #222!important;
    transition: 0.3s;
}
.owl-nav button>span{
    height: auto;
    top: -5px;
    position: relative;
    color: #fff;
}
.owl-nav button:hover span{
    color: #222!important;
    transition: 0.3s;
}
.container-products-detail{
    width: 100%;
    margin-top: 0%;
    margin-bottom: 3%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    font-family: 'Roboto', sans-serif;
}
        .container-products-detail ol{
            width: 100%;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #fff;
            margin-bottom: 0;
            padding: 1% 2% 0;
        }
        .container-products-detail ol>li{
            list-style: none;
            font-size: 1em;
            color: #9a9a9c;
            cursor: pointer;
        }
        .container-products-detail ol>li:hover{
            color: #333;
        }
        .container-products-detail ol>li>i{
            color: #222;
        }
        .container-products-detail ul{
            width: 100%;
            margin: 0%;
            padding: 1% 1%;
            list-style: none;
            display: grid;
            background: #fff;
            border-radius: .25rem;
            grid-template-columns: 50% 49%;
            grid-gap: 10px;
        }
        .container-products-detail ul>li{
            padding: 1%;
        }
        .not-found{
            position: relative;
            width: 100%;
            padding: 15% 15%;
            background: #fff;
            border-radius: .25rem;
            position: relative;
            top: 1.4em;
            text-align: center;
            background-image: url(../images/material/fond.jpg);
            background-size: cover;
            z-index: 1;
            box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 10%);
        }
        .not-found img{
            width: 15%;
            margin: 2em 0;
        }
        .not-found p{
            font-family: 'Roboto', sans-serif;
            text-align: center;
            font-size: 18px;
            color: #555;
            letter-spacing: 0.5px;
        }
        .not-found p>b>i{
            margin: 0 1%;
            color: #90b80c;
        }
        .opacity{
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            z-index: -1;
        }
        .owl-carousel .owl-item {
            border: none!important;
        }
        .owl-item .cloned {
            border: none!important;
        }
            /* box-detail-product-img */

                .box-detail-product-img{
                    width: 100%;
                    padding: 1%;
                }

                /** zoom ***/

                    .box-images{
                        position: relative;
                        width: 100%;
                        cursor: none!important;
                        text-align: center;
                    }

                    .box-images img{
                        border: 0px solid #00000045;
                        border-radius: 5px;
                    }

                    .content-zoom{
                        padding: 4%;                                
                    }       

                    .content-zoom h2 {
                        font-family: 'Jost', sans-serif;
                        width: 100%;
                        margin: 0% 0% 3% 0%;
                        padding: 0% 0% 2% 0%;
                        font-size: 25px;
                        font-weight: bold;
                        color: #000;
                        letter-spacing: 0.5px;
                        border-bottom: 3px solid #000000;
                    }

                    .img-magnifier-glass {
                        position: absolute;
                        border: 1px solid #000000b0;
                        border-radius: 50%;
                        cursor: none!important;
                        width: 190px;
                        height: 190px;
                    }

                /* gallery */

                .img-auto{
                    opacity: 0;
                    z-index: -2
                }

                .gallery-zoom{
                    position: relative;
                    cursor: pointer;
                    border: 0px solid #9091936b;
                }

                .gallery-zoom span {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background-color: #0000;
                    display: flex;
                    visibility: hidden;
                    transition: 0.3s;
                }

                .gallery-zoom i{
                    margin: auto;
                    visibility: hidden;
                    font-size: 30px;
                    color: #fff;
                }

                .gallery-zoom:hover span{
                    background-color: #1111114f;
                    z-index: 5;
                    visibility: visible;
                    transition: 0.3s;
                }

                .gallery-zoom:hover i{
                    margin: auto;
                    visibility: visible;
                }

                .gallery-zoom img{
                    width: 100%;
                }

                .gallery-imgs{
                    position: relative;
                    width: 100%;
                    margin: 0%;
                    padding: 0%;
                }

                .gallery-imgs ol{
                    width: 100%;
                    margin: 0%;
                    padding: 2%;
                    list-style: none;
                    display: flex;
                    grid-gap: 30px;
                }

                .gallery-imgs ol>li{
                    width: 100px;
                    height: 100px;
                    cursor: pointer;
                    transition: 0.3s;
                }

                .gallery-imgs ol>li>img{
                    width: 100%;
                    margin: 0%;
                    padding: 0%;
                }

                .gallery-imgs ol>li:hover{
                    opacity: 0.5;
                    transition: 0.3s;
                }

            /* box-detail-product-desc */

                .box-detail-product-desc{
                    width: 100%;
                    padding: 1%;
                }

                .box-detail-product-desc div{
                    background-color: #fff;
                    padding: 1%;
                    margin: 0%;
                    padding-top: 5%;
                }

                .box-detail-product-desc div>h2{
                    font-family: 'Jost', sans-serif;
                    margin: 3% 0% 2% 0%;
                    padding: 0% 10% 0% 3%;
                    font-size: 26px;
                    font-weight: bold;
                    color: #222;
                }

                .box-detail-product-desc div>h3{
                    font-family: 'Jost', sans-serif;
                    margin: 5% 0% 5% 0%;
                    padding: 0% 0% 0% 3%;
                    font-size: 28px;
                    font-weight: bold;
                    color: #1469ae;
                }

                .calification{
                    width: 100%;
                    margin: 3% 0% 2% 0%!important;
                    padding: 0% 0% 0% 3%!important;
                    color: #0000003b;
                }

                #sku{
                    color: #777;
                    font-size: 17px;
                    letter-spacing: 0.5px;
                    position: relative;
                }

                #sku b{
                    color: #fff;
                    background: #1469ae;
                    font-weight: normal;
                    padding: 0.9% 2%;
                    border-radius: 10px;
                    font-size: 12px;
                    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
                    position: relative;
                }

                #sku b::before{
                        position: absolute;
                        width: 200px;
                        height: 30px;
                        content: attr(data-label);
                        /* right: 0; */
                        color: #555;
                        left: 130px;
                        margin: 0 auto;
                        font-size: 12px;
                        top: -10px;
                }



                .box-detail-product-desc div>p{
                    width: 100%;
                    margin: 3% 0% 2% 0%;
                    padding: 0% 7% 0% 3%;
                    font-size: 17px;
                    color: #444;
                    position: relative;
                }
                .box-detail-product-desc div>p>br{
                    position: relative;
                }

                .box-detail-product-desc div>p>br::before{
                    position: absolute;
                    content: '';
                    left: 0;
                }

                .items-stock{
                    width: 100%;
                    margin: 3% 0% 2% 0%!important;
                    padding: 2% 5% 2% 10%!important;
                    color: #ffffff;
                    position: relative;
                    border-radius: 5px;
                    font-size: 16px;
                    background-color: #000000!important;
                }

                .items-stock i{ 
                    position: absolute;
                    left: 33px;
                    top: 18px;
                    font-size: 18px;
                }   

                .datasheet{                 
                    margin: 3% 0% 4% 3%!important;
                    padding: 1% 3% 1% 3%!important;
                    color: #222222;
                    cursor: pointer;
                    font-size: 17px;
                    background: #fff!important;
                    width: fit-content;
                    border-radius: 5px;
                    border: 1.5px solid #222222;
                }

                .datasheet:hover{
                }


                .box-detail-product-desc div>form>ul{
                    width: 100%;
                    margin: 3% 0% 2% 0%!important;
                    padding: 0% 0% 0% 3%!important;
                    display: flex;
                    justify-content: flex-start;
                }

                .box-detail-product-desc div>form{
                    width: 100%;
                    margin: 3% 0% 2% 0%;
                    padding: 0% 0% 0% 3%;
                    display: flex;
                    justify-content: flex-start;
                }

                .box-detail-product-desc div>form>input{
                    margin: auto 10px;
                    width: 40px;
                    height: 40px;
                    text-align: center;
                    border-radius: 5px;
                    border: 1px solid #888;
                    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
                }

                .box-detail-product-desc div>form>button{
                    font-family: 'Jost', sans-serif;
                    margin: auto 10px;
                    height: 40px;
                    padding: 0% 40px;
                    display: flex;
                    border: none;
                    outline: none;
                    font-size: 18px;
                    letter-spacing: 1px;
                    background-color: #222;
                    color: #fff;
                    border-radius: 5px;
                }

                .box-detail-product-desc div>form>button:hover{
                }

                .box-detail-product-desc div>form>button>span{
                    margin: auto;
                }

                .btn-plus, .btn-minus{
                    margin: auto 0%;
                    width: 40px;
                    height: 40px;
                    background-color: #fff;
                    display: flex;
                    cursor: pointer;
                    color: #000;
                    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
                    border: 1px solid #ddd;
                    position: relative;
                }

                .btn-plus>i, .btn-minus>i{
                    margin: auto;
                }

                .btn-plus:hover, .btn-minus:hover{
                }

                .btn-plus-resp, .btn-minus-resp{
                    margin: auto 0%;
                    width: 40px;
                    height: 40px;
                    background-color: #fff;
                    display: flex;
                    cursor: pointer;
                    color: #000;
                    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
                    border: 1px solid #eee;
                    position: relative;
                }

                .btn-plus-resp>i, .btn-minus-resp>i{
                    margin: auto;
                }

                .btn-plus-resp:hover, .btn-minus-resp:hover{
                }


                .coments{
                    width: 100%;
                    margin: 3% 0% 2% 0%!important;
                    padding: 0% 3% 0% 3%!important;
                }

                .coments h4{
                    font-family: 'Jost', sans-serif;
                    margin: 3% 0% 0% 0%;
                    padding: 0% 0% 0% 0%;
                    font-size: 22px;
                    font-weight: bold;
                }

                .coments p{
                    position: relative;
                    font-family: 'Jost', sans-serif;
                    margin: 0% 0% 0% 0%!important;
                    padding: 0% 5% 0% 5%!important;
                    font-size: 16px!important;
                    color: #333!important;
                }
                .coments p::before{
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    content: "\f105";
                    position: absolute;
                    left: 0.7em;
                    color: #999;
                }


        /** container-shoppingcart **/

            .container-shoppingcart{
                width: 100%;
                margin-top: 4%;
                margin-bottom: 5%;
                font-family: 'Roboto', sans-serif;
            }

            .container-shoppingcart h2 {
                font-family: 'Roboto', sans-serif;
                width: 100%;
                margin: 0% 0% 2% 0%;
                padding: 1.5% 1% 1.5% 1%;
                font-size: 24px;
                font-weight: bold;
                border-left: 4px solid #111;
                background: #fff;
                color: #333;
                box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
            }

            /** shopping car **/

                .table-shoppingcart{
                    width: 100%;
                    margin: 0%;
                    padding: 0%;
                }

                .table-shoppingcart table{
                    width: 100%;
                    margin: 1% 0;
                    padding: 0%;
                    background: #fff;
                }

                .table-shoppingcart form{
                    width: 100%;
                    padding: 5px;
                    margin-bottom: 11%;
                }

                .table-shoppingcart tr{
                    width: 100%;
                    padding: 0%;
                    display: flex;
                    justify-content: space-between;
                    text-align: left;

                }

                .table-shoppingcart td{
                    position: relative;
                    width: 16%;
                    text-align: center;
                    display: flex;
                    justify-content: center;
                }

                .table-shoppingcart td>img{
                    width: 80%;
                    padding: 2%;
                }

                .table-shoppingcart td>p{
                    width: 100%;
                    padding: 2% 5%;
                    margin: auto 0%;
                    font-size: 15px;
                    letter-spacing: 0.5px;
                }
                .table-shoppingcart td>p>b{
                    background: #08f;
                    font-weight: normal;
                    color: #fff;
                    font-size: 9px;
                    padding: 2% 5%;
                    border-radius: 20px;
                }
                .table-shoppingcart td>p>b::after{
                    content: attr(data-label);
                    position: absolute;
                    bottom: 15%;
                    left: 0;
                    right: 0;
                    color: #111;
                    font-size: 10px;
                }
                .table-shoppingcart td>input{
                    width: fit-content;
                    padding: 2% 5%;
                    margin: auto 0%;
                    font-size: 15px;
                    letter-spacing: 0.5px;
                    text-align: center;
                    outline: none;
                }

                .table-shoppingcart-mobile{
                    width: 100%;
                    background-color: #fff;
                }

                .table-shoppingcart-mobile div{
                    width: 100%;
                    border-bottom: 1px solid #0003;
                    display: flex;
                    justify-content: flex-start;
                    flex-wrap: wrap;
                }

                .table-shoppingcart-mobile div>img{
                    width: 35%;
                    padding: 2%;
                    height: 100%;
                }

                .table-shoppingcart-mobile div>ul{
                    width: 65%;
                    padding: 2%;
                    margin: 0%;
                    list-style: none;
                }

                .table-shoppingcart-mobile div>ul>li{
                    font-family: var(--font-primary);
                    font-size: 18px;
                }

                .table-shoppingcart-mobile div>ul>li>button{
                    width: 50%;
                    margin: 5% 0% 0% 44%;
                    padding: 0px;
                    border: none;
                    outline: none!important;
                    font-size: 17px;
                    background-color: #F44336;
                    border-radius: 5px;
                    color: #fff;
                    letter-spacing: 0.5px;
                }

                .btn-cart-remove{
                    margin: 0px;
                    padding: 0%;
                    border: none;
                    outline: none!important;
                    font-size: 20px;
                    background-color: #0000;
                }

                .btn-cart{
                    width: 100%;
                    margin: 10px 10px 10px 0;
                    padding: 4% 0;
                    border: none;
                    background-color: #222;
                    color: #fff;
                    font-size: 17px;
                    border-radius: 5px;
                }

                .tr-cart-01{
                    font-weight: bold;
                    margin: 0px 0px 10px 0px;
                    border-bottom: 3px solid #000000;
                }

                .tr-cart-02{
                    margin: 0px 0px;
                    border-bottom: 1px solid #0000002b;
                }

                .tr-cart-03{
                    margin: 0px 0px 0px 0px;
                    border-top: 1px solid #ffc107;
                }

                .table-total{
                    width: 30%!important;
                    float: right;
                }

                .table-total td{
                    width: 50%!important;
                    text-align: left;
                }
/******* PRODUCTS - DETAIL **** **/

.product-detail{
    font-family: 'Roboto', sans-serif;
    margin: 0 0 2em;
    padding: 0;
    display: grid;
    grid-template-columns: 70% 30%;
    grid-gap: 0px;
    background: #fff;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 5%);
    border-radius: .25rem;
}
.product-detail .products-left{

}
.product-detail .products-left ul{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
    border-bottom: 1px solid #eee;
    position: relative;
    margin: 0em 0;
}
.product-detail .products-left ul>li{
    list-style: none;
    width: 17.5%;
    padding: 1.5% 2%;
    font-size: 18px;
    position: relative;
    text-align: center;
    transition: .4s;
    cursor: pointer;
    color: #999;
}
.product-detail .products-left h2{
    padding: 0 4%;
    margin: 2em 0 0;
    font-size: 1.4em;
    color: #555;
}
.product-detail .products-left p{
    padding: 2% 4%;
    color: #444;
}
.product-detail .products-left table{
    padding: 0 4%;
}
.product-detail .products-left ul>li:hover{
    transition: .4s;
    background: #eee;
}
.enable-desc{
    transition: .4s;
    color: #222!important;
}
.enable-desc::before{
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #1469ae;
    left: 0;
    transition: .4s;
}
.products-right{
    border-left: 1px solid #eee;
}

.products-right h3{
    font-family: 'Roboto', sans-serif;
    margin: 0.7em 1em;
    font-size: 21px;
    color: #222;
}
.products-right ul{
    display: grid;
    grid-template-columns: 25% 70%;
    grid-gap: 10px;
    padding: 0 5%;
    position: sticky;
    top: 2%;
}
.products-right ul>li{
    list-style: none;
    margin: auto 0;
    transition: .4s;
}
.products-right ul>li:hover{
    transition: .4s;
}
.products-right ul>li>img{
    width: 100%;
    padding: 20%;
}
.products-table{
    padding: 0 4%;
    margin-top: 2em;
}

.products-right ul>li>h5{
    font-family: 'Roboto', sans-serif;
    color: #222;
}
.products-right ul>li>p{

}
.products-right ul>li>p>b{
    color: #016db6;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.follow{
    position: sticky;
    top: 5%;
}

/****END****/
/*** GALLERY REST ******/
.gallery-rest{
    width: 100%;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gallery-rest div{
    width: 100%;
    margin: 0%;
    padding: 0%;
    /* position: relative; */
    cursor: pointer;
}

.gallery-rest div>img{
    width: 100%;
    cursor: pointer;
}

.gallery-rest div>span{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    background-color: #0000005e;
    transition: 0.3s;
    color: #ffffff94;
}

.gallery-rest div>span>p{
    font-family: 'Raleway', sans-serif;
    margin: auto;
    padding: 0% 10%;
    font-size: 30px;
    text-align: center;
    letter-spacing:0.5px;
    color: #fff;
}

.gallery-rest div>span:hover {
    background-color: #0000;
    transition: 0.3s;
    color: #fff;
}
.opacity{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.94;
    left: 0;
    background-position: bottom;
    background-size: cover;
}
.add_contact .title{
    position: relative;
}   
.add_contact .title i{
    position: absolute;
    top: 15%;
    left: 0;
    cursor: pointer;
}
.corte{
    width: 100%;
}
.corte svg{
    background: #035392;
    margin-bottom: -10px;
    z-index: 2;
    padding: 0;
    width: 100%;
    height: 100%;
}
.corte path{
    fill: #fff;
}
/* services section styling */
.services, .teams{
    color: #111;
    position: relative;

}
.teams__ajust{
    background: #035392;
     padding-bottom: 10em;
}
.services .title::before,
.teams .title::before{
    /*background: none;*/
}
.services .title::after,
.teams .title::after{
    background: #111;
    content: "";
}
.menu-options{
    width: 100%;
    display: flex;

}
.menu-options .side-left{
    width: 40%;
}
.menu-options .side-left ul{
    display: grid;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    height: auto;
}
.menu-options .side-left ul>li{
    background: #fff;
    margin: 2% 0;
    display: flex;
    align-items: center;
    padding: 0 9%;
    color: #999;
    cursor: pointer;
    position: relative;
    border-left: 5px solid #fff;
    transition: 0.3s;
}
.menu-options .side-left ul>li:hover{
    transition: 0.3s;
    border-left: 5px solid #f0c900;
}

.menu-options .side-left ul>li::after{
    content: '';
    width: 30px;
    height: 30px;
    background: #fff;
    right: 3%;
    position: absolute;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: 0.3s;
}
.enable-options{
    color: #222!important;
    position: relative;
    border-left: 7px solid #f0c900!important;
    transition: 0.3s;
}
.enable-options::after{
    right: -3%!important;
    transition: 0.3s;
}
.menu-opc{
    display: none;
}
.enable-s{
    width: 100%!important;
    border-radius: 0!important;
    top: 0!important;
    height: 100%!important;
    margin: auto!important;
    bottom: 0!important;
}

.menu-options .side-left ul>li:hover:after{
    transition: 0.3s;
    right: -3%;
}
.menu-options .side-left ul>li>h3{
    /* text-transform: uppercase; */
    font-size: 1.3em;
    letter-spacing: -1px;
    margin: 6% 0;
}
.menu-options .side-right{
    width: 60%;
    position: relative;
}
.menu-options .side-right .elements img{
    width: 100%;
    height: 490px;
    object-fit: cover;
    object-position: bottom;
}
.menu-options .side-right .elements ul{
    position: absolute;
    padding: 0;
    list-style: none;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    padding-top: 0%;
    /* display: none; */
    width: 90%;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background: linear-gradient(to top, #000000,#000000f0, #00000000);
    height: 70px;
}
.menu-options .side-right .elements ul>li{
    color: #fff;
    padding: 2.5% 10%;
    margin: 0%;
    text-align: center;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.menu-options .side-right .elements ul>li>p{
    font-size: 1em;
}

.menu-options .side-right .elements{
    width: 100%;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 5%;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}
.menu-options .side-right .elements h4{
    color: #222;
    font-size: 1.4em;
    margin: 0% 0 3%;
    text-align: center;
}
.menu-options .side-right .elements p{
    color: #fff;
    font-size: 17px;
    margin: 2% 0;
}
.menu-options .side-right .elements a{
    color: #fff;
    border: 2px solid #fff;
    padding: 2% 5%;
    margin: 0 0;
    cursor: pointer;
    margin: 0 2.5%;
    width: 35%;
}
.menu-options .side-right .elements span>a>i{
    margin-left: 10px;
}
.services .serv-content .card{
    width: calc(25% - 20px);
    background: #fff;
    color: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.services .serv-content .card img{
    width: 100%;
}
.services .serv-content .card:hover{
    background: #fff;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
}
.services .serv-content .card i{
    font-size: 50px;
    color: #666;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #111;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .card p{
    display: none;
}
/* skills section styling */

.skills .title::after{
    content: "";
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    text-align: justify;
}
.skills .skills-content .left a{
    display: inline-block;
    background: #ff6500;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #ff6500;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: #ff6500;
    background: none;
}
.skills .skills-content .right .bars{
    margin-bottom: 15px;
}
.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right span{
    font-weight: 500;
    font-size: 18px;
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #ff6500;
}
.skills-content .right .html::before{
    width: 90%;
}
.skills-content .right .css::before{
    width: 60%;
}
.skills-content .right .js::before{
    width: 80%;
}
.skills-content .right .php::before{
    width: 50%;
}
.skills-content .right .mysql::before{
    width: 70%;
}

/* teams section styling */
.init-i{
    text-align: center;
    margin: 0!important;
    transition: all 0.3s ease;
}
.init-i p{
    font-size: 14px;
    text-align: center;
}
.init-i:hover p{
    transition: all 0.3s ease;
}
.init-i:hover img{
    transition: all 0.3s ease;
}

.init-i img{

}
/**********MENUS **********/
.enabled{
    color: #f8f9fa;
    background: #1469ae!important;
    border: 2px solid #1469ae!important;
}
.menu_options{
    position: relative;
    width: 100%;
    position: relative;
    padding: 1% 1%;
}
.menu_options ul{
    width: 60%;
    position: relative;
    list-style: none;
    display: grid;
    flex-direction: row;
    justify-content: space-around;
    grid-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin: 0 auto;
    z-index: 0;
}
.menu_options ul::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #1469ae;
    border-radius: 10px;
    top: 0;
    margin: auto 0;
    z-index: -1;
}
.menu_options .opcs-1 .enabled{

}
/*
.menu_options ul .opcs-4::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 20%;
    height: 8px;
    background: #1469ae;
    border-radius: 10px;
    top: -30%;
    margin: auto 0;
    z-index: -1;
    left: -15%;
    transform: rotate(25deg);

}
*/
.menu_options ul>li{
    position: relative;
    font-size: 16px;
    padding: 5% 10%;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
    margin: 0;
    background: #fff;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.menu_options ul>li:hover{
    transition: all 0.3s ease;
    border: 2px solid #1469ae;
}
.content-c{
}

.content-c ul{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
}
.content-c ul>li{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.content-c ul>li>h2>small{
    font-size: 18px;
}
.content-c ul>li>span{
    width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.content-c h2{
    padding: 0 5%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    position: relative;
}
.content-c h2::before{
}

.content-c img{
    width: 100%;
    height: 100%;
    padding: 0 5%;
    object-fit: cover;
    object-position: center;
}
.teams .title::after{
    content: "";
}
/**********************************/
.teams .carousel .card{
    position: relative;
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 25px 25px;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 300px;
    align-items: flex-start;
    display: flex;
    border: 1px solid #eee;
}
.teams .carousel .card:hover{
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.teams .carousel .card::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    background: #1469ae;
    bottom: 0;
    left: 0;
    border-radius: 0px 0px 5px 5px;
    transition: 0.2s;
    margin: 0 auto;
    right: 0;
}
.teams .carousel .card:hover:before{
    transition: 0.2s;
    width: 100%;
}
.teams .carousel .card:hover{
    border: 2px solid #eee;
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    transform: scale(1.0);
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: auto 0;
    text-align: center;
    justify-content: center;
    margin: auto!important;
}
.teams .carousel .card .box{
    padding: 0;
    margin: 0 auto;
}
.teams .carousel .card:hover .box{
}
.teams .carousel .card:hover img{
    transform: translateY(-10px);
     transition: all 0.3s ease;
}
.teams .carousel .card .text{
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 10px 0;
}
.teams .carousel .card img {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 0%;
    transition: all 0.3s ease;
    margin: 0 auto;
}

/******************************/


#efecto{
    height: 410px;
    transition: all 0.3s ease;
}
#efecto:hover img{
    transition: all 0.3s ease;
    transform: translateY(-10px);
}
#efecto:hover{
    justify-content: center;
    transition: all 0.3s ease;
}
#efecto::after {
/*    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background: #111;
    z-index: 9;*/

}
#efecto p{
    display: block;
    transition: all 0.3s ease;
}
#efecto:hover p{
    display: block;
    transition: all 0.3s ease;
}
#efecto button{
    transition: all 0.3s ease;
    margin: 17px 30%;
    color: #fff;
    background: #1469ae;
    border: 5px solid #1469ae;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 15px;
    text-decoration: none;
    outline: none;
}
#efecto:hover button{
    transition: all 0.3s ease;
    margin: 0 30%;
}
#efecto:hover textarea{
    height: 100px;
    border: 1px solid #ddd;
}
#efecto ul{
    padding: 0;
    position: relative;
    list-style: none;
    text-align: justify;
    
}
#efecto ul>li{
    padding-left: 15%;
    font-size: 13.5px;
    position: relative;
    padding-right: 5%;
}
#efecto ul>li>ion-icon{
    position: absolute;
    left: 6%;
    color: #1469ae;
    font-size: 18px;
    top: 2px;
}
#efecto ul>li>ol{
    margin-top: 4%;
    padding: 0;
    position: relative;
    list-style: none;
    text-align: justify;
}
#efecto ul>li>ol>li{
    padding-left: 15%;
    font-size: 13.5px;
    position: relative;
    padding-right: 5%;
}
#efecto ul>li>ol>li>ion-icon{
    position: absolute;
    left: 6%;
    color: #1469ae;
    font-size: 18px;
    top: 2px;
}
.portada{
    display: grid;
    grid-template-columns: 30% 70%;
    margin-bottom: 2em;
    grid-gap: 10px;
    width: 100%;
}
.modal-indus{

}
.modal-indus p{
    margin: 1.5% 0;
    font-size: 17px;
    color: #222;
    position: relative;
    padding-left: 6%;
}
.modal-indus p>ion-icon{
    position: absolute;
    left: 0;
    top: 5%;
    color: #1469ae;
}
.modal-indus ul{
    padding: 0;
    position: relative;
    list-style: none;
    text-align: justify;
    
}
.modal-indus ul>li{
    padding-left: 12%;
    font-size: 16px;
    position: relative;
    padding-right: 5%;
    margin: 1.5% 0;
}
.modal-indus ul>li>ion-icon{
    position: absolute;
    left: 6%;
    color: #1469ae;
    font-size: 18px;
    top: 2px;
}
.portada .text{
    align-items: center;
    font-size: 14px!important;
    text-align: left;
    margin: auto 0!important;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #1469ae!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #1469ae!important;
}
#ajust-title::before{
    display: none;
    /*
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #032358;
    transform: translateX(-50%);
    border-radius: 10px;
    */
}
#ajust-title::after{
    width: 70px;
    background: #fff;
    height: 4px;
    border-radius: 5px;
    bottom: -4px;
}
.floating__1{
        position: absolute;
    right: 10%;
    bottom: 2%;
}

/* contact section styling */
.contact{
    color: #111;
    background-size: cover;
    background-position: center;
    position: relative;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 10;
    transition: all 0.3s ease;
    margin-left: 100%;
    overflow-y: scroll;
    background: #ffffffd4;
    backdrop-filter: blur(5px);
}

.add_contact{
    margin-left: 0!important;
    transition: all 0.3s ease;
}
.contact .contact-content{
    position: relative;
    z-index: 1;
}
.opacity-end {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.82;
    left: 0;
}
.contact .title::after{
    content: "";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #111;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
    font-size: 17px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #111;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
    cursor: pointer;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 100%;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 0;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 45px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin: 1% 0;
}
.contact .right form .field select{
    height: 45px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin: 1% 0;

}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #111;
  border: 2px solid #111;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: #111;
  background: none;
}
#sha{
    background: #fff;
    padding: 4.5%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.shadow-end{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #063a7a;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-image: url(../images/footer.jpg);
    z-index: 0;
}
/* footer section styling */
footer{
    padding: 0;
    color: #fff;
    text-align: center;
    z-index: 5;
    position: relative;
    background: #063a7a;
    padding-top: 1%;
}
footer span {
    font-size: 13px;
    color: #999;
}
footer span a{
    color: #999;
    text-decoration: none;
    font-weight: bolder;

}
footer span a:hover{
    text-decoration: underline;
}
.to_end{
    background: #111;
    padding: 5px 0;
    z-index: 2;
    position: relative;
}
.end{
    display: flex;
    width: 100%;
    padding: 0;
    grid-gap: 20px;
}

.end-col{
    position: relative;
    width: 100%;

}
.end-col::before{
    /*
    content: "";
    width: 0;
    height: 0;
    border-bottom: 50px solid #eee;
    border-left: 50px solid #fff;
    box-shadow: 7px 7px 7px rgb(0 0 0 / 17%);
    position: absolute;
    top: 0;
    left: 0;
    */
}
.end-col img{
    width: 120px;
    height: 120px;
    margin: 5% 0;
    background: #fff;
    padding: 3%;
    border-radius: 100%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    object-fit: contain;
}
.end-col h5{
    font-size: 1.5em;
    text-align: left;
    padding-left: 10px;
    margin: 8% 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10%;
    color: #eee;
    position: relative;
}
.end-col h5::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: #ddd;
    bottom: 0;
    left: 0;
    right: auto;
    margin: 0 auto;
    border-radius: 0px;
}
.end-col ul{
    padding: 0 10%;
    width: 100%;
    margin: 0;
    text-align: left;
    list-style: none;
    padding-bottom: 10%;
}
.end-col ul>li{
    margin: 7% 0;
    position: relative;
    padding-left: 4%;
    font-size: 15px;
    color: #eee;
    cursor: pointer;
}
.end-col ul>li>i{
    position: absolute;
    left: -5%;
    top: 10%;
    color: #ddd;
    font-size: 14px;
}
#boton-resp{

}
    .desktop{
        display: block;

    }
    .mobil{
        display: none;
    }


/* responsive media query start */
@media (max-width: 1440px) {
    .other-sections{
    min-height: 350px!important;
}
}
@media (max-width: 1104px) {
    .head-0 {
        padding: 10px 0px;
    }
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
    .navbar .logo::after{
    }
    .navbar .menu li a {
        font-size: 14px;

    }
    .navbar .menu li>a>button{
        width: 150px;
        font-size: 14px;
    }
    .home-content {
        width: 50%;
    }
    .home .home-content .text-2 {
        font-size: 30px;
    }

}

.menu-btn .active{
    color: #fff!important;
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .navbar .logo::after{
        width: 50%;
    }
    .about .about-content ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar .menu li a{
        color: #fff;
        width: 100%;
        position: relative;
    }
    .navbar .menu li a i{
        position: absolute;
        right: 5.5%;
        top: 5%;
        transition: all 0.3s ease;
        color: #fff;
    }
    .home-content {
        width: 85%;
    }

    .rotate-i{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }

    .rotate-i-0{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }


    .dropdown-w-one .menu-btn i {
        position: absolute;
        right: 7.5%;
    }
    .about .about-content .left img {
        height: 668px;
        width: 100%;
    }
    .about .about-content .left::after{
        display: none;
    }
    .pulsingButton{
        display: none;
    }
    .desktop{
        display: none;

    }
    .mobil{
        display: block;
    }
    .enabled-sub{
        display: block!important;
        transition: all 0.3s ease;
    }
    .submenu-m{
        transition: all 0.3s ease;
        display: none;
        position: relative;
        color: #fff;
    }
    .submenu-m ol{
        padding: 0;
        padding-left: 5%;
    }
    .submenu-m ol>li{
        font-size: 18px;
        margin: 3.5% 0;
    }
    .submenu-m ol>li>i{
        font-size: 17px;
        position: absolute;
        right: 5.5%;
        color: #fff;
    }
    .home::after {
        width: 200px;
        height: 200px;
        right: 0;
        left: auto;
        top: 0;
        bottom: -10%;
        margin: auto;
        border: 7px solid #ddd;
    }
    .slide-1{
        background-image: url(../images/slide/1-11.jpg);
    }
    .slide-2{
        background-image: url(../images/slide/4-2.jpg);
    }
    .slide-3{
        background-image: url(../images/slide/3-2.jpg);
    }
    .slide-4{
        background-image: url(../images/slide/2-22.jpg);
    }
    .slide-5{
        background-image: url(../images/slide/1-11.jpg);
    }
    .banner-m{
       /*background-image: url(../images/slide/movil2.jpg);*/
    }

}
@media (max-width: 947px){
    .botons_emp{
        width: 70%;
    }
    .home-content{
        width: 100%;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .dropdown-w-one .menu-btn i.active:before{
        content: "\f107";
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: absolute;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: -1px;
        background: #000e;
        text-align: left;
        padding-top: 60px;
        transition: all 0.3s ease;
        padding-left: 10%;
    }
    .head-0{
        padding: 0.8rem 1.5rem;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 15px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .home{
        background-position: center;
    }
    .menu-options .side-left {
        width: 100%;
    }
    .menu-options .side-right {
        width: 100%;
    }
    .menu-options{
        flex-wrap: wrap;
    }
    .menu-options .side-left ul {
        width: 100%;
    }
    .menu-options .side-left ul>li::after{
        display: none;
    }
    .menu-options .side-left ul>li {
        width: 100%;
        height: 70px;
    }
    .teams .carousel .card{
        border: 2px solid #eee;
    }
    .medium .home-content .text-2 {
        font-size: 45px!important;
        padding-right: 15%;
    }
    .end-col{
        width: 100%;
    }
    .end{
        flex-wrap: wrap;
    }
    .end-col h5{
        margin: 2% 0;
        margin-bottom: 2%;
    }
    .end-col ul{
        padding-bottom: 2%;
    }
    .end-col img {
        width: 50%;
        margin: 0;
        height: 100%;
    }
    #ajust-call{
        /* background: #e75e04; */
        /* border-radius: 0; */
        /* padding: 0; */
        /* position: absolute; */
        /* left: 0; */
        /* top: 0; */
        /* width: 40%; */
        /* height: 100%; */
        /* margin: 0; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        width: 30%;
    }
    #ajust-call i{
        margin: 0 5px;
    }
    .navbar{
        background: #fff;
        padding: 0;
    }
    .navbar i{
        color: #111;
    }
    .navbar.sticky i{
        color: #222;
    }
    .resp{
        display: none;
        
    }
    .menu-options .side-right .elements ul{
        bottom: 0;
        width: 100%;
    }
}
@media (max-width: 768px) {
    #sku b::before{
        animation: none!important;
        right: auto;
        left: 0;
    }
    .menu_options ul{
        width: 100%;
    }
    .slider-01 h2 {
        margin-bottom: 1.1em;
        font-size: 1.3em;
        margin-top: 15%;
    }
    .spacio{
        padding-top: 0!important;
    }
    .navbar .logo::before{
        display:  none;
    }
    .navbar .logo::after{
        display:  none;
    }
    .container-products-detail ul {
        grid-template-columns: 1fr;
    }
    .botons_emp{
        width: 100%;
    }
    .to_top{
        margin-top: 1%;
        margin-bottom: auto;
    }
    #ajust-call::before {
        content: attr(data-label);
        position: absolute;
        right: auto;
        left: 0;
    }
    #ajust-call{
        list-style: none;
        margin: auto 18px;
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        cursor: pointer;
        color: #fff;
        background: none;
        width: 22px;
        height: 22px;
        border-radius: 100%;
        padding: 2%;
        position: relative;
    }
    .rotates{
        top: -20%;
    }
    #sub__img{
        display: none;
    }
    .shadow-end {
         /*   background-image: url(../images/lapiz_movil.png);*/
    }
    .navbar{
        z-index: 6;
    }
    .end-col img {
        width: 25%;
        display: none;
    }
    .contact-content{
        flex-direction: column-reverse;
    }
}
@media (max-width: 690px) {
    .content-info{
        width: 100%!important;
        left: 0;
    }
    .logo{
        width: auto;
    }
    .menu_options ul>li {
        font-size: 13px;
        padding: 10%;
    }
    .container-shoppingcart h2 {
        padding: 4% 2%;
    }
    .box-detail-product-desc div>h2 {
        padding: 0% 5% 0% 3%;
        font-size: 17px;
    }
    .whats_m {
        width: 160px;
        padding: 2.5% 0;
    }
    #arr_p{
        padding-top: 1rem!important;
    }
    .max-width{
        padding: 0 23px;
    }
    .opacity{
        opacity: 0.96;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .services .serv-content .card{
        width: 100%;
    }
    .about .about-content ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar .logo img {
        width: 100px;
        padding: 0;
    }
    .column{
        width: 50%!important;
    }
    .navbar .menu li a{
        font-size: 22px;
    }
    .navbar .sticky{
        padding: 0;
    }
    #ajust-call::before {
        display: none;
    }
    .head-0 ul{
        justify-content: space-evenly;
    }
    .head-0 ul>li{
        margin: auto 10px;
    }
    .globes{
        width: 40%;
    }
    .init-i p{
        font-size: 17px;
        text-align: center;
    }
    .about .owl-nav{
        top: -10%!important;
    }
    .about .row{
        padding: 5%!important;
    }
    .about .card{
        padding: 10px!important;
    }
    .teams__ajust {
        background: #035392;
        padding-bottom: 5em;
    }
    .notepad{
        padding: 10%;
    }
    .notepad p{
        font-size: 18px!important;
    }
    .table-total {
        width: 75%!important;
        float: right;
    }
    .about .about-content .right ol{
        grid-template-columns: repeat(2, 1fr);
    }
    .about .about-content .right ol>li{
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin: auto;
        justify-items: center;
        justify-self: center;
        width: 100%;
    }
    .about .about-content .right ol>li>img{
        margin: 0 auto;
    }
    #comparison {
        height: 300px;
    }
    .menu-options .side-right .elements {
        padding: 5% 0;
    }
    .menu-options .side-right .elements h4 {
        font-size: 1em;
        padding: 0 5%;
    }

}

@media (max-width: 500px) {
    section{
        padding: 70px 0;
    }
    .table-total {
        width: 100%!important;
        float: right;
    }

    .end-col ul>li>i {
        font-size: 20px;
    }
    .cubes{
        display: none;
    }
    .globes{
        display: none;
    }

    .column{
        width: 100%!important;
    }
    .home .home-content .text-2{
        font-size: 25px;
        padding: 0 0% 0 0;
    }
    .home .home-content .text-3{
        font-size: 22px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .head-0 {
        padding: 4% 0;
    }

    .head-0 ul>li {
        margin: auto 1px;
    }

    .menu-options .side-left ul>li {
        height: 75px;
    }
    section .title{
        font-size: 35px;
    }
    .menu-options .side-right .elements span {
        width: 95%;
    }
    .menu-options .side-right .elements span>a {
        width: 45%;
    }
    .menu-options .side-right .elements ul>li {
        font-size: 13px;
    }
    .end{
        padding-top: 7%;
    }
    .end-col ul>li {
        font-size: 13px;
    }
    .end-col h5{
        font-size: 19px;
        margin-bottom: 7%;
    }
    .navbar .logo::after {
        width: 88%;
        transform: none;
    }
    .about .about-content .right p {
        text-align: justify!important;
        font-size: 15px;
    }
    .about .about-content .left img {
        height: 350px;
        width: 100%;
    }
    .about .about-content .left{
        margin: 0 auto 40px;
    }
    #sha{
        border-radius: 5px;
        padding: 5%;
    }
    .menu-options .side-left ul>li>h3 {
        font-size: 1.3em;
    }
    .contact .contact-content .text {
        padding-bottom: 15px;
        text-align: center;
    }
    .other-sections h2 {
        font-size: 35px!important;
    }
    .other-sections h3 {
        font-size: 1.2em;
    }
    .other-sections{
        min-height: 300px!important;
        height: 35vh!important;
    }
}   
@media (max-width: 360px) {
    .head-0 {
        padding: 0.8rem 0;
    }
}