@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600&display=swap');
:root{
    --bg-primary: #F4F4F4;
    --bg-secondary: #FFFFFF;
    --bg-black: #202124;
    --primary: #426DBA;
    --primary-hover: #1B8CBE;
    --primary-light-2: #1b8dbe23;
    --primary-light: #F3F4FB;
    --border: #41464F;
    --text-primary: #777777;
    --yellow: #FDCC15;
    --blue: #1A3761;
    --green: #A9C24A;
    --white: #FFFFFF;
}
/* GENERALES */
*{
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 500;
}
p{
    color: var(--text-primary);
}
.button:disabled,
.button[disabled]{
  background-color: var(--bg-black) !important;
  color: var(--white) !important;
  cursor: not-allowed !important;
  pointer-events: all !important;
}
.subtitle__text{
    font-size: 34px;
    font-weight: 400;
}
.link{
    user-select: none;
    cursor: pointer;
}
.link__primary{
    color: var(--white);
}
.link__primary:hover{
    color: var(--primary-hover) !important;
    transition: 0.2s;
    text-decoration: none;
}
.bg__primary{
    background-color: var(--bg-primary);
}
.bg__secondary{
    background-color: var(--bg-secondary);
}
.bg__black{
    background-color: var(--bg-black);
    color: var(--white);
}
.bg__blue{
    background-color: var(--primary);
    color: var(--white);
}
.bg__blue p{
    color: var(--white);
}
.bg__black-gradient{
    background: linear-gradient(180deg, var(--bg-black) 60%, var(--border) 100%);
}
.bg__blue{
    background-color: var(--primary);
    color: var(--white);
}
.bg__yellow{
    background-color: var(--yellow);
}
.color__green{
    color: var(--green);
}
.color__blue{
    color: var(--blue);
}
.color__yellow{
    color: var(--yellow);
}
.img__large{
    width: 100%;
    height: auto;
}
.button{
    max-height: 36px;
    display: inline-block;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .5rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.button__primary{
    background-color: var(--primary);
    color: var(--white);
}
.button__primary:hover{
    color: var(--white);
    background-color: var(--primary-hover);
    transition: 0.2s;
    text-decoration: none;
}
.button:active{
    outline: none;
    border: none;
}
.button:focus{
    outline: none;
    border: none;
}
.img__circle{
    border-radius: 50%;
}
.show__md{
    display: none;
}
.text__shadow{
    text-shadow: var(--border) 0.1em 0.1em 0.2em;
}
.hl__word i{
    font-style: normal;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.hl__word i:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    bottom: 0;
    border-bottom: 4px solid var(--primary-hover);
    z-index: 1;
    border-radius: 2px;
}
/* MENU */
.menu__list{
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu__list .menu__list-item{
    display: inline-block;
}
/* CONTAINERS */
.section__container{
    padding: 3rem 0;
}
/* NAVBAR */
.navbar__section{
    position: relative;
}
.navbar__section *{
    color: var(--white);
}
#navbar{
    position: absolute;
    color: var(--white);
    width: 100%;
    background-color: rgba(0,0,0,0.2);
}
.navbar__solid{
    background-color: var(--bg-black);
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: rgba(99, 99, 99, 0.5) 0px 4px 10px 0px;
}
#navbar .navbar__top{
    font-size: 0.8rem;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
#navbar .navbar__bottom{
    height: 70px;
    width: 100%;
}
.navbar__bottom-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
#navbar .navbar__bottom .nav__brand{
    display: flex;
    align-items: center;
}
#navbar .navbar__bottom .nav__brand img{
    height: 35px;
    width: 35px;
}
#navbar .navbar__bottom .nav__brand span{
    user-select: none;
    margin-left: .5rem;
    font-size: 1.4rem;
    font-weight: 600;
}
#navbar .menu__list .menu__list-item{
    margin-left: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.button__menu-mobile{
    font-size: 20px;
}
.menu__list-mobile{
    margin-top: 1rem;
    display: none;
    height: 100vh;
}
.menu__list-mobile .menu__list .menu__list-item{
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem !important;
}
.menu__list-mobile .menu__list .social__link i{
    color: var(--border);
}
.brand{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu__mobile-open{
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 10;
    height: 100vh !important;
    background-color: var(--bg-black) !important;
    transition: 0.2s;
}
.menu__mobile-open .navbar__bottom-content{
    display: block;
    padding-top: 1.1rem;
}
.privacidad__container p, ul > li, .info{
    font-size: 14px;
    color: var(--text-primary);
}
.privacidad__container hr{
    border-color: var(--green);
}
.privacidad__container h5{
    color: var(--blue);
}
/* 404 */
#error__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/computer-2-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 90vh;
    min-height: 380px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* AVISO DE PRIVACIDAD */
#avisoPrivacidad__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/computer-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 50vh;
    min-height: 300px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* SERVICIOS */
#servicios__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/typing-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 70vh;
    min-height: 380px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* CONTACTO */
#contacto__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/office-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 70vh;
    min-height: 380px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* PRODUCT */
#product__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/coding-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 60vh;
    min-height: 300px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* PRODUCT */
#tracknet__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/cajero.jpeg');
    background-position: center;
    background-size: cover;
    height: 60vh;
    min-height: 300px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* CASOS DE EXITO */
#casosDeExito__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/desk-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 70vh;
    min-height: 380px;
    color: var(--white);
    display: flex;
    align-items: center;
}
/* NOSOTROS */
#nosotros__hl{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/wordpress-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 70vh;
    min-height: 380px;
    color: var(--white);
    display: flex;
    align-items: center;
}
.section__about-1{
    background-position: bottom;
    background-repeat: no-repeat;
    background-image:url('../assets/bg/wave.png');
    background-size: auto,2000px 640px,auto;
    background-repeat: repeat-x,no-repeat;
}
/* HOME */
#home__hl{
    background-image:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../assets/img/laptop-2-1280.jpg');
    background-position: center;
    background-size: cover;
    height: 90vh;
    min-height: 400px;
    color: var(--white);
    display: flex;
    align-items: center;
}
.hl__message{
    text-shadow: var(--border) 0.1em 0.1em 0.2em;
    user-select: none;
}
.hl__message p{
    color: var(--white);
}
.title__word{
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}
.about__us-container{
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../assets/img/desk-640.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__us-container p{
    color: white;
    font-size: 1.2rem;
    text-shadow: var(--border) 0.1em 0.1em 0.2em;
}
/* APLICACIONES */
.section__aplication{
    display: flex;
    align-items: center;
}
.section__aplication .img__circle{
    height: 200px;
    width: 200px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.leng__img{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.leng__img img{
    height: 60px;
    width: auto;
    margin-right: 1rem;
    overflow-x: scroll;
}
.leng__img::-webkit-scrollbar{
    display: none;
}
.section__bg-gradient{
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--primary-light) 100%);
}
.section__bg-gradient-2{
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--primary-light-2) 100%);
}
/* SERVICIOS */
.services__card{
    border: none;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.card__img{
    height: 110px;
    width: 110px;
}
.service__item{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service__item img{
    margin-right: .5rem;
}
/* CERTIFICACIONES */
.cert__img img{
    height: 40px;
    width: auto;
    margin-right: 1rem;
}
.cert__img{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow-x: scroll;
}
.cert__img::-webkit-scrollbar{
    display: none;
}
/* CLIENTES */
.clients__img img{
    height: 40px;
    width: auto;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
/* FOOTER */
#footer .footer__top {
    padding: 2rem 0;
}
.img__md{
    height: 12rem;
    width: 12rem;
    object-fit: cover;
}
.footer__brand span{
    font-size: 22px;
}
.footer__brand span{
    font-size: 22px;
}
.footer__brand p{
    color: var(--white);
}
.footer__logo{
    height: 3rem;
    width: 3rem;
}
.footer__bottom-nav{
    font-size: 0.8rem;
    padding: .25rem 0;
}
.social__link{
    margin-right: 1.2rem;
    display: inline !important;
    border-bottom: none !important;
}
.social__link i {
    color: var(--yellow);
    font-size: 30px;
}
.social__link i:hover {
    color: var(--green);
    transition: 0.2s;
}
@media (max-width: 768px) {
    .hide__md {
      display: none;
    }
    .show__md{
        display: block;
    }
    .brand{
        width: 100%;
    }
}
@media (max-width: 600px) {
    .hide__sm {
      display: none;
    }
    #footer{
        padding: 2rem 0;
    }
    .cert__img{
        justify-content: flex-start;
    }
    /* CONTACTO */
    #contacto__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/office-640.jpg');
    }
    /* CASOS DE EXITO */
    #casosDeExito__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/desk-640.jpg');
    }
    /* NOSOTROS */
    #nosotros__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/wordpress-640.jpg');
    }
    /* HOME */
    #home__hl{
        background-image:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../assets/img/laptop-2-640.jpg');
    }
    /* 404 */
    #error__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/computer-2-640.jpg');
    }
    /* SERVICIOS */
    #servicios__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/typing-640.jpg');
    }
    /* PRODUCT */
    #product__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/coding-640.jpg');
    }
    /* AVISO DE PRIVACIDAD */
    #avisoPrivacidad__hl{
        background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/computer-640.jpg');
    }
}