:root{
    --gris: #4c4c4c;
    --white: #eaeaea;
    --yellow: #ffc83b;
    --offset: 0px;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    line-height: 125%;
}

.header.header-mobile {
    display: none;
}

.btnMenu {
    width: 42px;
    height: 42px;
    padding: 8px 6px;
    border-radius: 4px;
    position: relative;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btnMenu.ver {
    opacity: 1;
    pointer-events: all;
}

.btnMenu span {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    display: block;
    transition: .2s cubic-bezier(0, 0, 0, 1) all;
    transform-origin: center;
}

.btnMenu span:nth-child(2) {
    margin: 5px 0;
}

.btnMenu.on span:first-child {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.btnMenu.on span:nth-child(2) {
    opacity: 0;
}

.btnMenu.on span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

.menu-custom-mobile {
    background-color: var(--gris);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 10;
    transform: translateY(-100%);
    transition: all ease .8s;
}

.menu-custom-mobile.mostrar {
    transform: translateY(0);
}

.menu-custom-mobile ul li a {
    color: var(--white);
    font-size: 18px;
    opacity: 0.6;
    transition: all ease .2s;
    font-weight: 400;
    text-transform: uppercase;
}

.menu-custom-mobile ul li{
    list-style: none;
}

.menu-custom-mobile ul .link-desktop.active a {
    opacity: 1;
}

.link-mobile-custom{
    transition: all ease .3s;
    transform: translate(0)
}

.link-mobile-custom.active {
    transform: translate(20px);
}

.link-mobile-custom.active a{
    font-weight: 800 !important;
}

.menu-custom-mobile ul li a:hover {
    color: var(--white);
    text-decoration: none;
    opacity: 1;
}

.menu-custom-mobile .nav-mobile {
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;    /* justify-content: center; */
    justify-content: space-between;    
    opacity: 0;
    transition: all ease .4s;
    transition-delay: 0.8s;
    pointer-events: none;
}

.menu-custom-mobile .nav-mobile.mostrar {
    opacity: 1;
    pointer-events: all;
}

.nav-mobile .subitem {
    font-size: 16px;
    margin-left: 15px;
    padding-top: 0;
    padding-bottom: 5px;
}

.header-mobile {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--gris);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 1px 10px 16px -12px rgba(52, 52, 52, 0.75);
    -webkit-box-shadow: 1px 10px 16px -12px rgba(52, 52, 52, 0.75);
    -moz-box-shadow: 1px 10px 16px -12px rgba(52, 52, 52);
}

.header-mobile img {
    max-height: 40px !important;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(103%) contrast(101%);
}

.header-mobile.open {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.nav-desktop img.logo, 
.nav-mobile img.logo{
    max-height: 100%;
    filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

.nav-desktop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 15px 60px;    
    display: flex;
    align-items: center;
    justify-content: space-between;    
    z-index: 22;
}

.nav-desktop.scrollNav {
    background-color: var(--gris);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    justify-content: space-between;
    box-shadow: 1px 10px 16px -12px rgba(52, 52, 52, 0.75);
    -webkit-box-shadow: 1px 10px 16px -12px rgba(52, 52, 52, 0.75);
    -moz-box-shadow: 1px 10px 16px -12px rgba(52, 52, 52);
}

.nav-desktop .logo-header {
    height: 60px;
    display: none;
}

.nav-desktop .logo-header.mostrar {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.nav-desktop ul li {
    height: 25px;
    display: flex;
    align-items: center;
}

.nav-desktop ul li a {
    text-transform: uppercase;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.nav-desktop ul li .link-desktop.active {
    font-weight: 800;
}

.nav-desktop ul li:not(:last-child) {
    border-right: solid 1px var(--text-green) !important;
}

.nav-desktop ul li.br-0 {
    border-right: 0 !important;
}

.nav-desktop ul li .link-desktop[data-toggle="dropdown"] {
    background-color: #011f21;
    color: #fff;
    border-radius: 4px;
}

.nav-desktop .dropdown-menu {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 5px 0 0;
    border-radius: 0;
}

.nav-desktop .dropdown-menu a {
    padding: 6px 22px;
    color: #fff;
    background-color: #011f21;
}

.nav-desktop .dropdown-menu a:first-child {
    border-bottom: solid 1px #fff;
    border-radius: 4px 4px 0 0;
}

.nav-desktop .dropdown-menu a:last-child {
    border-radius: 0 0 4px 4px;
    border-bottom: solid 1px #fff;
}

.nav-desktop .dropdown-menu a:hover {
    background-color: var(--green);
}

.nav-desktop.scrollNav .dropdown-menu {
    padding: 0 10px;
    margin-right: 45px;
}

/*HOME*/

#home{
    background: url(../assets/images/bg-hero.png);
    background-position: center;
    background-size: cover;
    padding: 100px 60px 80px 60px;    
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

#home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(34, 34, 34, 1) 10%, rgba(34, 34, 34, 0.8) 50%, rgba(34, 34, 34, 0) 100%), linear-gradient(180deg, rgba(34, 34, 34, 1) 2%, rgba(34, 34, 34, 0.5) 10%, rgba(34, 34, 34, 0) 18%);
}

#home .btn{
    width: fit-content !important;
    color: var(--gris) !important;
    transition: all ease .4s;
}

#home .btn:hover{
    color: var(--white) !important;
}


.title {
    padding-top: 40px;
    color: #EEEEEE;
    width: 100%;
}

.title h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;    
    margin-bottom: 30px;
}

