
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}
:root {
    --bg-color: #363630;
    --bg-color2: #0e0014;
    --text-color: #f0f0f0;
    --main-color: #b32515;
    --main-color2:#37d6fd;
    --facebook: #4b51ffe0;
    --paypal: #202491ea;
    --youtube: #ae1d1dc9;
    --tiktok: #000000c6;
    --nequi: #c911c9c6;
    --whasapp: #0da32d;
    --white-color: #e3e3e3;
    --shadow-color: rgba(214, 214, 214, 0.36);
    --shadow-color2: rgba(0, 0, 0, 0.722);
    --color-fondo: #100c25;
    --color-dark: #dcc127;
    --main-color-hover: #b31d15be;
    --negro: #000;
    /* ======font size ===  */
    --large-font-size: 3rem;
    --normal-font-size: 2rem;
    --small-font-size: 1.6rem;
    --smaller-font-size: 1.4rem;
    /*========== Transition ==========*/
    --transition: .5s ease;
}


html {
    font-size: 64.5%;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
}
.contact {
    scroll-snap-align: start;
}

body {
    background-color: var(--bg-color2);
    color: var(--text-color);
    margin: auto;
    overflow-x: hidden;
}
.hidden{
    overflow: hidden;
}
.centrado {
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color-hover);
    z-index: 2000;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes lds-roller {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}

header {
    max-width: 100vw;
}

.header {
    position: fixed;
    margin: auto;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 10rem;
    padding: 2rem 7%;
    display: flex;
    background: #000000da; 
    align-items: center;
    z-index: 100;
    transition: 0.5s;
    justify-content: center;
}

/* logo  */
.nav__logo img{
    position: relative;
    width: 34rem;
}


/*ICON WHATSAPP */

#btn-wsp {
    font-size: 3.2rem;
    color: var(--white-color);
    margin-left: 0.5rem;
    margin-right: 5rem;
}

/* termina Icon Wsp */
section {
    min-width: 100vw;
    min-height: 100vh;
    padding: 10rem 7% 2rem;
}
span{
    color: var(--main-color2);
    font-weight: 600;
    text-shadow: 1px 1px 1px var(--negro);
}

.home {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    margin: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
}
.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000bb 0%, #000000c2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    clip-path: polygon(0 0, 50% 0, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 25%);
    z-index: -1;
}


.container{
    max-width: 1200px;
    min-width: 80vw;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container h1 {
    font-size: var(--large-font-size);

}
.container h1 span {
    color: var(--main-color2);
    text-shadow: 2px 2px 4px var(--negro);
}
.container h2 {
    max-width: 90%;
}

.container h3 {
    max-width: 90%;
    text-align: justify;
    font-size: var(--normal-font-size);
    text-shadow: 2px 2px 4px var(--negro);
}
.container__redes{
    width: 75%;
    margin: auto;
}
.center {
    text-align: center;
}
.container h3 span {
    text-align: center;
}
.container h4 span{
    font-size: 2.2rem;
    color: var(--negro);
    text-shadow: 2px 2px 6px var(--white-color);
    background: var(--white-color);
    padding: 0 .5rem;
    border-radius: .5rem;
}

.apoyo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2rem;
}
.apoyo h3{
    text-align: center;
    font-size: 1.6rem;
}
.apoyo span{
    font-size: 2rem;
}
/* link principal  */


.link__facebook {
    min-height: 3rem;
    margin: 1rem auto;
    background: var(--facebook);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition);
    text-shadow: 4px 5px 10px var(--negro);
}
.link__facebook:hover{
    transform: scale(1.01) translateY(-5px);
}

.link__youtube {
    min-height: 3rem;
    margin: 1rem auto;
    background: var(--youtube);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition);
    text-shadow: 2px 5px 10px var(--negro);
}
.link__youtube:hover{
    transform: scale(1.01) translateY(-5px);
}


.link__tiktok {
    min-height: 3rem;
    margin: 1rem auto;
    background: var(--tiktok);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition);
    text-shadow: 2px 2px 5px var(--white-color);
}
.link__tiktok h3 {
    text-shadow: 1px 1px 3px var(--white-color);
}
.link__tiktok:hover{
    transform: scale(1.01) translateY(-5px);
}

