/*  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;
}
html{
    scroll-behavior: smooth;
}
body{
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
}

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

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

/* all similar content styling codes */
section{
    padding: 100px 0;
    position: relative;
}

.max-width{
    max-width: 1425px;
    padding: 0 60px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about{
    height: 100vh;
    padding: 100px 0;
    background: #fff;
}
.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;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #ff5e14;
    transform: translateX(-50%);
    border-radius: 10px;
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #ff6500;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}
/******SCROLL ANIMATED ****/
.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%;
    flex-direction: column;
  }
}
/**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 ***/

.head-0{
    padding: 10px 100px;
    margin: 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 2;
    background: #111;
    display: flex;
}
.head-0 ul{
    display: flex;
    width: 50%;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}
.head-0 ul>li{
    position: relative;
    list-style: none;
    margin: auto 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    cursor: pointer;
    color: #ddd;
}
.head-0 ul>li>i{
    color: #fff;
}

#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;
}
/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #0000;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
}
.navbar.sticky{
    padding: 0px 0;
    background: #fff;
    top: 0;
}
.other{
    padding: 0px 0;
    background: #fff;
    top: 0;
    position: relative;
}
.navbar .max-width{
    display: flex;
    justify-content: space-between;
    max-width: 85%;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.logo{
    width: 250px;
    height: 100px;
    object-fit: cover;
}
.navbar .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.navbar .logo::after{
    content: '';
    position: absolute;
    left: 0;
    background: rgb(255 255 255 / 23%);
    width: 100%;
    height: 0.1px;
    z-index: -1;
    transition: all 0.3s ease;
    bottom: 0;
}
.navbar.sticky .logo::after{
    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;
}

.send_1{
    transition: all 0.3s ease;
}
.menu{
        
display: flex;
        
flex-direction: row;
        
height: 100%;
        
grid-gap: 20px;
        
align-items: center;
}
.navbar .menu li{
    font-family: 'Roboto', sans-serif;
    position: relative;
    list-style: none;
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    align-self: center;
}

.indicador{
    position: relative;
    color: #fff!important;
}
.navbar .sticky .indicador::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -1.5px;
    background: #ff6500;
}
.indicador::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    background: #ff6500;
    border-radius: 10px;
}

.sub-active{
    position: relative;
    background: #00225a!important;
    color: #fff!important;
} /*
.sub-active::before{
   
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0;
    height: 0;
    border-right: 16px solid #fff;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
   
} */
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    /* margin-left: 25px; */
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0px;
}
.navbar, .sticky .menu li a{
    color: #111!important;
}
.navbar, .other .menu li a{
    color: #111!important;
}
.cancel-i:before{
    font-family: "Font Awesome 5 Brands";
    content: "\f067"!important;
}   

.navbar .menu li>a>button{
    padding: 5% 0;
    color: #fff;
    background: #0000;
    font-size: 16px;
    width: 180px;
    border: 2px solid #ff6500;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    grid-gap: 10px;
}
.navbar .menu li a:hover{
    color: #fff;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

.pulsingButton {
    text-align: center;
    white-space: nowrap;
    border: 2px solid rgb(0 34 90)!important;
    display: block;
    box-shadow:  0 0 0 0 rgb(0 34 90);
    border-radius: 10px;
    background-color: rgb(0 34 90)!important;
    -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;
}
.we-whats {
    text-align: center;
    white-space: nowrap;
    border: 2px solid rgb(0 34 90)!important;
    display: block;
    box-shadow:  0 0 0 0 rgb(0 34 90);
    border-radius: 10px;
    background-color: rgb(0 34 90)!important;
    -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;
}
button.we-whats: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);
    }
}

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

        .dropdown-w-one div{
            position: absolute;
            width: 210px;
            top: 90px;
            padding: 0;
            margin: 0;
            background-color: #fff;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease 0s;
            transform: translateY(15px);
            border-radius: 5px;
            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: #fff;
            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: 0;
            z-index: -1;
        }

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

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

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

        .active-dropdown li:hover{
            color: #fff;
            background: #ff6500;
        }
        .figure::after{
            display: none;
        }/*
        .active-dropdown li:hover .figure::after{
             background: #ff5e14!important; 
        }*/
        .active-dropdown li{
                position: relative;
        }
        .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: #00225a!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: #00225a!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;
        }
.list-ven{
    
text-align: justify;
    
margin: 3% 0;
    
font-size: 1em;
    
color: #333;
    
background: #fff;
    
box-shadow: 0 0.15rem 1.5rem 0 rgb(31 45 65 / 15%);
    
padding: 4%;
    
line-height: 1.6;
    
position: relative;
    
border: 1px solid #ddd;
    
font-weight: normal;
    
border-radius: 5px;
}
.list-ven ol{ 
list-style: none;
}
.list-ven ol>li{
display: flex;
justify-content: flex-start;
align-items: baseline;
grid-gap: 5px;
}
.list-ven ol>li>i{
color: #777;
}

/****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/rack-selectivo.jpg);
}
.slide-2{
    background-image: url(../images/slide/estanteria.jpg);
}
.slide-3{
    background-image: url(../images/slide/convertidor-mecano.jpeg);
}
.slide-4{
    background-image: url(../images/slide/entrepisos-mecano.jpg);
}
.slide-5{
    background-image: url(../images/slide/autosoportado.jpg);
}
.slide-medium{
    height: 100%!important;
    background-size: 100%;
    background-image: url(../images/slide/tracks-03-03.png);
    background-position: center center!important;
    padding: 150px 0;
    animation:  sliders 0.9s infinite alternate;
 }

 #ajust-con{
    background: linear-gradient(to top, #43434300,#11111100, #00000059, #000000f0)!important;
 }

.banner-m{
    background-image: url(../images/slide/tracks-04.jpg);
}
.text-view{
    position: absolute;
    width: 22%;
    background: #ff5e14ed;
    right: 20%;
    top: 0;
    border-radius: 5px;
    height: 150px;
    padding: 2%;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}
.text-view div{
    width: 45px;
    height: 45px;
    object-fit: cover;
    margin-left: auto;
    /* background: #fff; */
    padding: 0%;
    border-radius: 100%;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    margin-top: 2%;
    
}
@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
    transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}