.title h2 span{
    color: var(--yellow);
}

.typewriter {
    font-size: 70px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    line-height: 90px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    min-height: 90px;
    margin: 0;
}

.cursor {
    width: 2px;
    height: 1em;
    background-color: var(--white)60;
    animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}


.titulares {
    font-size: 60px;
    text-transform: uppercase;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 800;
    color: transparent;
    opacity: 0.6;
    -webkit-text-stroke: 1px var(--gris);
}

.scroll-downs {
    position: absolute;
    bottom: 70px;
    left: 0;
    margin: 0 auto;
    width: 34px;
    height: auto;
    z-index: 3;
    right: 0;
}

.mousey {
    width: 3px;
    padding: 10px 10px;
    height: 17px;
    border: 2px solid rgba(227, 227, 227, 0.8);
    border-radius: 30px;
    opacity: 0.75;
    box-sizing: content-box;
    animation-duration: 3s;
    animation-name: inicio;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: rgba(227, 227, 227, 0.8);
    opacity: 0.75;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes inicio {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }

}

/*     NOSOTROS      */
.nosotrosCont {
    width: 100%;
    background-color: var(--white);
    display: flex;
    padding: 100px 60px 80px 60px;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 44px);
    position: relative;
}

.nosotrosCont::after{
    content: url(../assets/images/misce-gris.png);
    bottom: -50px;
    right: 18%;
    position: absolute;
    transform: scale(0.5);
    z-index: 2;
}

.nosotrosCont .triangle{
    position: absolute;
    background-color: var(--yellow);
    width: 40%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 43% 100%);
}

#nosotros .titulares{
    text-align: left !important;
    margin-left: 0;
    position: relative;
    -webkit-text-stroke: 1px var(--gris);

}

#nosotros .titulares::before{
    position: absolute;
    content: "";
    background-color: var(--yellow);
    height: 4px;
    width: 635px;
    bottom: -5px;
    left: -300px;
}

.nosotrosCont  p{
    color: var(--gris);
    font-weight: 400;
    font-size: 20px;
    max-width: 490px;
}


.marquee {
    background: var(--yellow);
    color: white;
    transition: all 0.6s;
    font-size: 2vw;
    font-line-height: 60%;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
}
.marquee.running .marquee-inner {
    animation-play-state: running;
}
.marquee:hover .marquee-inner {
    animation-play-state: running;
}
.marquee span {
    padding: 0 0.15em;
    white-space: nowrap;
}

.marquee-inner {
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 10s linear infinite;
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(var(--move-initial));
    }
    100% {
        transform: translateX(var(--move-final));
    }
}



/*     SERVICIOS      */
.serviciosCont {
    min-height: 90vh;
    width: 100%;
    background-color: var(--white);
    display: flex;
    padding: 100px 60px 80px 60px;
    flex-direction: column;
}

.serviciosCont .cards-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.serviciosCont .card-servicio{
    background-color: var(--gris);
    border-radius: 15px;
    width: 340px;
    height: 220px;
    margin: 30px;
}

.serviciosCont .card-servicio .header{
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: solid 1px var(--yellow);
}

.serviciosCont .card-servicio .header .circle{
    width: 10px;
    height: 10px;
    border: solid 1px var(--yellow);
    margin-right: 10px;
    border-radius: 50%;
}

.serviciosCont .card-servicio .body{
    padding: 25px 20px;
}

.serviciosCont .card-servicio .body h3{
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
}

.serviciosCont .card-servicio .body h3 span{
    color: var(--yellow);
    font-weight: 800;
}