.link__paypal {
    min-height: 3rem;
    margin: 1rem auto;
    background: var(--paypal);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition);
    text-shadow: 2px 5px 10px var(--negro);
    
}
.link__paypal:hover{
    transform: scale(1.01) translateY(-5px);
}
.nequi-logo{
    width: 4rem;
}

.container__redes a {
    box-shadow: .1rem .4rem .8rem var(--shadow-color);
}

.datos__juego {
    width: 100%;
    min-width: 54rem;
    position: relative;
}
.datos__juego h2 {
    text-align: justify;
}

/* slider home  */

.containers {
    position: relative;
    width: 100vw;
}
.containers .slide-container .slide {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.containers .slide-container .slide video {
    position: fixed;
    top: 0; left: 0;
    z-index: -5;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: fadeIn .4s linear;
}

.containers video {
    position: fixed;
    top: 0; left: 0;
    z-index: -5;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: fadeIn .4s linear;

}
.containers .slide-container .slide .imgfondoslider {
    position: absolute;
    top: 0; left: 0;
    z-index: -5;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: fadeIn .4s linear;

}
@keyframes fadeIn  {
    0%{
        transform: scale(1.5);
    }
    
}
.containers .slide-container .slide .content{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: rgba(52, 4, 73, 0.594);
    text-align: center;
    z-index: -1;
}
.logoindex {
    width: 14rem;
}
.containers .slide-container .slide .content h3{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white-color);
    font-size: 5rem;
    text-shadow: 0 5px 10px var(--shadow-color);
    animation: Animate .4s linear .4s backwards;
    letter-spacing: 1rem;
}
.containers .slide-container .slide .content p{
    width: 80%;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    padding: 5px 0;
    font-weight: normal;
    text-shadow: 0 5px 10px rgb(0, 0, 0, .3);
    animation: Animate .4s linear .6s backwards;
    letter-spacing: .5rem;
}


.home .home-img {
    position: relative;
    animation: Animate .4s linear .8s backwards;
    animation: move-vector 4s linear infinite;
    transition: .5s ease;
}
.home-img img {
    width: 24rem;
}

@keyframes Animate {
    0%{
        opacity: 0;
        transform: scale(.5) translateY(-50px);
    }
    
}

.containers .slide-container {
    display: none;
}
.containers .slide-container.active{
    display: block;
}

.containers #next,
.containers #prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--main-color2);
    color: var(--white-color);
    font-weight: bold;
    height: 30;
    width: 35px;
    line-height: 55px;
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    padding: .5rem;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.containers:hover #next,
.containers:hover #prev {
    display: flex;
}

.containers #next:hover,
.containers #prev:hover {
    background-color: var(--bg-color);
    border: 1px solid var(--main-color2);

}
.containers #next{
    right: 2.5rem;
}

.containers #prev{
    left: 1rem;
}

/* finaliza slider home  */

.video video{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
}

.img__home{
    left: 5rem;
    top: 5rem;
}
.img__home img{
    width: 14rem;
}

.title_pricipal {
    max-width: 1200px;  
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
}

.title_pricipal img {
    width: 20rem;
    background: #ffffff99;
    border-radius: 20%;
}

.title_pricipal h1 {
    font-size: 4.2rem;
    margin: 1rem;
    color: var(--white-color);
    text-shadow: 1px 1px 2px var(--shadow-color);
}
.title_pricipal i{
    color: var(--main-color);
    font-size: 4.5rem;
}

.home p {
    width: 80%;
    font-size: 2.5rem;
    margin:1rem 3rem;
}





/* industrias  */

.banner__industrias{
    width: 100%;
    position: relative;
    margin: auto;
    height: max-content;
    text-align: center;
    padding-bottom: 1rem;
    background: url(../assets/logoadorno.png);
}
.container__industrias{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(180deg, #400707c5 0%, #260539d5 100%),
        url("../assets/bg-inferior-banner-1.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.container__industrias p{
    width: 80%;
    font-size: 1.6rem;
}
.container__industrias b {
    color: var(--main-color);
}
.container__industrias{
    position: relative;
    width: 100%;
}
.box__industrias{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 38rem), 1fr));
    gap: 2rem;
    width: 80%;
    margin: auto;
    justify-content: space-between;
}
.container__industrias h1{
    color: var(--main-color2);
    font-size: 4.5rem;
    padding: 4rem;
}
.container__industrias h2{
    color: var(--text-color);
    font-size: 2.2rem;
    letter-spacing: .5rem;
    padding: 4rem 2rem;
    text-transform: uppercase;
}