.text-view div>img{
width: 100%;
}
.text-view h3{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1.3;
    text-shadow: 1.5px 1px #111;
    text-align: center;
}
.text-view::after{
    content: "";
    position: absolute;
    bottom: -15px;
    right: 50px;
    border: 10px solid;
    border-color: #ff5e14 transparent transparent #ff5e14;
}
/*****SERVCICESS***/
.servs{
    display: grid;
    grid-template-columns: 35% 65%;
    grid-gap: 0;
    width: 100%;
    position: sticky;
    top: 0;
}
.servs .serv-left{
    position: relative;
    width: 100%;
}

.tiles-services{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    background: #000e;
    margin: auto;
    right: 0;
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 0;
    padding: 0 5%;
}
.tiles-services img{
    position: relative;
    width: 70px!important;
    height: 70px!important;
    min-height: auto!important;
    object-position: center!important;
}
.tiles-services h2{
font-family: 'Oswald', sans-serif;
font-size: 2em;
text-transform: uppercase;
}
.tiles-services p{text-transform: uppercase;font-size: 1.3em;font-family: 'Oswald', sans-serif;color: #eee;}
.tiles-services p>strong{
color: #ff6500;
}

.tiles-services ul{
    margin-top: 1em;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: 'Roboto', sans-serif;
    flex-wrap: wrap;
    text-align: center;
}
.tiles-services ul>li{
    font-size: 1.2em;
    display: flex;
    flex-direction: row;
    grid-gap: 5px;
    cursor: pointer;
    justify-content: center;
    color: #ddd;
    margin: 0.35em 0;
}
.tiles-services ul>li:hover{
    color: #fff;
}
.rotates{
    transform: rotate(100deg);
}
.tiles-services ul>li>i{color: #ff6500;}

.tiles-services button{
    display: inline-block;
    background: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.servs .serv-right{
    padding: 2%;
}
.servs .serv-right h2{
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    padding-left: 1.3%;
    border-left: 5px solid #ff6500;
    margin: 2% 0;
    color: #222;
    font-weight: bold;
    letter-spacing: 1px;
}
.servs .serv-right p{
    color: #999;
    font-weight: normal;
}
.servs .serv-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    min-height: 580px;
    object-position: center;
}
.carousel-serv{
    position: relative;
    width: 100%;
    z-index: 2!important;
    height: auto!important;
}
.carousel-serv{
    margin: 0;
    padding: 0 2%;
}
.carousel-serv .card{
    position: relative;
    padding: 0;
    background: #fff;
    margin: 5% 2%;
    border-radius: 5px;
    box-shadow: 0 0.15rem 1.5rem 0 rgb(31 45 65 / 5%);
    height: 425px;
    min-height: 400px;
    border: 1px solid #eee;
    cursor: pointer;
}
.carousel-serv .card img{
    transition: all 0.3s ease;
    border-radius: 5px 5px 0 0;
    width: 100%;
    object-fit: cover;
    padding: 5%;
    overflow: hidden;
}
.carousel-serv .card .card-text{
    padding: 5% 7%;
}

.carousel-serv .card .card-text h3{
    font-size: 16px;
    margin-bottom: 2%;
    color: #000;
    font-weight: 500;
}
.carousel-serv .card .card-text p{color: #888;font-size: 13px;text-align: justify;}
.carousel-serv .card .card-text a{
    position: absolute;
    bottom: 20px;
    color: #777;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-serv .card .card-text a>i{
    color: #999;
    border-radius: 50%;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    position: absolute;
    align-items: center;
    display: flex;
    justify-content: center;
    right: -23px;
    font-weight: normal;
}
.carousel-serv .card:hover .card-text a>i{
    right: -31px;
}
.carousel-serv .card:hover img{
        transition: all 0.3s ease;
        transform: scale(1.1);
}
/*****ICOMOON***/
@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon.eot?4vca3n);
    src: url(../fonts/icomoon.eot?4vca3n#iefix) format("embedded-opentype"), url(../fonts/icomoon.ttf?4vca3n) format("truetype"), url(../fonts/icomoon.woff?4vca3n) format("woff"), url(../fonts/icomoon.svg?4vca3n#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}
[class*=" icons-"],
[class^=icons-] {
    font-family: icomoon!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.carousel-serv .owl-nav .owl-prev span{
    display: none;
}
.carousel-serv .owl-nav .owl-next span{
    display: none;
}
.carousel-serv .owl-nav .owl-prev:before {
    font-family: icomoon!important;
    content: "";
    font-size: 13px
}

.carousel-serv .owl-nav .owl-next:before {
    font-family: icomoon!important;
    content: "";
    font-size: 13px
}

.icons-arrow-right:before {
    content: "\e902";
}
.icons-arrow-left:before {
    content: "\e900"
}
/*
.fa-play:before {
     font-family: icomoon!important; 
     content: "\f04b"!important; 
}*/

.carousel-serv .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: fit-content;
    margin: auto;
}
.carousel-serv .owl-nav button{
    width: 45px;
    height: 45px;
    background: #fff!important;
    border-radius: 100%;
    position: relative;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 25%);
}
.carousel-serv, .owl-nav, .owl-prev {
    position: relative;
}
.carousel-serv, .owl-nav, .owl-next {
    position: relative;
}
.carousel-serv, .owl-nav, .owl-prev::after {
    content: '';
    position: absolute;
    width: 10px;
}
.carousel-serv, .owl-nav, .owl-next::after {
    content: '';
    width: 10px;
}

/*****ABOUT CONTROLS****/
.carousel-about .owl-nav .owl-prev span{
    display: none;
}
.carousel-about .owl-nav .owl-next span{
    display: none;
}
.carousel-about .owl-nav .owl-prev:before {
    font-family: icomoon!important;
    content: "";
    font-size: 13px
}

.carousel-about .owl-nav .owl-next:before {
    font-family: icomoon!important;
    content: "";
    font-size: 13px
}
.carousel-about .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: fit-content;
    margin-top: auto;
}
.carousel-about .owl-nav button{
    width: 45px;
    height: 45px;
    background: #00225a!important;
    border-radius: 0;
    position: relative;
    /* box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 25%); */
    color: #fff!important;
    top: 0;
}
.carousel-about .owl-nav button:first-child{
    border-radius: 5px 0 0;
}
.carousel-about .owl-nav button:last-child{
    border-radius: 0 5px 0 0;
}

.carousel-about, .owl-nav, .owl-prev {
    position: relative;
}
.carousel-about, .owl-nav, .owl-next {
    position: relative;
}
.carousel-about, .owl-nav, .owl-prev::after {
    content: '';
    position: absolute;
    width: 10px;
}
.carousel-about, .owl-nav, .owl-next::after {
    content: '';
    width: 10px;
}
/***VIDEOS****/

.video{
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 600px;
    margin: auto;
}
.video::after{
    content: '';
    width: 50%;
    height: 100%;
    background: #ff5e14e3;
    top: 0;
    left: 0;
    position: absolute;
}
.video::before{
    content: '';
    width: 50%;
    height: 100%;
    background: #11111170;
    top: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}
.video .colum-left{
    width: 50%;
    color: #fff;
    position: relative;
    z-index: 1;
}
.video .colum-left h3{
    font-family: 'Oswald', sans-serif;
    font-size: 3.4em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1.2px 0.7px black;
    letter-spacing: -1px;
}
.video .colum-left p{
    text-transform: uppercase;
    font-size: 1.2em;
    font-family: 'Oswald', sans-serif;
    color: #ddd;
}
.video .colum-left button{
    display: inline-block;
    background: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.video .colum-right{
    width: 50%;
}
.video .max-width{
    display: flex;
    justify-content: inherit;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 100%;
}
.container-video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.container-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.colums-check{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    margin: 5% 0 3%;
}
#cont-video{
    
width: 50%;
    
right: 0;
    
left: auto;
}
.colums-check ul{padding: 0;list-style: none;}
.colums-check ul>li{color: #fafafa;margin: 2% 0;padding: 0 2%;font-family: 'Roboto', sans-serif;}
.colums-check ul>li>i{
    color: #212121;
    margin-right: 5px;
}
.in-button{
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /* box-shadow: 0 5px 30px rgb(0 0 0 / 30%); */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 6px solid #ff5e14e3;
}
.in-button::before{
    position: absolute;
    content: '';
    left: -2px;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ff5e14;
    z-index: 0;
    opacity: 0;
    animation: pulse-border-2 1.5s linear infinite;
    border-radius: 100%;
    bottom: 0;
    margin: auto;
    right: 0;
}

.in-button::after{
    position: absolute;
    content: '';
    left: -2px;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #ff5e14;
    z-index: 0;
    opacity: 0;
    animation: pulse-border 1s linear infinite;
    border-radius: 100%;
    right: 0;
    margin: auto;
    bottom: 0;
}

@keyframes pulse-border {
  0% {
    transform:  scale(1);
    opacity: 1; 
}
  100% {
    transform:  scale(1.3);
    opacity: 0; } 
}
@keyframes pulse-border-2 {
  0% {
    transform:  scale(1);
    opacity: 1; 
}
  100% {
    transform:  scale(1.5);
    opacity: 0; } 
}

.in-button i{
    font-size: 1.7em;
    position: relative;
    color: #212121;
}

.fondo-00{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: auto;
    display: none;
    align-items: center;
    backdrop-filter: blur(5px);
}
/*
.view-modal{
   top: 50%; 
   color: #111; 
   font-size: 18px; 
   padding: 10px 25px; 
   background: #fff; 
   transform: translate(-50%, -50%); 
}*/
.popup{
  background: #111e;
  padding: 25px;
  border-radius: 15px;
  width: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transition: top 0s 0.2s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
  margin: auto;
}
.popup.show{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: top 0s 0s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: fit-content;
  position: absolute;
}
.popup :is(header, .icons, .field){
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup header{
  padding-bottom: 5px;
  border-bottom: 1px solid #ebedf9;
}
.popup header span{
  font-size: 17px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
  color: #fafafa;
  letter-spacing: 0.3px;
}
.popup header .close, .icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.popup header .close{
  color: #111;
  font-size: 17px;
  background: #f2f3fb;
  height: 33px;
  width: 33px;
  cursor: pointer;
  z-index: 3;
}
.popup header .close:hover{
  background: #ebedf9;
}
.popup .content{
  margin: 20px 0 0;
  position: relative;
  z-index: 3;
}
.popup .icons{
  margin: 15px 0 20px 0;
}
.content video{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.content p{
  font-size: 16px;
}
.content .icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}
.content .field{
  margin: 12px 0 -5px 0;
  /* height: 45px; */
  border-radius: 4px;
}
.enable{
    display: block;
}
.popup.show::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: none;
}
.field.active{
  border-color: #7d2ae8;
}
.popup.show::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: none;
}
.field i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}
.field.active i{
  color: #7d2ae8;
}
.field input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}
.field button{
  color: #fff;
  padding: 5px 18px;
  background: #7d2ae8;
}
.field button:hover{
  background: #8d39fa;
}
.enable{
    display: block;
}
.popup.show::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: none;
}
/***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: 0000;
    background: linear-gradient(to top, #43434300,#1111118a,  #0000008f, #000000f0);
}
.fondo-1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    background: #111111b8;
    background: linear-gradient(to left, #43434300,#111111d1,  #000000db);
}
.fondo-01{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}
.video-desc1{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fondo-cat{
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    z-index: 0;
    height: 100%;
    background: #00225a;
    transition: all 0.3s ease;
}
#resize{
    height: 100%!important;
    width: 25%;
}
.fondo-cat::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/lines.png');
    background-size: cover;
}
.intro{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background: #fff;
    z-index: 999;
    overflow: hidden;
    transition: all 0.3s ease;
}
.logo-animated{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 40%;
    height: 16%;
    text-align: center;
    justify-content: center;
}
.logo-animated ul{
    list-style: none;
    padding: 0;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
}
.logo-animated ul>li{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    align-self: center;
    justify-content: center;
    margin: 0;
}
.logo-animated ul>li>img{
    width: 95%;
}
.cube{
    position: absolute;
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 4px;
}
.cube::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    background: #08f;
    left: -21px;
    transform: skew(0deg, 45deg);
    top: -11px;
}
.cube::before{
    content: '';
    position: absolute;
    width: 40px;
    height: 20px;
    background: #08f;
    top: -21px;
    transform: skew(45deg, 0deg);
    left: -11px;
}
.cube:first-child{
    right: 0;
    bottom: 0;
}
.cube:nth-child(2n){
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    margin: auto;
}
.cube:nth-child(3n){
    top: 0;
    left: 0;
}
.cube:nth-child(4n){
    top: -2px;
    left: 45px;
    margin: 0;
    right: auto;
}
.cubes{
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url(../images/logo/cube.png);
    background-size: cover;
    transition: all 0.3s ease;
}
.cubes:first-child{
    left: 0;
    top: 0;
    animation: obj 0.4s ease-in-out ;
}

.cubes:nth-child(2n){
    left: 30%;
    top: 10%;
    animation: obj 0.6s ease-in-out ;
}
.cubes:nth-child(3n){
    left: 60%;
    top: 20%;
    animation: obj 0.8s ease-in-out ;
}
.cubes:nth-child(4n){
    left: 10%;
    top: 30%;
    animation: obj 0.3s ease-in-out ;
}
.cubes:nth-child(5n){
    left: 40%;
    top: 40%;
    animation: obj 0.6s ease-in-out ;
}
.cubes:nth-child(6n){
    left: 70%;
    top: 50%;
    animation: obj 0.9s ease-in-out ;
}

@keyframes obj {
  0% {
    -webkit-transform: translatey(-30px);
    transform: translatey(-30px);

  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}

.areas{
    width: 166px;
    height: 160px;
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    animation-iteration-count: 2;
}


/* home section styling */
.home{
    display: flex;
    height: 99vh;
    background-size: cover!important;
    background-position: 50% 85%;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation:  sliders 10s infinite alternate;
}
    @keyframes sliders {
      0% {
        transition: all 0.3s ease;
        background-size: 105% 105%;
      }
      100% {
        transition: all 0.3s ease;
        background-size: 100% 100%;
      }
    }