.serviciosCont .card-servicio .body p{
    color: var(--white);
    font-size: 15px;
    line-height: 125%;
}


/*     CÓMO HACEMOS      */
.como {
    min-height: 90vh;
    width: 100%;
    background-color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 60px 80px 60px;
    flex-direction: column;
    position: relative;
}

.como::after{
    position: absolute;
    content: url(../assets/images/misce-amarillo.png);
    top: -120px;
    right: -80px;
    transform: scale(0.7);
}

.como h2{
    -webkit-text-stroke: 0.5px var(--white);
    color: transparent; 
    font-size: 60px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.como .card{
    background-color: #2d2d2d;
    border-radius: 20px !important;
    padding: 50px 40px 40px 40px;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.como .card::after{
    position: absolute;
    content: '1.';
    -webkit-text-stroke: 1px var(--yellow);
    color: transparent; 
    font-size: 85px;
    font-weight: 900;
    top: -75px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    
}

.como .card.c02::after{
    content: '2.';
}

.como .card.c03::after{
    content: '3.';
}

.como .card h5{
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--yellow);
    font-size: 20px;
    text-transform: uppercase;
}

.como .card p{
    color: var(--white);
    margin-bottom: 0;
    font-size: 18px;
    line-height: 115%;
}




/*     PROYECTOS      */
.proyectos {
    min-height: 100vh;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    padding: 100px 60px 80px 60px;
    flex-direction: column;
    overflow: hidden;
}

.proyectos .cards-container{
    max-width: 850px;
    margin: 0 auto;
}

.proyectos .card {
    display: flex;
    width: 100%;
    height: auto;   
    padding: 0; 
    overflow: hidden;
    border: solid 1px #00000030 !important;
    border-radius: 15px !important;
    margin-bottom: 50px;
}


.contImg{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 !important;
    overflow: hidden;
}

.contImg a{
    height: 100%;
    width: 100%;
}

.imgCard{
    width: 100%;
    height: 100%;
    transition: all ease 0.3s;
    cursor: pointer;
    object-fit: cover !important;
}

.imgCard:hover {
    transform: scale(1.05);
    filter: grayscale(100%);
}

.descrip-card{
    padding: 50px 30px !important;
}

.descrip-card h4 {
    font-size: 24px;
    border-bottom: solid 2px var(--yellow);
    margin-bottom: 10px;
    line-height: 115%;
    padding-bottom: 7px;
    font-weight: 800;
    color: var(--gris);
    opacity: 0.6;
}

.descrip-card p {
    line-height: 130% !important;
    font-size: 15px;
    margin-bottom: 35px;
    font-weight: 400;
}


.btn-card {
    padding: 8px 13px;
    text-decoration: none;
    background-color:var(--yellow);
    border: 2px solid var(--yellow);
    font-size: 13px;
    cursor: pointer;
    color: var(--gris) ;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    margin-right: 5px;
    transition: all ease .3s;
}


.btn-card:hover {
    background-color: transparent;
    color: #303841 !important;
    text-decoration: none;
}

#proyectos ul{
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0 !important;
}

#proyectos ul li{
    margin: 0 8px;
}

#proyectos ul li .nav-link{
    border: solid 1px var(--gris);
    font-weight: 600;
    color: var(--gris);

}

#proyectos ul li .nav-link.active{
    background-color: var(--yellow);
    color: var(--gris);
}


/*     CONTACTO - FOOTER     */