.box__industrias__esp{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    background: var(--bg-color);
    box-shadow: .1rem .1rem .5rem var(--shadow-color);
}

.box__industrias__esp img{
    width: 94%;
    height: 26rem;
    padding: 1rem;
    transition: all .3s ease;
    object-fit: cover;
}
.box__industrias__esp h4{
    color: var(--main-color);
    font-size: 2.6rem;
    padding: 1rem;
}
.box__industrias__esp p{
    width: 90%;
    color: var(--text-color);
    font-size: 1.6rem;
    text-align: start;
    padding: 2rem;
    height: max-content;
    min-height: 14rem;
}

.box__industrias__esp:hover img{
    transform: scale(1.1);
}
.box__industrias__esp:hover {
    transform: translateY(-2rem);
}


/* boton wsp */


.bton__contacto{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.bton__contacto .btn__wsp a{
    margin: 1rem;
    padding: 1rem;
    color: var(--text-color);
    border-radius: 12px;
    transition: all .1s ease;
    background: #0bc074;
    display: flex;
    align-items: center;
}
.btn__wsp{
    display: flex;
    align-items: center;
}
.btn__wsp i{
    color: var(--white-color);
    font-size: 3rem;
    padding: 1rem;
    border-radius: 50%;
}
.btn__wsp a:hover{
    transform: scale(1.01);
}
/* about  */

.about{
    margin: auto;
    width: 100%;
    display: flex;
    position: relative;
    background-image: linear-gradient(180deg, #180022cf 0%, #180022cd 100%),
        url("../assets/bg-footer.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    /* clip-path: polygon(0 0, 100% 0, 100% 13%, 0 100%); */
    z-index: -5;
}
.container_about{
    width: 100%;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.container_about .heading {
    margin-bottom: 5rem;
}
.container_about img{
    display: flex;
    position: relative;
    width: 30rem;
    z-index: 5;
    background: var(--main-color);
    border-radius: .6rem;
}
.box__container__about{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 80rem), 1fr));
    gap: 2rem;
    width: 90%;
    margin: auto;
    justify-content: space-between;
}
.box__container__about{
    display: flex;
    align-items: center;
}
.texto__box__about h4 {
    font-size: 2rem;
    padding: .5rem;
}
.texto__box__about p{
    margin-top: 2rem;
    font-size: 1.8rem;
    padding: .5rem;
    display: flex;
    align-items: center;
}
.texto__box__about i{
    font-size: 2.5rem;
    color: var(--main-color2);
}



.texto__box__about .btn-box{
    display: flex;
    margin: auto;
}
.texto__box__about .box__botones{
    display: flex;
}

.box__about{
    display: flex;
    flex-direction: column;
    margin: auto;
}
.box__about .btn{
    margin: auto;
    margin-top: 2rem;
}

.box__texto__container{
    display: flex;
}
.box__texto__container .img__logo__texto{
    display: flex;
    align-items: center;
    justify-content: center;
}
.img__logo__texto img{
    width: 40%;
}

.lista__texto p{
    gap: 1rem;
}


/* About */

.about {
    align-items: center;
}

.imgban {
    width: 50%;
}

.subtitle {
    color: var(--text-color);
    font-size: 4rem;
    margin-bottom: 25px;
    margin-top: 3%;
}

.container__imagen{
    margin-top: 1rem;
    width: 100%;
    overflow: hidden;
}
.container__imagen img{
    object-fit: cover;
    width: 100%;
}

/* Nosotros pag  */

.nosotros {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    margin: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
}
.nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #000000b4 0%, #000000bc 100%),
        url("../assets/equipodesarrollo.jpg");
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 26% 0, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 15%);
    z-index: -1;
}
.h1nosotros {
    font-size: 5rem;
    padding: 1rem;
    letter-spacing: .5rem;
}
.h1nosotros span {
    font-weight: 700;
    border-radius: 5px;
    padding: 0 .5rem;
}
.title__nosotros {
    display: flex;
    align-items: center;
}
.title__nosotros h1 {
    font-size: 3rem;
    color: var(--text-color);
}
.title__nosotros i {
    color: var(--text-color);
    font-size: 2.5rem;
}
.title__nosotros h3 {
    font-size: 2rem;
    font-weight: normal;
    padding: 1rem;
    margin: 0;
}
.container_about .mousegif {
    width: 6rem;
    padding-top: 8rem;
    background: transparent;
    animation: move-vector 4s linear infinite;
}
/* finaliza nosotros pag  */