.medium{
    height: 100%!important;
    padding: 25px 0!important;
    min-height: 460px;
}
.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;
}
.home-content{
    position: relative;
    font-family: 'Oswald', sans-serif;
    padding: 10px 0;
    line-height: 1.4;
    width: 55%;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 19px;
    color: #ffffffb8;
}
.home .home-content .text-2{
    font-size: 79px;
    font-weight: 600;
    margin-left: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1.5px 1px black;
}
.home .home-content .text-3{
    font-size: 18px;
    margin: 5px 0;
    color: #ddd;
}
.home .home-content .text-3 span{
    color: #ff6500;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    font-size: 19px;
    padding: 10px 40px;
    margin-top: 20px;
    font-weight: normal;
    border-radius: 5px;
    color: #fff;
    border: 2px solid #00225a;
    background: rgb(0 34 90);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.home .home-content a:hover{
background: none;
color: #fff;
border: 2px solid #fff;
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;
}
/*** BOTONS TO CAROUSEL ******/

   .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;
   }
   @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%;
      right: 50%;
      color: #000;
   }

   .hero_carosel .owl-nav button.owl-prev{
      left: 5%;
   }

   .hero_carosel .owl-nav button.owl-next{
      right: 5%;
   }

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

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

   .hero_carosel .owl-nav button.owl-next,.hero_carosel .owl-nav button.owl-prev{
       outline: 0;
       background: none;
       }

    .tag{
    }

    @keyframes fadeInUp{
        0%{
            opacity:0;
            transform:translate3d(0,100%,0)
        }to
        {
            opacity:1;
            transform:translateZ(0)
        }
    }
    .fadeInUp{
        animation-name:fadeInUp
    }