.contacto{
    background-color: #343434;
    padding: 100px 60px 80px 60px;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contacto::before{
    position: absolute;
    left: -170px;
    bottom: -50px;
    opacity: 0.6;
    content: url(../assets/images/misce-blanco.png);
    transform: scale(0.5);
}

.contacto .titulares{
    color: transparent;
    -webkit-text-stroke: 1px var(--yellow);
    opacity: 1 !important;
}


.btn {
    background-color: var(--yellow) !important;
    border: solid 2px var(--yellow) !important;
    width: 120px !important;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 14px !important;
    line-height: 14px;
    color: var(--white) !important;
    text-align: center;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all ease .3s !important;
    margin: 0 auto;
}

.btn:hover {
    background-color:transparent !important;
  
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.info p.uppercase{
    font-weight: 600;
    margin-bottom: 20px !important;

}

.info p.uppercase span{
    color: var(--yellow);
}

.info a, .info p{
    color: var(--white);
    font-size: 17px;
    transition: all ease .3s;
    margin-bottom: 0 !important;
}

.info a:hover{
    color: var(--yellow);
    text-decoration: none !important;
}

footer {
    display: flex;
    background-color: #000000;
    padding: 15px 60px;
    width: 100%;
}

footer p{
    text-align: center;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    color: var(--white);
    text-transform: none !important;
    font-size: 12px;
    transition: all ease .3s;
}


footer a:hover{
    color: var(--yellow) !important;
    text-decoration: none;
}

.frente{
    position: relative;
    z-index: 3;
}

.contacto .links h3{
    text-align: center;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
    margin-right: 5px;
}

.contacto .links{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px  0 20px;
    border-top: solid 1px #ffffff60;
    margin: 25px auto 15px;
    width: fit-content;
}

.contacto .links a {
    width: 25px;
    height: 25px;
    margin: 0 5px;
}

.contacto .links a svg{
    fill: var(--yellow);
    transition: all ease .3s;
    max-width: 100%;
    max-height: 100%;
}

.contacto .links a:hover svg {
    fill: var(--white);
}

.vibrate {
	-webkit-animation: vibrate 3s linear infinite both;
	        animation: vibrate 3s linear infinite both;
}

@-webkit-keyframes vibrate {
    0% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
    20% {
      -webkit-transform: translate(-2px, 2px);
              transform: translate(-2px, 2px);
    }
    40% {
      -webkit-transform: translate(-2px, -2px);
              transform: translate(-2px, -2px);
    }
    60% {
      -webkit-transform: translate(2px, 2px);
              transform: translate(2px, 2px);
    }
    80% {
      -webkit-transform: translate(2px, -2px);
              transform: translate(2px, -2px);
    }
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
  }
  @keyframes vibrate {
    0% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
    20% {
      -webkit-transform: translate(-2px, 2px);
              transform: translate(-2px, 2px);
    }
    40% {
      -webkit-transform: translate(-2px, -2px);
              transform: translate(-2px, -2px);
    }
    60% {
      -webkit-transform: translate(2px, 2px);
              transform: translate(2px, 2px);
    }
    80% {
      -webkit-transform: translate(2px, -2px);
              transform: translate(2px, -2px);
    }
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
    }
  }



@media screen and (max-width:991.5px){
    .nav-desktop {
        display: none;
    }

    .header.header-mobile {
        display: flex;
        justify-content: space-between;
    }

    .menu-custom-mobile .nav-mobile {
        padding: 95px 40px 10px 40px;
    }

    .menu-custom-mobile {
        padding: 0;
        height: 100vh !important;
    }

    .menu-custom-mobile ul li a {
        opacity: 1;
    }

    .header-ext .btnMenu.on .line-burguer,
    .header-ext.change .line-burguer {
        background-color: var(--white) !important;
    }

    .header-ext .logo.on-logo {
        filter: invert(100%) sepia(29%) saturate(0%) hue-rotate(141deg) brightness(104%) contrast(105%) !important;
    }

    .title h3{
        text-align: center;
        font-size: 2rem;
    }

    .title h2 {
        font-size: 1.5rem;
    }

    .title .dev{
        height: 40px;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .title .dev h1 {
        font-size: 1.4rem;
    }

    .i-skill{
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }

    .i-skill i{
        font-size: 2rem;
    }

    #home .title{
        margin-bottom: 30px;
    }

    .img-splash img {
        width: 100%;
        max-width: 250px;
    }


    .nosotros p{
        font-size: 15px;
    }

    .contSkill .titulares{
        margin-left: 0 !important;
    }

    .header-mobile img.logo {
        max-height: 100%;
        width: 90px;
    }

    .menu-custom-mobile .nav-mobile {
        justify-content: flex-start;
    }

    .mobile-ul{
        padding-left: 0;
    }

    .mobile-ul li{
        display: flex;
        align-items: center;
        transition: all ease .3s;
    }

    .mobile-ul li svg{
        fill: var(--yellow);
        width: 15px;
        margin-right: 10px;
        transition: all ease .3s;
        pointer-events: none;
    }

    .link-desktop{
        padding-left: 0 !important;
    }

    .como .card::after {
        font-size: 65px;
        top: -55px;
    }

    .como .card h5 {
        font-size: 18px;
    }

    .como .card p {
        font-size: 16px;
    }

    .como h2 {
        margin-bottom: 40px;
    }
    
    .serviciosCont .col-lg-6{
        display: flex;
        justify-content: center;
    }

    .como .card {
        padding: 50px 20px 40px 20px;
        margin: 30px 10px;
    }

    .serviciosCont .card-servicio {
        background-color: var(--gris);
        border-radius: 15px;
        width: 280px;
        height: 220px;
        margin: 20px;
    }

    #home {
        min-height: calc(100vh - 70px);
    }


}