.marketing {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    margin: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: var(--white-color);

}
.marketing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000ac 0%, #000000b4 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    clip-path: polygon(0 0, 26% 0, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 15%);
    z-index: -1;
}



.botones__contacto {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: wrap;
    margin: auto;
    align-items: center;
}
.bton__cotizar--whatsapp{
    display: flex;
    position: relative;
    align-items: center;
    margin: auto;
}

.bton__cotizar--whatsapp .btn__cotizar a{
    display: flex;
    padding: .5rem 1rem;
    border-radius: 12px;
    transition: all .2s ease;
    background: var(--whasapp);
    align-items: center;
    align-content: center;
    color: var(--white-color);
    font-size: 2rem;
    margin: 2rem;
    gap: 2rem;
}


.bton__cotizar--correo{
    display: flex;
    position: relative;
    align-items: center;
    margin: auto;
}

.bton__cotizar--correo .btn__cotizar a{
    display: flex;
    padding: .5rem 1rem;
    border-radius: 12px;
    transition: all .2s ease;
    background: var(--main-color2);
    align-items: center;
    align-content: center;
    color: var(--white-color);
    font-size: 2rem;
    margin: 2rem;
    gap: 2rem;
}


.bton__cotizar--pdf {
    display: flex;
    position: relative;
    align-items: center;
    margin: auto;
}

.bton__cotizar--pdf .btn__cotizar a{
    display: flex;
    padding: .5rem 1rem;
    border-radius: 12px;
    transition: all .2s ease;
    background: var(--main-color3);
    align-items: center;
    align-content: center;
    color: var(--white-color);
    font-size: 2rem;
    margin: 2rem;
    gap: 2rem;
}

/* img border  */

.separador {
    display: flex;
    width: 100%;
    height: 4rem;
    padding-top: 4rem;
    margin: 3px auto 0;
    position: relative;
    background: var(--bg-color2);
}
.img--border {
    position: relative;
    width: 8rem;
    background: transparent;
    padding: 1rem;
    margin: auto;
    transform: translateY(-8rem);
}


/*CONTACTO*/


.container_contacto {
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.box_contacto {
    width: 100%;
    margin: auto;
    padding: 20px;
}

.map {
    border-radius: 3px;
}

.map:hover {
    transform: scale(1.01);
    transition: all 300ms;
}



/* FORMULARIO */

.container__form {
    margin: auto;
    width: 75vw;
    min-width: 20rem;
    background: rgba(255, 255, 255, 0.098);
    border-left: .5px solid rgba(255, 255, 255, 0.5);
    border-top: .5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    position: relative;
    box-shadow: 5px 5px 20px var(--shadow-color);    
    border-radius: .6rem;
}
.container__form .title_form{
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 500;
    text-align: center;
    position: relative;
}

.container__form h5 {
    font-size: 1.8rem;
    letter-spacing: .5rem;
    text-align: center;
}
.title_form span{
    color: var(--shadow-color);
}
.container__form .form{
    margin-top: 10px;
}
.form .input-box{
    width: 100%;
    margin-top: 10px;
}
.input-box label {
    color: var(--white-color);
    font-size: 1.6rem;
}
.form :where(.input-box input, .select-box){
    position: relative;
    height: 40px;
    width: 100%;
    outline: none;
    font-size: 1.4rem;
    color: var(--bg-color);
    margin-top: 8px;
    border: .1px solid var(--shadow-color);
    border-radius: 6px;
    padding:  0 15px;
    background: var(--white-color);
}

.input-box input{
    box-shadow:  0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
    display: flex;
    column-gap: 10px;
}
.form .gender-box{
    margin-top: 1.4rem;
}
.gender-box h3{
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.form :where(.gender-opcion, .gender){
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
}
.form .gender{
    column-gap: 5px;
    cursor: pointer;
}
.gender input {
    accent-color: var(--main-color);
}
.form :where(.gender input, .gender label){
    cursor: pointer;
    color: var(--text-color);
}
.gender label{
    color: var(--text-color);
}
.addres :where(input, .select-box) {
    margin-top: 10px;
}

.select-box select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    color: var(--text-color);
    font-size: 1.4rem;
    background: var(--bg-color);
}

.form button{
    padding: .5rem;
    height: 40px;
    width: 25%;
    margin-left: 75%;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius:6px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: var(--main-color);
    color: var(--white-color);
}
.form button:hover{
    background: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--main-color);

}
.iconoform{
    position: relative;
    font-size: 2rem;
    padding: .5rem;
    color: var(--main-color);
    z-index: 2;
}