/* about section styling 
.about:before{
}*/
.about .title::after{
    content: "";
}
.about .about-content ul{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    width: 100%;
}
.video-desc{
    
width: 100%;
    
height: 600px;
    
object-fit: cover;
    
max-height: 700px;
    
min-height: 350px;
    
border-radius: 10px;
}
.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: 50%;
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0.15rem 1.5rem 0.65rem rgb(31 45 65 / 15%);
    border-radius: 10px;
}
.about .about-content .left img{
    height: 700px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    position: relative;
    /* box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 50%); */
    margin-right: auto;
}
.about .about-content .left::after{
    content: '';
    position: absolute;
    left: 2.5%;
    bottom: -4%;
    width: 350px;
    height: 350px;
    /* background: #00225a; */
    z-index: -1;
    border-radius: 5px;
}
#left-none::after{
    content: '';
    position: absolute;
    left: -6.5%;
    bottom: -4%;
    width: 64%;
    height: 90%;
    background: #00225a;
    z-index: -1;
    border-radius: 5px;
}
.info-about{
    position: absolute;
    right: 0;
    width: 200px;
    height: 100px;
    background: #ff5316;
    z-index: 2;
    border-radius: 0;
    display: grid;
    grid-template-columns: 40% 60%;
    top: 0;
    border-radius: 0 5px 0 10px;
}
.info-about img{
    width: 100%!important;
    height: 100%!important;
    object-fit: contain!important;
    border-radius: 0!important;
    padding: 25%;
}
.info-about-b{
    position: absolute;
    width: 75%;
    height: 100px;
    background: #ff5316;
    z-index: 2;
    border-radius: 0;
    bottom: 5%;
    border-radius: 5px;
    right: 0;
    margin-left: auto;
}

.colum-g{
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    grid-gap: 10px;
}
.colum-g h3{
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: left;
    color: #fff;
    font-weight: normal;
}

.about .about-content .right{
    position: relative;
    font-family: 'Roboto', sans-serif;
    width: 45%;
    padding-right: 0;
}
.about .about-content .right h2{
    font-family: 'Oswald', sans-serif;
    font-size: 2.7em;
    padding-left: 1.5%;
    border-left: 5px solid #ff6500;
    margin: 2% 0;
    color: #222;
    font-weight: bold;
    letter-spacing: 1px;
}