@media screen and (max-width:767.5px){
    .descrip-card{
        padding: 40px !important;
    }


    .card02 .row{
        flex-direction: column-reverse;
    }

    form{
        margin-bottom: 40px;
    }

    .typewriter {
        font-size: 60px;
        line-height: 65%;
        min-height: fit-content;
        margin-bottom: 5px;
    }

    #home::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(34, 34, 34, 1) 10%, rgba(34, 34, 34, 0.8) 60%, rgba(34, 34, 34, 0.7) 100%), linear-gradient(180deg, rgba(34, 34, 34, 1) 2%, rgba(34, 34, 34, 0.5) 10%, rgba(34, 34, 34, 0) 18%);
    }

    .serviciosCont .card-servicio {
        width: 220px;
        height: 240px;
        margin: 20px;
    }
}

@media screen and (max-width: 650px){
    .serviciosCont .card-servicio {
        width: 100%;
        height: fit-content;
    }

    #proyectos ul li {
        margin: 8px;
    }
}

@media screen and (max-width: 576px){
    #home{
        padding: 100px 30px 80px 30px;
    }

    .nosotrosCont,
    .proyectos,
    .contacto, 
    .serviciosCont,
    .como{
        padding: 60px 30px 70px 30px;
    }

    .como .card::after {
        font-size: 50px;
        top: -40px;
    }

    .como .card {
        max-width: 100%;
    }

    .como::after {
        top: -100px;
        right: initial;
        left: initial;
        transform: scale(0.4);
        margin: 0 auto;
    }

    .contSkill {
        padding: 15px 30px 80px 30px;
    }

    .serviciosCont .card-servicio .body h3 {
        font-size: 17px;
    }

    .serviciosCont .card-servicio .body p {
        font-size: 14px;
    }

    


    .nosotrosCont .skill, 
    .nosotrosCont .col-lg-3,
    .nosotrosCont .col-sm-12,
    .nosotrosCont .col-md-4,
    .contacto .col-lg-6,
    .contacto .col-md-6,
    .contacto .col-sm-12{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-mobile{
        padding: 0 30px;
    }

    form {
        padding: 25px 15px;
    }

    .typewriter {
        font-size: 40px;
        line-height: 25%;
    }

    .nosotrosCont::after {
        bottom: -120px;
        right: -95px;
        transform: scale(0.2);
    }

    #nosotros .titulares {
        margin-bottom: 30px;
    }

    #nosotros .titulares::before {
        width: 250px;
        bottom: -5px;
        left: 0 !important;
        right: 0;
        margin: 0 auto !important;
    }

    .marquee{
        font-size: 3.5vw !important;
    }

    #nosotros .titulares {
        text-align: center !important;
    }

    .nosotrosCont p {
        text-align: center;
    }

    .nosotrosCont {
        min-height: fit-content;
    }

    .titulares {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .nosotrosCont p {
        font-size: 15px;
    }

    .nosotrosCont .triangle{
        display: none;
    }

    .nosotros a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .descrip-card h4{
        font-size: 18px;
    }
    
    .descrip-card p{
        font-size: 14px;
    }

    .btn-card{
        font-size: 11px;
    }


    .como h2 {
        font-size: 45px;
        margin-bottom: 60px;
    }

    .contacto {
        min-height: fit-content;
    }

    .contacto::before {
        left: -230px;
        bottom: -70px;
        transform: scale(0.3);
    }

    .contacto .titulares{
        -webkit-text-stroke: 0;
        color: var(--yellow); 
    }

    .titulares{
        -webkit-text-stroke: 0;
        color: var(--gris);
        opacity: 0.5 !important;
    }

    .como h2{
        -webkit-text-stroke: 0;
        color: var(--white);
    }

    .como{
        padding-top: 80px !important;
    }

    .como .card::after {
        -webkit-text-stroke: 0;
        color: var(--yellow) !important;
    }

    .contacto::before {
        bottom: -70px;
        transform: scale(0.3);
    }
}

@media screen and (max-width: 460px){
    .descrip-card {
        padding: 30px !important;
    }

    .contacto::before {
        left: -230px;
        bottom: -80px;
        transform: scale(0.2);
    }

    .contacto .links h3 {
        font-size: 16px;
    }

    .contacto .links a {
        width: 20px;
        height: 20px;
        line-height: 20px;
        margin: 0 2px;
    }
}