.form .input-box #tipo_de_proyecto{
    width: 100%;
    margin-top: 10px;
}
#tipo_de_proyecto{
    background: var(--white-color);
    position: relative;
    height: 40px;
    width: 100%;
    outline: none;
    font-size: 1.4rem;
    color: var(--bg-color);
    margin-top: 8px;
    border: .1px solid var(--shadow-color);
    border-radius: 6px;
    padding:  0 15px;
    box-shadow:  0 1px 0 rgba(0, 0, 0, 0.1);
}
#cuentanos{
    background: var(--white-color);
    align-items: center;
    position: relative;
    height: 80px;
    width: 100%;
    outline: none;
    font-size: 1.4rem;
    color: var(--bg-color);
    margin-top: 8px;
    border: .1px solid var(--shadow-color);
    border-radius: 6px;
    padding:  10px 15px;
    box-shadow:  0 1px 0 rgba(0, 0, 0, 0.1);
    resize: none;

}

.input-tyc{
    margin: 1rem;
}
.input-tyc p{
    margin-left: 3rem;
}
.tyc-btn{
    display: inline-block;
    width: 5rem;
    height: 3rem;
    background: var(--white-color);
    border-radius: 10rem;
    position: relative;
    cursor: pointer;
}
#btn-switch:checked~ .tyc-btn{
    background: var(--main-color);
}
.tyc-btn::after{
    position: absolute;
    content: ' ';
    width: 2rem;
    height: 2rem;
    background: var(--bg-color);
    border-radius: 10rem;
    top: .4rem;
    left: .5rem;
    transition: .3s all ease;
}
#btn-switch:checked~ .tyc-btn::after{
    left: 2.2rem;
}

#btn-switch{
    display: none;
}
.tyc-btn p{
    display: flex;
    position: absolute;
    width: 40rem;
    left: 3.6rem;
    font-size: 1.6rem;
    top: .5rem;
    font-weight: 400;
    color: var(--white-color);
}




/*demo*/

.demo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}
/*termina contactanos - formulario
/* Footer */

.footer{
    width: 100%;
    height: 100%;
    align-content: center;
    min-height: 45vh;
    background-image: linear-gradient(180deg, rgba(24, 4, 4, 0.822) 50%, #300404d8 100%),
        url("../assets/bg-footer.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_encabezado{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer_encabezado  img{
    width: 60px;
    padding: 5px;
}
.footer__title, .footer__newsletter{
    color: var(--white-color);
}
.footer__title{
    font-weight: 500;
    font-size: 2.6rem;
    color: var(--main-color2);
}

.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row ;
    height: 100%;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}
.nav__link--footer .nav__items {
    display: flex;
    gap: 2rem;
}

.nav__link--footer .nav__links{
    color: var(--white-color);
    padding: 1rem;
    font-size: 1.6rem;
}
.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.footer__input{
    background-color: var(--bg-color);
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px ;
    background-color: var(--main-color);
    border: none;
    font-size: 1rem;
    color: var(--white-color);
    border-radius: 6px;
    cursor: pointer;
    height: 10rem;
}

.footer__contenido{
    display: flex;
    flex-flow: wrap;
    gap: 2rem;
    align-items: center;
    position: relative;
    max-width: 1250px;
    width: 100%;
    margin: auto;
    padding: 3rem 0;
    background: transparent;
}
.container__contactof {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 24rem;
}

.container_logos{
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.box__logos{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: auto;
    position: relative;
    gap: 2rem;
}
.box__logos h1{
    color: var(--white-color);
    font-size: 2.2rem;
    padding: 1rem;
}

.box__logos h2, a{
    color: var(--white-color);
    font-size: 1.8rem;
}

.logoempresa{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 1;
}
.logoempresa {
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: start;
    gap: 1rem;
    cursor: pointer;
}

.logoempresa img{
    background: var(--main-color);
    /* padding: .5rem; */
    border-radius: 6px;
    cursor: pointer;
    width: 10rem;
}
.logog img{
    width: 12rem;
}
.logoempresa h2{
    color: var(--white-color);
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 800;
}
.logoempresa__texto {
    display: flex;
    flex-direction: column;
}
.logoempresa__texto p{
    color: var(--main-color2);
    font-size: 2.6rem;
    font-weight: 600;
}

.logoempresa a:hover{
    color: var(--main-color);
}

.list-footer {
    text-align: start;
}
.list-footer li{
    color: var(--white-color);
    font-size: 1.8rem;
    padding: .4rem;
}

.container__contactof .h1__footer{
    padding: 1rem;
    color: var(--main-color);
    font-size: 2.4rem;
}

.correo {
    margin: 0;
    display: block;
}
.correo h1 {
    font-size: 3rem;
    padding: 1rem;
    color: var(--main-color);
}
.correo h2{
    padding: .5rem;
    color: var(--white-color);
    border-radius: 1rem;
    font-size: 1.6rem;
}
.correo i{
    font-size: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 50%;
    padding: .5rem;
}







.footer__copy{
    width: 100%;
    --padding-container: 30px 0;
    text-align: center;
    padding: 4rem 2rem 0;
    gap: 2rem;
}
.footer__copy .logocopy {
    display: flex;
    position: relative;
    justify-content: center;
    margin: auto;
    align-items: center;
}
.footer__copy .logocopy img {
    width: 30rem;
}
.logocopy h2 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1rem;
    color: var(--main-color);
}

.btn_correo{
    display: flex;
    justify-content: start;
    font-size: 2rem;
    background: transparent;
    padding: .2rem;
    color: var(--white-color);
    cursor: pointer;
}

.correo h4, h2, a{
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--white-color);
}