.about .about-content .right .text{
    position: relative;
    font-size: 1.2em;
    margin-bottom: 25px;
}
.about .about-content .right .text span{
    color: #555;
    font-weight: normal;
}
.about .about-content .right p{
    text-align: justify;
    margin: 3% 0;
    font-size: 1em;
    color: #333;
    background: #fff;
    box-shadow: 0 0.15rem 1.5rem 0 rgb(31 45 65 / 15%);
    padding: 4%;
    line-height: 1.6;
    position: relative;
    border: 1px solid #ddd;
    font-weight: normal;
    border-radius: 5px;
}
.container-text{
    position: relative;
}
.container-text::after{
    content: "";
    position: absolute;
    width: 7.5px;
    height: 100%;
    background: #ff6500;
    left: 7px;
    bottom: 0;
    top: 0;
    margin: auto 0;
    z-index: -1;
}
.about .about-content .right a{
    display: inline-block;
    background: #00225a;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 5px;
    border: 2px solid #00225a;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #00225a;
    background: none;
}

/*** 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%;
    left: 0;
    background: linear-gradient(to top, #fff,#ffffffd9, #fff);
    right: 0;
}

/* services section styling */
.services, .teams{
    color: #111;
    background: url("../images/slide/tracks-04.jpg") no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.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: 100%;
}
.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 #ff6500;
}

.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 #ff6500!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.5em;
    letter-spacing: -1px;
}
.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: relative;
    padding: 0;
    list-style: none;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    padding-top: 5%;
    /* display: none; */
}
.menu-options .side-right .elements ul>li{
    color: #fff;
    border: 2px solid #fff;
    padding: 2.5% 5%;
    margin: 0 5%;
    text-align: center;
    cursor: pointer;
}


.menu-options .side-right .elements span{
    position: absolute;
    bottom: 15%;
    width: 75%;
    background: #000000c7;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 5%;
    border-radius: 5px;
}
.menu-options .side-right .elements span>h4{
    color: #fff;
    font-size: 2em;
    margin: 2% 0;
}
.menu-options .side-right .elements span>p{
    color: #fff;
    font-size: 17px;
    margin: 2% 0;
}
.menu-options .side-right .elements span>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: #00225a;
}
.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: auto!important;
    transition: all 0.3s ease;
}
.init-i p{
    font-size: 14px;
    display: none;
}
.init-i:hover p{
    display: block;
    transition: all 0.3s ease;
}
.init-i:hover img{
    display: none!important;
    transition: all 0.3s ease;
}

.teams .title::after{
    content: "";
}
.teams .carousel .card{
    position: relative;
    background: #fff;
    color: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 290px;
    align-items: center;
    align-content: center;
    align-self: center;
    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: #00225a;
    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: 1px solid #eee;
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: auto 0;
}
.teams .carousel .card .box{
    padding: 0;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 10px 0;
}
.teams .carousel .card img{
    height: 90px;
    width: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}

/******DOTS*******/
.carousel-0 .owl-dots{
    text-align: center;
    margin-top: 0;
    position: absolute;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    bottom: 15%;
    top: auto;
    justify-content: center;
    grid-gap: 10px;
    width: auto;
}
.carousel-0 .owl-dot{
    height: 5px;
    width: 25px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 0;
    border: 1px solid #777!important;
    transition: all 0.3s ease;
}
.carousel-0 .owl-dot.active{
    width: 55px;
    border-radius: 10px;
    border: 1.5px solid #fff!important;
    height: 5px;
}
.carousel-0 .owl-dot.active,
.carousel-0 .owl-dot:hover{
    background: #fafafa!important;
}

.owl-dots{
    text-align: center;
    margin-top: 0;
    position: absolute;
    bottom: -4%;
    left: 0;
    right: 0;
    width: 100%;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #00225a!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #00225a!important;
}

#ajust-title::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #ff5e14;
    transform: translateX(-50%);
    border-radius: 10px;
}



/* contact section styling */
.contact{
    color: #111;
    background: url(../images/lines.jpg);
    background-size: contain;
    background-position: center;
    position: relative;
    background-repeat: repeat;
    min-height: 700px;
    height: 850px;
    object-fit: cover;
}
.contact .contact-content{
    position: absolute;
    z-index: 1;
    top: -180px;
    width: 95%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 4%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    margin: 0 auto;
    align-items: flex-start;
    height: auto;
}
.contact-content .left{
    transition: all .2s linear;
    width: 40%;
    position: relative;
    background-image: url(../images/side-contact.jpg);
}
.contact-content .left img{
    width: 100%;
    border-radius: 5px;
}
.text-viewer{
    padding: 5%;
    position: absolute;
    width: 90%;
    bottom: 4%;
    left: 0;
    right: 0;
    margin: auto;
    background: #032358de;
    color: #fff;
    border-radius: 4px;
    height: auto;
}
.text-viewer p{
    padding-left: 2em;
    font-size: 15px;
    margin: 4% 0;
    position: relative;
    cursor: pointer;
    color: #eee;
    text-align: left!important;
}
.text-viewer p>i{
    position: absolute;
    left: 2%;
    top: 7%;
    bottom: 0;
    margin: auto;
    color: #fff;
}
.text-viewer h3{
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    padding-left: 1.4em;
    font-size: 2em;
    margin: 3% 0;
    position: relative;
}
.text-viewer h3>i{
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    top: 0;
    bottom: 0;
    color: #fff;
}


