@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;600&display-swap');
@import "styleservices.css";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
body{
    width: 100%;
    display: flex;
}
.contenedor{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.encabezado {
    width: 100%;
    height: 98px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(90deg, white, #669fc8);
    background-size: 435%;
    padding: 0 9%;
    align-items: center;
    position: fixed;
    z-index: 15;
}
.nav-toogle {
    font-size: 1.5rem;
    color: #0b6ea7;
    display: none;
}
.logo {
    display: flex;
    align-items: center;
    transform: translateX(-330px);
    animation: logot 1s ease forwards;
}
@keyframes logot {
    0%{transform: translateX(-330px);}
    100%{transform: translateX(0px);}
    
}
.header {
    display: flex;
    gap: 6px;
    align-items: center;
}
a{
    text-decoration: none;
}
.linkdiv {
    height: 42px;
    align-items: center;
    border-radius: 20px;
    padding: 0 17px;
    display: flex;
    color: #0b6ea7;
    font-weight: 600;
    border: solid 1px white;
    transition: 0.5s ease;
}
.headerlink{
    text-decoration: none;
    height: 48px;
    display: flex;
    align-items: center;
    
}
.headerlink :hover, .active{
    color: #669fc8;
    border-radius: 20px;
    border: solid 1px;
    box-shadow: 0 0 7px #669fc8;
}
#logo{
    height: 95px;
}
.logo:hover{
    box-shadow: 0 0 5px #07D6F6;
}
.hero-section {
    display: flex;
    padding-top: 98px;
    width: 100%;
    height: 89vh;
    background-image: url('../images/hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}
.hero-text{
    text-align: left;
    width: 418px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15vw;
    align-items: center;
}
.titulo {
    font-family: Arial;
    font-size: 3.5rem;
    line-height: 3.2rem;
}
.texto-hero {
    font-family: 'Roboto';
    text-align: justify;
    font-size: 1.08rem;
    margin-top: 26px;
    font-weight: 200;
}
.hero-btn{
    width: 205px;
    color: #07D6F6;
    margin-top: 36px;
    padding: 15px 15px;
    font-size: 18px;
    font-weight: 600;
    border: solid 2px;
    border-radius: 26px;
    transition: 0.5s ease;
    box-shadow: 1px 0 15px #07D6F6;
}
.hero-btn:hover{
    box-shadow: 1px 0 35px #07D6F6;
    background-color: aliceblue;
    color: #0b6ea7;
}
.herolink{
    color: white;
    text-align: center;
}
.sociallinks {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 36px;
    justify-content: center;
}
.s-link {
    width: 55px;
    height: 55px;
    color: #07D6F6;
    border: solid 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 15px #07D6F6;
    transition: 0.5s ease;
}
.s-link:hover {
    transform: translateY(-17px);
}
.tdescr {
    color: aliceblue;
    font-size: 1.3rem;
    text-align: center;
}
.about {
    color: #0b6ea7;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.about-sec {
    width: 100%;
    display: flex;
    position: relative;
    position: relative;
}
.about-t{
    width: 55%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 9.5% 7rem 7.5%;
    position: relative;
}
.about-t1{
    width: 55%;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 7.5% 7rem 9.5%;
    position: relative;
}
.about-h2{
    font-size: 2.6rem;
    position: absolute;
    top: -15px;
    right: 0;
    color: #0b6ea7;
    width: 55%;
    background: linear-gradient(45deg, aliceblue, #669fc8);
    padding: 17px 45px;
    border-radius: 26px 0 0 26px;
    background-size: 282%;
    /* box-shadow: -3px 3px 2px #07D6F6; */
}
.abouth2{
    font-size: 2.6rem;
    position: absolute;
    top: -15px;
    left: 0;
    color: #0b6ea7;
    width: 55%;
    background: linear-gradient(45deg, aliceblue, #669fc8);
    padding: 17px 45px;
    border-radius: 0 26px 26px 0;
    background-size: 282%;
    /* box-shadow: -3px 3px 2px #07D6F6; */
    text-align: right;
}
.about-t p{
    font-size: 1.3rem;
    color: #262626;
    text-align: justify;
    font-family: 'roboto';
}
.about-tags{
    font-size: 1.3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.about-tags i{
    font-size: 4rem;;
}
.about-t1 p{
    font-size: 1.3rem;
    color: #262626;
    text-align: justify;
    font-family: 'roboto';
}
.about-img{
    width: 45%;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    justify-content: center;
}
.aboutimg {
    width: 73%;
}
.services {
    width: 100%;
    padding-top: 117px;
    display: flex;
    flex-direction: column;
    background-color: #0b6ea7;
    justify-content: center;
    align-items: center;
    position: relative;
}
.services h2{
    font-size: 2.6rem;
    width: 45%;
    position: absolute;
    top: -15px;
    left: 0;
    color: #0b6ea7;
    text-align: right;
    background: linear-gradient(45deg, aliceblue, #669fc8);
    padding: 17px 45px;
    border-radius: 0 26px 26px 0;
    background-size: 282%;
}
.services-div{
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.s-button{
    display: flex;
    justify-content: center;
    padding: 1rem 26px;
    background-color: aliceblue;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    border-radius: 26px;
    transition: 0.5s ease;
}
.s-button a{
    color: #0b6ea7;
    font-weight: 600;
}
.s-button:hover{
    box-shadow: 0 0 17px aliceblue;
    transform: translateY(-5px);
}
.services-card{
    width: 17%;
    min-width: 253px;
    height: 415px;
    border-radius: 26px;
    padding: 26px 26px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    background-color: aliceblue;
    transition: 0.5s ease;
    position: relative;
    text-align: center;
}
.services-card h3{
    text-align: center;
    color: aliceblue;
    background-color: #669fc8;
    position: absolute;
    top: 0;
    height: 53px;
    width: 100%;
    border-radius: 26px 26px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-card a{
    background-color: #669fc8;
    color: aliceblue;
    padding: 5px;
    width: 80%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-card a:hover{
    background-color: #0b6ea7;
}
.services-card:hover{
    box-shadow: 0 0 35px #07D6F6, inset 0 0 5px #07D6F6;
    transform: translateY(-15px);
}
.services-img {
    width: 82%;
    margin-top: 53px;
    min-height: 117px;
    display: flex;
}
.servicesimg {
    width: 100%;
}
#logofooter{
    width: 50%;
}
.trabajos{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 3rem;
    background-color: #669fc8;
}
.trabajosw{
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.t-h2{
    font-size: 2rem;
    color: aliceblue;
}
.trabajos-wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.trabajoscard{
    width: 253px;
    display: flex;
    height: 253px;
    background-color: aliceblue;
    padding: 2rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    border-radius: 26px;
    animation: trabaj 5s 866 ease;
    box-shadow: 0 0 35px #07D6F6, inset 0 0 5px #07D6F6;
}
@keyframes trabaj {
    0%{
        box-shadow: 0 0 35px #07D6F6, inset 0 0 5px #07D6F6;
    }
    47%{
        box-shadow: 0 0 35px #669fc8, inset 0 0 5px #669fc8;
    }
}
.t-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 2.6rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}
.contact-items{
    width: 100%;
    display: flex;
    gap: 5rem;
    padding-top: 2.6rem;
    font-weight: 600;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact-items i{
    gap: 2rem;
    font-size: 5rem;
    color: #669fc8;
}
.contact-icons p{
    font-size: 1.3rem;
    color: #669fc8;
}
.contact-icons{
    gap: 1rem;
    display: flex;
    flex-direction: column;
}
.contact-div{
    width: 100%;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-div h3{
    align-items: center;
    font-size: 1.8rem;
    color: #669fc8;
    width: 82%;
    text-align: center;
}
.contact h2{
    padding-top: 1rem;
    font-size: 2.8rem;
    color: #0b6ea7;
}
.mapa {
    width: 1366px;
    height: 488px;display: flex;
    justify-content: center;
    background-color: black;
}
/* .sect {
    width: 1366px;
    height: 982px;
} */
footer{
    width: 100%;
    background-color: #0b6ea7;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1098px) {
    .encabezado {
        padding: 0 2rem;
    }
    .header {
        font-size: 0.82rem;
    }
    .about-t p{
        font-size: 1rem;
    }
    .about-t1 p{
        font-size: 1rem;
    }
    .services h2{
        width: 67%;
    }
    .description-active{
        width: 95%;
    }
    .h2-des{
        font-size: 1rem;
    }
    .trabajoscard{
        width: 215px;
        height: 215px;
    }
    .trabajosw{
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    .texto-des{
        width: 95%;
    }
}
@media (max-width: 855px) {
    .nav-toogle {
        display: flex;
    }
    .nav-toogle:hover {
        display: flex;
        cursor: pointer;
    }
    .imagen-des {
        width: 47%;
    }
    .trabajoscard{
        width: 205px;
        text-align: center;
        height: 205px;
    }
    .encabezado {
        padding: 0 2rem;
    }
    .header {
        display: flex;
        position: absolute;
        top: -98px;
        background-color: aliceblue;
    }
    .toog {
        display: block;
        position: absolute;
        top: 98px;
        right: 5px;
        z-index: 1;
    }
    .titulo {
        font-size: 2.5rem;
        line-height: 2.6rem;
    }
    .about-t{
        width: 82%;
        padding: 0 1rem 5rem 1rem;
    }
    .services h2{
        width: 100%;
        position: relative;
        text-align: center;
        font-size: 2rem;
    }
    .services{
        padding-top: 0;
    }
    .contact h2{
        font-size: 2rem;
    }
    .contact-div h3{
        font-size: 1rem;text-align: center;
    }
    .about-t1{
        width: 82%;
        padding: 5rem 1rem 0 1rem;
    }
    .about-sec{
        flex-direction: column;
        align-items: center;
    }
    .about-img{
        width: 100%;
        align-items: center;
        padding: 2rem;
    }
    .hero-text{
        text-align: left;
        width: 98%;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 2vw;
        padding: 0 15% 0 15%;
        align-items: center;
    }
    .abouth2{
        font-size: 2rem;
        width: 100vw;
        text-align: center;
    }
    .about-h2{
        font-size: 2rem;
        width: 100vw;
        text-align: center;
    }
}
.footdv{
    width: 100%;
    background-color: #0b6ea7;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}
.divfoot{
        width: 25%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 1rem;
}
footer .divfoot a{
        text-align: left;
        color: aliceblue;
        transition: 0.5s ease;
}
.footd{
        text-align: center;
        width: 100%;
        background-color: #669fc8;
        display: flex;
        margin-top: 1rem;
        padding: 0.5rem 0;
        justify-content: center;
        color: aliceblue;
}
footer .divfoot a:hover{
        transform: translateX(5px);
}
.socialfoot {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}
.s-foot {
    display: flex;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
}
.sect{
    width: 100%;
}