.footer__icons{
    margin-bottom: 10px;
}

.footer__img{
    width: 30px;
    margin: 1%;
}


.footer__copyright{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 2rem 1rem;
}
.footer__copyright h3{
    position: relative;
    align-items: center;
    font-size: 1.4rem;
    color: var(--shadow-color);
    font-weight: 300;
    padding: 1rem;
}
.footer__copyright img{
    position: relative;
    margin-left: 1%;
    width: 30px;
}
.logoinnovamc{
    display: flex;
    align-items: center;
    margin: 1rem;
    padding: .2rem;
    gap: .2rem;
}
.logoinnovamc h3{
    color: var(--white-color);
    font-weight: 700;
}
.logoinnovamc img{
    width: 10rem;
    padding: .1rem;
    border-radius: 6px;
}



.footer-iconTop{
    position: fixed;
    bottom: 2rem;
    z-index: 100;
    left: 2rem;
    transition: all .1s ease;
}
.footer-iconTop a {
    position: relative;
    display: inline-flex;
    justify-content: end;
    align-items: center;
    padding: 0.8rem;
    background: var(--main-color);
    border: 0.2rem solid var(--white-color);
    border-radius: 0.8rem;
    z-index: 1;
    overflow: hidden;
}

.footer-iconTop a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 0.5s;
}

.footer-iconTop a:hover::before {
    width: 100%;
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}
.footer-iconTop:hover{
    transform: scale(1.1);
}
/*ID*/

#contacto {
    min-width: 100vw;
    min-height: 100vh;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all 300ms ease;
    background: var(--shadow-color2);
}

/* Media queries */