.contact-content .right{
    transition: all .2s linear;
    width: 60%;
    background: #fff;
    padding: 0 4.5%;
}
.contact-content .right h2{
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    padding-left: 1.5%;
    border-left: 5px solid #ff6500;
    margin: 3% 0;
    color: #222;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.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 .text{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #555;
    margin: 4% 0;
}
.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;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #092655;
}
.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 .fields p{
    font-size: 14px;
}
#msg{
    font-family: 'Roboto', sans-serif;
    height: 70px;
}
.contact .right form .field,
.contact .right form .fields .field{
    /* height: 100%; */
    width: 100%;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
    margin-bottom: 20px;
}
.contact .right form .name{
    margin-right: 10px;
}
.field textarea {
    font-family: 'Roboto', sans-serif;
    height: 70px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 1% 0;
    background: #fff;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 45px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 2.5px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 1% 0;
    background: #f4f4f4;
}
.contact .right form .field input:focus{
    background: #fff;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid #111;
}

.contact .right form .field label{
    font-size: 15px;
    color: #333;
}
.contact .right form .field input[type=radio]{
    height: auto;
    width: auto;
    cursor: pointer;
}
.contact .right form .field input[type=checkbox]{
    height: auto;
    width: auto;
    cursor: pointer;
}
.estante .field input{
    text-align: end;
}
.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:#00225a;
    border-radius: 0;
    
}
.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: 155px!important;
  height: 45px;
  outline: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #111;
  border: 2px solid #111;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 15px;
}
/******DATA CLIENT****/


/******DATA RODUCTS ***/

.data-product{
     position: relative; 
}
.data-product ol{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}
.data-product ol>li{
    position: relative;
}
.data-product ul{
    display: flex;
    list-style: none;
    flex-direction: row;
    grid-gap: 10px;
    justify-content: flex-end;
}
.data-product ul>li{


}
#e-puertas{
    position: absolute;
    top: 20%;
    bottom: 0;
    left: 0;
    margin: auto 0;
    right: 0;
    height: fit-content!important;
    width: 40%!important;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
    text-align: left!important;
}
#e-refac{
    position: absolute;
    top: -5px;
    bottom: auto;
    left: -50px;
    margin: auto 0;
    right: 0;
    height: fit-content;
    width: 35%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}

#e-refac-b{
    position: absolute;
    top: 15%;
    bottom: auto;
    left: auto;
    margin: auto 0;
    right: 0;
    height: fit-content;
    width: 33%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#estantes{
    position: absolute;
    top: -10%;
    bottom: 0;
    left: 0;
    margin: auto 0;
    right: 0;
    height: fit-content;
    width: 30%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#estantes-1{
    position: absolute;
    top: auto;
    bottom: 0;
    left: -15%;
    margin: 0 auto;
    right: 0;
    height: fit-content;
    width: 25%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#estantes-2{
    position: absolute;
    top: auto;
    bottom: -5%;
    left: auto;
    margin: 0 auto;
    right: 0;
    height: fit-content;
    width: 23%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#estantes-3{
    position: absolute;
    top: 0;
    bottom: auto;
    left: auto;
    margin: 0 auto;
    right: -5%;
    height: fit-content;
    width: 23%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#mesa-1, #mesa-2, #mesa-3, #mesa-4, #mesa-5{
    position: absolute;
    height: fit-content;
    width: 23%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#mesa-1{
    top: -10px;
    left: 0;
}
#mesa-2{
bottom: 5px;
right: 0;
}
#mesa-3{
right: 0;
top: 0;
bottom: 0;
margin: auto 0;
} 
#mesa-4{
top: 5%;
left: 25%;
width: 20%;
}#mesa-5{
top: 0;
right: 13%;
width: 17%;
}
#mesa-6{
top: 0;
right: 0;
bottom: 0;
margin: auto;
left: 0;
width: 23%;
}
#mesa-7{top: 0;right: 0;bottom: 0;margin: auto;left: 0;width: 65%;}

#micro-0, #micro-1, #micro-2, #micro-3, #micro-4{
    position: absolute;
    height: fit-content;
    width: 23%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#micro-0{
    top: 0;
    left: 0;
    width: 21%;
}
#micro-1{
    bottom: 0;
    right: 0;
    top: 0;
    margin: auto 0;
    width: 20%;
} #micro-2{
    bottom: 0;
    left: 30%;
    margin: 0 auto;
    width: 18%;
} #micro-3{
    right: 10%;
    bottom: -5%;
    width: 18%;
} #micro-4{
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50%;
    background: #fff;
}

#racks-0, #racks-1, #racks-2, #racks-3, 
    #racks-4, #racks-5, #racks-6, #racks-7, 
    #racks-8, #racks-9, #racks-10{
    position: absolute;
    height: fit-content;
    width: 23%;
    background: #fffe;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    border: 1px solid #ddd;
}
#racks-0{
    right: 5%;
    top: -10%;
    bottom: 0;
    margin: auto 0;
}
#racks-1{
    bottom: 5%;
    left: 7%;
    margin: auto 0;
}
#racks-2{
    right: 20%;
    bottom: 0;
}
#racks-3{
    top: 0;
    left: 0;
    right: 25%;
    margin: 0 auto;
}
#racks-4{
    right: 12%;
    bottom: -5%;
}
#racks-5{
    right: 10%;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
#racks-6{
    right: 0;
    bottom: 0;
    top: -15px;
    margin: auto 0;
    width: 35%;
}
#racks-7{
    top: 8%;
    width: 60%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#racks-8{
    bottom: 25%;
    right: -20%;
    top: 0;
    margin: auto 0;
    width: 30%;
}
#racks-9{
    right: -25%;
    bottom: 15%;
    width: 30%;
}
#racks-10{
    bottom: 20%;
    left: -5%;
    right: 0;
    margin: 0 auto;
    width: 33%;
}
.caja label{font-size: 10px;text-transform: uppercase;font-weight: bold;color: #555;width: 100%;display: inline-block;line-height: 1.2;font-size: 12px!important;}
.caja  input{height: 30px!important; margin:  0!important;text-align: end!important;border-radius: 3px!important;margin-top: 5px!important;}

.data-product img{
    position: relative;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.right form .button-area button>i{
font-size: 13px;
}
.right form .button-area button:hover{
  color: #111;
  background: none;
}
.shadow-end{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 0;
    background-image: url(../images/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-site{
    display: grid;
    grid-template-columns: 40% 60%;
}
.footer-site ul{
    padding: 0 10% 0 5%!important;
}
.footer-site ul>li{padding-left: 5%!important;font-size: 0.9em!important;color: #999!important;margin: 6% 0!important;}
.footer-site ul>li>i{left: -10px!important;}

.footer-site ul>li:hover{
    color: #ff5e14!important;
}
.contact-mail{
    position: relative;
    background-color: #111;
    border-radius: 4px;
    padding: 40px 30px;
    text-align: left;
    width: 85%;
    /* backdrop-filter: blur(5px); */
}
.contact-mail form{
    position: relative;
}
.contact-mail label{
    color: #f4f4f4;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    margin: 2% 0;
    font-size: 14px;
}
.contact-mail input{
        height: 50px;
        line-height: 50px;
        border: 1px solid #f4f4f4;
        background-color: #f4f4f4;
        border-radius: 1px;
        padding: 0 0 0 20px;
        border-radius: 20px;
        font-size: 13px;
        background-color: transparent;
        border: 2px solid #2f2e2e;
        margin: 2% 0;
        width: 100%;
        color: #fff;
}
.contact-mail button{
    
position: absolute;
    
top: 0;
    
bottom: -25%;
    
width: 40px;
    
height: 40px;
    
border-radius: 100%;
    
margin: auto 0;
    
right: 2%;
    
color: #fff;
    
background: #ff5e14;
    
text-decoration: none!important;
    
outline: none!important;
cursor: pointer;
}

/* footer section styling */
.end-col .ubi{
    color: #ff5e14!important;
}
footer{
    padding: 15px 23px 5px;
    color: #fff;
    text-align: center;
    z-index: 5;
    background: #161616;
    position: relative;
}
footer span {
    font-size: 13px;
    color: #999;
}
footer span a{
    color: crimson;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}
footer p{
    text-align: left;
    font-size: 1em;
    color: #ddd;
}
.end:first-child{
    padding: 4.5% 0;
}
.end{
    display: flex;
    width: 100%;
    padding: 1% 0;
}
.end-col{
    width: 33.3%;

}
.end-col img{
    width: 70%;
    margin:  0;
    cursor: pointer;
    opacity: 0.9;
    filter: grayscale(100%);
}
.end-col h5{
    font-size: 1.4em;
    text-align: left;
    border-left: 4px solid #ff6500;
    padding-left: 10px;
    margin: 5% 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10%;
}
.end-col ul{
    padding: 0 10% 0 4%;
    width: 100%;
    margin: 0;
    text-align: left;
    list-style: none;
    padding-bottom: 5%;
}
.end-col ul>li{
    margin: 5% 0;
    position: relative;
    padding-left: 2%;
    font-size: 15px;
    color: #9b9b9b;
    cursor: pointer;
}
.end-col ul>li:hover{
    color: #ff5e14;
}
.end-col ul>li>i{
    position: absolute;
    left: -5%;
    top: 10%;
    color: #ff6500;
}
#boton-resp{

}
    .desktop{
        display: block;

    }
    .mobil{
        display: none;
    }


/* responsive media query start */
@media (max-width: 2560px) {
    .about .about-content .left img {
        height: 700px;
        width: 100%;
        min-height: auto!important;
    }
    .about .about-content .left {
        width: 50%;
    }
    .about .about-content .right {
        width: 45%;
    }
    .navbar .max-width {
        max-width: 90%;
    }
}
@media (max-width: 1600px) {
    .about .about-content .left img {
        height: 500px;
        width: 100%;
    }
    .about .about-content .left {
        width: 40%;
    }
    .about .about-content .right {
        width: 55%;
    }
    .navbar .max-width {
        max-width: 100%;
    }
    .menu{
        grid-gap: 15px;
    }
}

@media (max-width: 1440px) {
    .other-sections{
        min-height: 350px!important;
    }
}
@media (max-width: 1290px) {
    .navbar .max-width {
        max-width: 100%;
        padding: 0;
    }
    .navbar .menu li a{
        font-size: 13px;
    }
}
@media (max-width: 1104px) {
    .head-0 {
        padding: 10px 20px;
    }
    .navbar .menu li a{
        font-size: 15px;
    }
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
    .navbar .logo::after{
        width: 35%;
    }
    .navbar .menu li a {
        font-size: 14px;
    }
    .navbar .menu li>a>button{
        width: 150px;
        font-size: 14px;
    }
    .menu{
        grid-gap: 5px;
    }
}
@media (max-width: 1024px) {
    .navbar .menu li a {
        font-size: 12px;
    }
}
.menu-btn .active{
    color: #fff!important;
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .navbar, .other .menu li a {
        color: #fafafa!important;
    }
    .navbar .logo::after{
        width: 50%;
    }
    .about .about-content ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .about{
        height: auto;
        padding-top: 50px;
    }
    .fondo-cat{
        width: 100%;
        height: 150px!important;
    }
    .servs{
        grid-template-columns: 100%;
        grid-auto-flow: revert;
        grid-column: revert;
    }
    .tiles-services{
        width: 100%;
        border-radius: 0;
        padding: 0 5%;
    }
    .servs .serv-right h2 {
        margin: 10% 0 0;
        padding: 0 4%;
        font-size: 1.7em;
    }
    .navbar .menu li a{
        color: #fff!important;
        width: 100%;
        position: relative;
    }
    .navbar .menu li>a>i{
        position: absolute;
        right: 5.5%;
        top: 5%;
        transition: all 0.3s ease;
        color: #fff;
    }
    .rotate-i{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }

    .rotate-i-0{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }
    #cont-video {
        width: 100%;
    }

    .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;*/
    }
    .navbar .desktop{
        width: 100%;
    }
    .navbar .menu{
        justify-content: space-evenly;
    }
    .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;
    }
    .carousel-serv .card{
        /* height: 500px; */
    }
    .slide-1{
        background-image: url(../images/slide/t-1.jpg);
    }
    .slide-2{
        background-image: url(../images/slide/t-2.jpg);
    }
    .slide-3{
        background-image: url(../images/new/con-mb-3.jpg);
    }
    .slide-4{
        background-image: url(../images/new/entre-mob-4.jpg);
    }
    .slide-5{
        background-image: url(../images/slide/auto-1.jpg);
    }
    .banner-m{
        background-image: url(../images/slide/track-m.jpg);
    }
    footer{
        /* background-image: url(../images/slide/b-0.jpg); */
    }
    .shadow-end{
        background: none;
    }

}
@media (max-width: 947px){
    .home-content{
        width: 100%;
    }
    .menu-btn{
        display: block;
        z-index: 999;
        align-items: center;
        align-content: center;
        align-self: center;
    }
    .dropdown-w-one .menu-btn i.active:before{
        content: "\f107";
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .desktop{
        display: none;
    }    
    .mobil{
        display: block;
     }    
    .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;
        height: auto;
    }
    .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%;
    }
    .video-desc{
        height: 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;
        background-size: cover;
        padding: 100px 0;
        height: 620px;
    }
    .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;
    }
    #ajust-call i{
        margin: 0 5px;
    }
    .navbar{
        background: #fff;
        padding: 0;
    }
    .navbar i{
        color: #00225a;
    }
    .navbar.sticky i{
        color: #00225a;
    }
    .text-view{
        display: none;
    }.home .home-content .text-1 {
        font-size: 17px;
    }
    .popup.show {
        width: 100%;
        height: 75%;
    }
}
@media (max-width: 780px) {
    .home {
        height: 780px;
    }
    #resize{
        width: 0!important;
    }
    .navbar .max-width{
        max-width: 90%;
    }
    .video{
        padding-top: 30px;
        height: 750px;
        min-height: 700px;
    }
    .video .max-width{
        flex-direction: column;
    }
    .video::after {
        width: 100%;
        height: 50%;
    }
    .video::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    .video .colum-left {
        width: 100%;
    }
    .video .colum-left h3{
        font-size: 2.9em;
    }
    .video .colum-left p{
        font-size: 1em;
    }
    .colums-check{
        margin: 2% 0 4%;
        width: 100%;
    }
    .colums-check ul>li{
        font-size: 15px;
    }
    .video .colum-left button{
        margin-top: 10px;
        font-size: 1em;
    }
    .in-button{
        width: 85px;
        height: 85px;
    }
    .in-button i {
        font-size: 1.5em;
    }
    #products{
        padding-top: 0;
    }
    .tiles-services{
        height: 100%;
    }
    .popup.show {
        width: 100%;
        height: fit-content;
        border-radius: 0;
    }
    .contact{
        height: auto;
    }
    .contact-content .left {
        width: 100%!important;
    }
    .contact-content .right {
        width: 100%!important;
    }

    .contact .contact-content {
        position: relative;
        width: 100%;
        top: 0;
        height: auto;
        flex-direction: column;
    }
    .data-product ol{
        grid-template-columns: repeat(1, 1fr)!important;
    }
    #estantes-1{
    width: 30%;
    }
    #estantes-2{
        width: 30%;
        bottom: 10%;
    }
    .microrack-seg ol{
    grid-template-columns: repeat(3, 1fr)!important;
    }
    #micro-4{
        width: 90%;
        position: relative;
    }
    .slide-medium{
        background-image: url(../images/slide/track-m.jpg);
    }
}
@media (max-width: 690px) {
    .max-width{
        padding: 0 25px;
    }
    .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: 195px;
    }
    .column{
        width: 100%!important;
    }
    .navbar .menu li a{
        font-size: 22px;
    }
    .navbar .sticky{
        padding: 0;
    }
    .end:last-child{
        justify-content: center;
        text-align: center!important;
        align-items: center;
        align-content: center;
    }
    .contact-mail{
        width: 100%;
    }
    .contact .contact-content{
        position: relative;
        width: 100%;
        top: 0;
        height: auto;
        flex-direction: column-reverse;
    }
    .contact{
        height: auto;
    }
    .text-viewer{
        width: 100%;
        border-radius: 0;
        bottom: 0;
    }
    .contact-content .right h2 {
        margin: 2% 0 10%;
        font-size: 1.5em;
        border-left: 4px solid #ff6500;
        letter-spacing: 0;
    }

    .right form .button-area button {
        width: 130px!important;
        font-size: 15px;
    }
    #mesa-1, #mesa-2, #mesa-3, #mesa-4, #mesa-5 {
        position: relative;
        height: fit-content;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: 3% 0;
        padding: 5%;
    }
    #micro-0, #micro-1, #micro-2, #micro-3, #micro-4, #racks-0, #racks-1, #racks-2, #racks-3, #racks-4, #racks-5, #racks-6, #racks-7, #racks-8, #racks-9, #racks-10{
        position: relative;
        height: fit-content;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: 3% 0;
        padding: 5%;
    }
    .caja  input{
        height: 40px!important;
    }
    .microrack-seg ol {
        grid-template-columns: repeat(2, 1fr)!important;
    }

}
@media (max-width: 500px) {
    section{
        padding: 50px 0;
    }
    .column{
        width: 100%!important;
    }
    .home .home-content .text-2{
        font-size: 40px;
    }
    .home .home-content .text-3{
        font-size: 17px;
    }
    .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;
    }
    .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: 14px;
    }
    .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: 14px;
        margin: 5% 0;
    }
    .about .about-content .left img {
        height: 400px;
        width: 100%;
        min-height: 475px;
    }
    .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;
    }
    .carousel-serv .card img{
        padding: 0;
        object-fit: contain;
    }
}   
@media (max-width: 420px) {

    .video .colum-left h3{
        font-size: 2.3em;
        text-shadow: none;
        letter-spacing: 0;
    }
    .video .colum-left p{
        font-size: 15px;
    }
    .colums-check{
        width: 100%;
        margin-top: 5%;
    }
    .colums-check ul>li{
        font-size: 14px;
    }
    .video .colum-left button {
        font-size: 15px;
    }
}

@media (max-width: 380px) {

    .footer-site{

        grid-template-columns: 1fr;
    }
    .scrolled.fade-in-bottom {
        flex-direction: column;
    }
}
@media (max-width: 360px) {
    .head-0 {
        padding: 0.8rem 0;
    }
    .footer-site{

    grid-template-columns: 1fr;
    }
    
}