@media (max-width: 800px) {
    .nav__menu {
        display: block;
    }

    .nav__link--menu {
        position: fixed;
        background-color: var(--shadow-color);
        top: 10%;
        left: 0;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: 0.7s opacity;
    }

    .nav__link--show {
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .about__main {
        gap: 2em;
    }

    .about__icons:last-of-type {
        grid-column: 1/-1;
    }

    .knowledge__container {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        gap: 3em;
        text-align: center;
    }

    .knowledge__picture {
        grid-row: 1/2;
        justify-self: center;
    }

    .testimony__container {
        grid-template-columns: 30px 1fr 30px;
    }

    .testimony__body {
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items: center;
    }

    .testimony__img {
        width: 200px;
        height: 200px;
    }

    .questions__copy {
        width: 100%;
    }

    .footer__container {
        flex-wrap: wrap;
    }

    .nav--footer {
        width: 100%;
        justify-items: center;
    }

    .nav__link--footer {
        width: 100%;
        justify-content: space-evenly;
        margin: 0;
    }

    .footer__form {
        width: 100%;
        justify-content: space-evenly;
    }

    .footer__input {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__paragraph {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 2.5rem;
    }

    .price__element {
        width: 90%;
    }

    .price__element--best {
        width: 90%;
        /* padding: 40px; */
    }

    .price__price {
        font-size: 2rem;
    }

    .testimony {
        --padding-container: 60px 0;
    }

    .testimony__container {
        grid-template-columns: 28px 1fr 28px;
        gap: 0.9em;
    }

    .testimony__arrow {
        width: 100%;
    }

    .testimony__course {
        margin-top: 15px;
    }

    .footer__title {
        justify-self: start;
        margin-bottom: 15px;
    }

    .nav--footer {
        padding-bottom: 60px;
    }

    .nav__link--footer {
        justify-content: space-between;
    }

    .footer__inputs {
        flex-wrap: wrap;
    }

    .footer__input {
        flex-basis: 100%;
        margin: 0;
        margin-bottom: 16px;
    }

    .footer__submit {
        margin-right: auto;
        margin-left: 0;

        /* 
        margin:0;
        width: 100%;
        */
    }

    .footer__container {
        flex-direction: column;
    }

    .nav--footer {
        display: block;
        padding: 5%;
        justify-content: space-around;
        flex-flow: row wrap;
        align-items: center;
    }
}



/*  BOTONES  */


/* btn home cotizar*/

.btn-box-home {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 40px;
    background: var(--bg-footer);
}

.btn-box-home a {
    display: flex;
    position: relative;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 155px;
    height: 100%;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
}

.btn-box-home a {
    background: transparent;
    color: var(--main-color);
}

.btn-box-home a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: 0.5s;
}

.btn-box-home a:hover:before {
    width: 100%;
}

.btn-box-home a:hover {
    color: var(--bg-color);
}


.iconr {
    margin: 0 2rem;
    opacity: 0.8;
}
.iconr:hover {
    opacity: 1;
}
/* Termina btn home cotizar*/


.heading {
    /* padding: 2rem; */
    font-size: 4.5rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}
.heading span{
    color: var(--main-color);
}

.btn-box {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 165px;
    height: 36px;
    background: var(--white-color);
    border: 2px solid var(--main-color);
    border-radius: 6px;
    transition: .2s linear;
    animation: Animate .4s linear .1s backwards;
    z-index: 2;
    margin: .5rem;
}

.btn-box a {
    display: flex;
    position: relative;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 165px;
    height: 100%;
    background: transparent;
    box-shadow: 0 0.2rem 0.5rem var(--main-color);
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
    color: var(--bg-color);
}
.btn-box:hover {
    
    transform: translateY(-.4rem);
}

.btn-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: 0.5s;
    border-radius: 6px;
}

.btn-box a:hover:before {
    width: 100%;
}
.btn-box i {
    color: var(--main-color2);
}


.btn {
    margin: 6rem auto;
    width: 18rem;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 1.2rem 2.8rem;
    background: var(--bg-color2);
    box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
    border: 0.2rem solid var(--main-color);
    transition: 0.5s ease;
    cursor: pointer;
    color: var(--white-color);
    z-index: 2;
    position: relative;
    justify-content: center;
}
.btn:hover {
    transform: translateY(-1rem);
    background: var(--main-color);
    color: var(--bg-color);
    border-color: var(--main-color);
}

.btn-slider {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--white-color);
    box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
    color: var(--bg-color);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
    border: 0.2rem solid var(--main-color);
    transition: 0.5s ease;
    cursor: pointer;
}
.btn-slider a {
    color: var(--bg-color);
}
.btn-slider:hover {
    transform: translateY(-.2rem);
    background: var(--main-color);
    border-color: var(--main-color);
}




.btn__contactar{
    margin: 4rem 0;
    border: solid var(--main-color2) 1px;
    border-radius: 6px;
    padding: .5rem;
}



/*KEYFRAMES ANIMATIONS*/


@keyframes showRight {
    100% {
        width: 0;
    }
}
@keyframes slider{
    0% {margin-left: 0;}
    20% {margin-left: 0;}

    25% {margin-left: -100%;}
    45% {margin-left: -100%;}

    50% {margin-left: -200%;}
    70% {margin-left: -200%;}

    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}

@keyframes move-vector{
    0%{
        transform: translateY(15px);
    }50%{
        transform: translateY(0px);
    }100%{
        transform: translateY(15px);
    }
}



@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }
    to {
        opacity: 1;
        scale: 100%;
    }
}
