@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap";
@import "https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap";
* {
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    font-family: Outfit, sans-serif;
    background: #f8f9fa;
    color: #000;
}
header {
    width: 100%;
    min-height: 5%;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: #e6e6e6;
    box-shadow: 0 4px 17px #3534341a;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: center;
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px;
    position: sticky;
    z-index: 1;
}
.Cabecera-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin-left: 10px;
    font-size: 1.5rem;
    animation: leftSideAni 1s ease forwards;
}
.logo a {
    color: #1976d2;
    text-decoration: none;
}
.logo a img {
    position: absolute;
    width: 60px;
    margin-top: -30px;
}
.logo a:hover {
    color: #52489c;
    opacity: 0.9;
}
.Cabecera-ul {
    display: flex;
    gap: 0.6rem;
    list-style-type: none;
    overflow: hidden;
}
.Cabecera-li a {
    display: inline-block;
    padding: 0.3rem 1rem;
    color: #417bbd;
    text-decoration: none;
    font-size: 1.09rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    transition: 0.3s;
}
.Cabecera-li .nav-link:hover {
    position: relative;
    color: #000;
    transition: 0.3s;
}
.Cabecera-li .nav-link:hover:after {
    content: "";
    position: absolute;
    left: 10%;
    top: 90%;
    width: 80%;
    height: 2px;
    background-color: #1976d2;
}
.button {
    border-radius: 100px;
    box-shadow: 0 5px 35px #0000004d;
    background: linear-gradient(to right, #1976d2, #518eca, #8fb2d4);
    color: #fff;
    margin-right: 50px;
    margin-left: 100px;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 25px;
    line-height: 1.5em;
    text-align: center;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.button:hover {
    background: linear-gradient(to right, #e6e6e6, #e6e6e6, #e6e6e6);
    color: #1976d2;
    transition: 0.5s;
}
.button .bx {
    margin-left: -3px;
}
.button span {
    margin-left: 3px;
}
.nav-icon-5 {
    width: 35px;
    height: 30px;
    margin: 5px 10px 10px;
    position: relative;
    cursor: pointer;
    display: none;
}
@media (max-width: 1146px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
    }
    .nav-icon-5 {
        display: flex;
    }
    .nav-icon-5 span {
        background-color: #1976d2;
        position: absolute;
        border-radius: 2px;
        transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
        width: 100%;
        height: 4px;
        transition-duration: 0.5s;
    }
    .nav-icon-5 span:nth-child(1) {
        top: 0;
        left: 0;
    }
    .nav-icon-5 span:nth-child(2) {
        top: 13px;
        left: 0;
        opacity: 1;
    }
    .nav-icon-5 span:nth-child(3) {
        bottom: 0;
        left: 0;
    }
    .nav-icon-5.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 13px;
    }
    .nav-icon-5.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-icon-5.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 13px;
    }
    .Cabecera-nav {
        width: 100%;
        height: 100%;
        text-align: center;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        position: absolute;
        display: block;
        top: 75%;
        right: 0;
        background-color: #e6e6e6;
    }
    .Cabecera-nav.isActive {
        height: 100vh;
        transition: 1s;
    }
    .Cabecera-ul {
        flex-direction: column;
        padding: 2rem;
        margin-top: 10%;
    }
    .Cabecera-li {
        margin: 0.3em 0;
    }
    .Cabecera-li a {
        font-size: 1.8em;
    }
    .button {
        font-size: 2em;
        margin-left: 50px;
    }
    .video {
        margin-top: 9%;
    }
}
@media (max-width: 828px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
    }
    .nav-icon-5 {
        display: flex;
    }
    .nav-icon-5 span {
        background-color: #1976d2;
        position: absolute;
        border-radius: 2px;
        transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
        width: 100%;
        height: 4px;
        transition-duration: 0.5s;
    }
    .nav-icon-5 span:nth-child(1) {
        top: 0;
        left: 0;
    }
    .nav-icon-5 span:nth-child(2) {
        top: 13px;
        left: 0;
        opacity: 1;
    }
    .nav-icon-5 span:nth-child(3) {
        bottom: 0;
        left: 0;
    }
    .nav-icon-5.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 13px;
    }
    .nav-icon-5.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-icon-5.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 13px;
    }
    .Cabecera-nav {
        width: 100%;
        height: 100%;
        text-align: center;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        position: absolute;
        display: block;
        top: 80%;
        right: 0;
        background-color: #e6e6e6;
    }
    .Cabecera-nav.isActive {
        height: 100vh;
        transition: 1s;
    }
    .Cabecera-ul {
        flex-direction: column;
        padding: 2rem;
        margin-top: 10%;
    }
    .Cabecera-li {
        margin: 0.3em 0;
    }
    .Cabecera-li a {
        font-size: 1.8em;
    }
    .button {
        font-size: 2em;
        margin-left: 50px;
    }
    .video {
        margin-top: 9%;
    }
}
@media (max-width: 834px) {
    .Cabecera-nav {
        top: 80%;
    }
}
@media (max-width: 800px) {
    .Cabecera-nav {
        top: 80%;
    }
}
@media (max-width: 884px) {
    .Cabecera-nav {
        top: 80%;
    }
}
@media (max-width: 768px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
    }
    .nav-icon-5 {
        display: flex;
    }
    .nav-icon-5 span {
        background-color: #1976d2;
        position: absolute;
        border-radius: 2px;
        transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
        width: 100%;
        height: 4px;
        transition-duration: 0.5s;
    }
    .nav-icon-5 span:nth-child(1) {
        top: 0;
        left: 0;
    }
    .nav-icon-5 span:nth-child(2) {
        top: 13px;
        left: 0;
        opacity: 1;
    }
    .nav-icon-5 span:nth-child(3) {
        bottom: 0;
        left: 0;
    }
    .nav-icon-5.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 13px;
    }
    .nav-icon-5.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-icon-5.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 13px;
    }
    .Cabecera-nav {
        width: 100%;
        height: 100%;
        text-align: center;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        position: absolute;
        display: block;
        top: 95%;
        right: 0;
        background-color: #e6e6e6;
    }
    .Cabecera-nav.isActive {
        height: 100vh;
        transition: 1s;
    }
    .Cabecera-ul {
        flex-direction: column;
        padding: 2rem;
        margin-top: 10%;
    }
    .Cabecera-li {
        margin: 0.3em 0;
    }
    .Cabecera-li a {
        font-size: 1.8em;
    }
    .button {
        font-size: 2em;
    }
    .video {
        margin-top: 13%;
    }
}
.bgContainer {
    position: relative;
    width: 100%;
    height: 100vh;
}
.overPlay {
    position: relative;
    width: 100%;
    height: 100%;
}
.img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    filter: brightness(0.4);
}
.descripcion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 85%;
}
.emp {
    padding: 10px;
    font-size: 35px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.descrip {
    padding: 10px;
    font-size: 22px;
    font-family: Trebuchet MS, Lucida Sans Unicode, Lucida Grande, Lucida Sans, Arial, sans-serif;
}
@media (min-width: 768px) {
    .bgContainer,
    .overPlay,
    .img {
        width: 100%;
    }
    .descripcion {
        width: 80%;
    }
    .emp {
        margin: 20px;
    }
    .descrip {
        margin: 5px;
    }
}
@media screen and (min-width: 820px) and (max-width: 884px) {
    .bgContainer,
    .overPlay,
    .img {
        width: 100%;
    }
    .descripcion {
        width: 80%;
    }
    .emp {
        margin: 20px;
    }
    .descrip {
        margin: 5px;
    }
}
.card-container {
    margin: 20px;
    padding: 15px;
}
.title-card {
    margin: 20px;
    display: flex;
    justify-content: center;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.title {
    padding: 10px;
    font-size: 30px;
    text-align: center;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2rem;
}
.card {
    position: relative;
    width: 290px;
    height: 330px;
    margin: 20px;
    perspective: 1000px;
}
.card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.9s;
}
.face .texto {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .front {
    transform: perspective(600px) rotateY(0);
    box-shadow: 0 5px 10px #000;
}
.card .front img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .front h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    line-height: 15px;
    color: #fff;
    background: #0006;
    text-align: center;
}
.card .back {
    transform: perspective(600px) rotateY(180deg);
    background: #1976d2;
    padding: 15px;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}
.card .back .link {
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}
.card .back .link a {
    color: #fff;
    text-decoration: none;
}
.card .back h3 {
    font-size: 30px;
    margin-top: 20px;
    letter-spacing: 2px;
}
.card .back p {
    letter-spacing: 1px;
}
.card.flipped .face.back {
    transform: rotateY(0);
}
.card.flipped .face.front {
    transform: rotateY(180deg);
}
@media (min-width: 768px) {
    .card:hover .front {
        transform: perspective(600px) rotateY(180deg);
    }
    .card:hover .back {
        transform: perspective(600px) rotateY(360deg);
    }
}
@media (max-width: 768px) {
    .card {
        transform: rotateY(0);
    }
}
.btn-wsp {
    position: fixed;
    padding: 10px 25px;
    line-height: 1.5em;
    align-items: center;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(to right, #1976d2, #518eca, #8fb2d4);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 1px 10px #0000004d;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
    transform: translateZ(0);
}
.btn-wsp:hover {
    background: linear-gradient(to right, #e6e6e6, #e6e6e6, #e6e6e6);
    color: #1976d2;
    transition: 0.5s;
}
.btn-wsp span {
    margin-left: 5px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .btn-wsp {
        font-size: 15px;
    }
    .span {
        display: none;
    }
    .bx {
        font-size: 20px;
    }
}
.quienesSomos {
    width: 100%;
}
.quienes {
    text-align: center;
    font-size: 35px;
    padding: 20px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.parrafo-mv {
    width: 90%;
    text-align: center;
    font-size: 22px;
    margin: 0 auto;
    padding: 15px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.lista-mv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2rem;
    list-style: none;
}
.card-1 {
    margin: 20px 5% 20px 20px;
    padding: 10px;
}
.card-2 {
    padding: 10px;
    margin: 20px 20px 20px 5%;
}
.card2 {
    display: flex;
    flex-direction: column;
    max-width: 16rem;
    --iconS: 6rem;
    --iconOffsetX: calc(var(--iconS) / 4);
    --iconOffsetY: calc(var(--iconS) / 2.5);
    margin-top: var(--iconOffsetY);
    margin-inline: var(--iconOffsetX);
    border-radius: 1rem;
    font-family: Roboto, sans-serif;
    color: #333;
    background-color: #fff;
    --shadowSurface: 0.5rem 0.5rem 0.5rem rgb(0 0 0 / 0.25);
    --bgGradient: radial-gradient(circle at bottom right, transparent, rgb(0 0 0 / 0.1));
    background-image: radial-gradient(
            circle at calc(var(--iconOffsetX) * -1 + var(--iconS) / 2) calc(var(--iconOffsetY) * -1 + var(--iconS) / 2),
            rgb(0 0 0 / 0.4) calc(var(--iconS) / 2),
            transparent calc(var(--iconS) / 1.6)
        ),
        radial-gradient(
            circle at calc(var(--iconOffsetX) * -1 + var(--iconS) / 2) calc(var(--iconOffsetY) * -1 + var(--iconS) / 2),
            var(--accent-color) calc(var(--iconS) / 1.4),
            transparent calc(var(--iconS) / 1.4 + 1px)
        ),
        var(--bgGradient);
    --shadowInsetLight: inset 0.125rem 0.125rem 0.125rem rgb(255 255 255 / 0.5);
    --shadowInsetDark: inset -0.067rem -0.067rem 0.067rem rgb(0 0 0 / 0.5);
    box-shadow: var(--shadowInsetLight), var(--shadowInsetDark), var(--shadowSurface);
}
.card2 .icon {
    width: var(--iconS);
    aspect-ratio: 1;
    margin-top: calc(var(--iconOffsetY) * -1);
    margin-left: calc(var(--iconOffsetX) * -1);
    margin-bottom: calc(var(--iconS) / 4);
    display: grid;
    place-items: center;
    color: var(--accent-color);
    font-size: calc(var(--iconS) / 3);
    background-color: inherit;
    border-radius: 50%;
    box-shadow: var(--shadowInsetLight), var(--shadowInsetDark);
    background-image: var(--bgGradient);
}
.card2 .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
}
.card2 .content {
    padding: 1rem 1rem 2rem;
    font-size: 0.9em;
    height: 210px;
    text-align: center;
}
.porque {
    text-align: center;
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.txt .nuestro {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.img-sub {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img_ft {
    margin: 40px 10px 10px;
    padding: 5px;
}
.img_ft img {
    width: 600px;
    height: 336px;
}
.subti {
    text-align: center;
    padding: 15px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.subti .carcter {
    padding: 10px;
    text-align: center;
}
.carac .li2 {
    margin: 20px;
    font-size: 22px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
    .img-sub {
        margin: 10px;
        font-size: 20px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .img-sub {
        display: block;
    }
    .img_ft {
        display: flex;
        align-items: center;
    }
    .img_ft img {
        width: 350px;
        height: 196px;
        margin: 0 auto;
    }
    .carac .li2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 834px) {
    .img-sub {
        display: block;
    }
    .img_ft {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img_ft img {
        width: 100%;
        margin: 0 auto;
    }
    .carac .li2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.portfolio {
    margin: 20px;
}
.title-port {
    text-align: center;
    margin: 10px;
    padding: 15px;
    font-size: 40px;
    font-family: Trebuchet MS, Lucida Sans Unicode, Lucida Grande, Lucida Sans, Arial, sans-serif;
}
.subti-porta {
    font-size: 1.3em;
}
.wrapper {
    position: relative;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.card-port {
    position: relative;
    width: 240px;
    height: 280px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 10px #0003;
}
.poster {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.poster:before {
    content: "";
    position: absolute;
    bottom: -45%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.3s;
}
.card-port:hover .poster:before {
    bottom: 0;
}
.poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.card-port:hover .poster img {
    transform: scale(1.1);
}
.details {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.5em 1.5em 2em;
    background: #000a;
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
    transition: 0.3s;
    color: #fff;
    z-index: 2;
}
.card-port.flipped .details {
    bottom: 0;
}
.details h1 {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 5px;
}
.desc {
    font-size: 0.9em;
}
@media (min-width: 768px) {
    .card-port:hover .poster img {
        transform: scale(1.1);
    }
    .card-port:hover .details {
        bottom: 0;
    }
}
@media (max-width: 768px) {
    .card-port,
    .card-port.flipped .details {
        transform: rotateY(0);
    }
}
.metodologia {
    margin: 20px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-image {
    width: 550%;
    height: 50px;
    object-fit: cover;
}
.titumeto {
    width: 100%;
    font-size: 25px;
    margin: 20px auto;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.card-title {
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
}
.card-des {
    font-size: 0.9rem;
    text-align: center;
    padding: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 2rem;
    transition: max-height 0.3s ease-out;
}
.card-des.expanded {
    white-space: normal;
    font-size: 0.8rem;
    max-height: 100rem;
}
.btn-vm {
    margin: 20px auto;
    width: 100px;
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #1976d2;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-vm:hover {
    background-color: #68a3fb;
}
.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-cont {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 0.8fr));
    gap: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.card-meto {
    background-color: #e9e9e9;
}
@media screen and (max-width: 768px) {
    .card-meto {
        width: 100%;
    }
    .card-cont {
        flex-direction: column;
        align-items: center;
    }
}
.card-meto {
    border: 1px solid #b1aeae;
    padding: 10px;
    border-radius: 8px;
    width: 250px;
}
.card-image {
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}
.card-image:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    opacity: 0.9;
}
.subtitu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subtitu .sub-somos {
    width: 100%;
    font-size: 22px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
    padding: 3%;
}
.blogs-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.img-blogs {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-noticias {
    width: 40%;
    display: flex;
    flex-direction: column;
}
.titublogs {
    margin: 15px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.subtiblogs {
    font-size: 21px;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.card-blogs {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(305px, 0.1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px;
    padding: 20px;
    column-gap: 2px;
}
@media (max-width: 768px) {
    .subtiblogs {
        font-size: 12px;
    }
    .blogs-title {
        flex-direction: column;
    }
    .blog-noticias {
        width: 100%;
    }
    .img-blogs {
        order: 2;
    }
    .blogs-title {
        display: block;
    }
    .img-blogs {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-noticias .subtiblogs {
        text-align: center;
        font-size: 22px;
    }
    .img-blogs img {
        width: 350px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 884px) {
    .subtiblogs {
        font-size: 12px;
    }
    .blogs-title {
        flex-direction: column;
    }
    .blog-noticias {
        width: 100%;
    }
    .img-blogs {
        order: 2;
    }
    .blogs-title {
        display: flex;
        justify-content: center;
    }
    .img-blogs {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-noticias .subtiblogs {
        text-align: center;
        font-size: 22px;
    }
    .img-blogs img {
        width: 350px;
        margin: 0 auto;
    }
}
.titi-cont h1 {
    display: block;
    text-align: center;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.parrafo-contacto {
    text-align: center;
    font-size: 1.4rem;
    padding: 4%;
    font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande, Lucida Sans Unicode, Geneva, Verdana, sans-serif;
}
.map {
    margin: 20px;
    padding: 15px;
}
.mapa {
    display: flex;
    margin: 0 auto;
}
.conten {
    margin: 20px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 350px;
    padding: 15px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 20px;
}
input[type="texto"],
input {
    width: 740px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 20px;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333333' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: center;
    cursor: pointer;
}
textarea {
    resize: none;
    width: 1130px;
    field-sizing: content;
    justify-content: center;
}
.proyectocotizar {
    width: 63% !important;
}
button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s ease;
}
.btn-cont {
    display: flex;
    justify-content: center;
}
.btn-cont button {
    background-color: #1976d2;
    color: #fff;
    border: none;
    border-radius: 10px;
    height: 40px;
    width: 100px;
    cursor: pointer;
}
.btn-cont button:hover {
    background-color: #091a9c;
    transition: transform 0.3s ease;
}
.input-contact {
    display: table-caption;
}
@media (max-width: 768px) {
    .conten {
        display: block;
    }
    .label {
        display: flex;
        justify-content: center;
    }
    .label2 {
        display: grid;
        width: 100%;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 93%;
    }
    input[type="texto"],
    input {
        width: 100%;
    }
    textarea {
        width: 93%;
    }
    .proyectocotizar {
        width: 93% !important;
    }
    .input-contact {
        display: ruby;
        width: 90%;
    }
}
@media screen and (max-width: 884px) {
    .conten {
        display: block;
    }
    .label {
        display: flex;
        justify-content: center;
    }
    .label2 {
        display: grid;
        width: 100%;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 94%;
    }
    input[type="texto"],
    input {
        width: 100%;
    }
    textarea {
        width: 94%;
    }
    .proyectocotizar {
        width: 94% !important;
    }
    .input-contact {
        display: ruby;
        width: 90%;
    }
}
.contefoot {
    background-color: #e6e6e6;
    min-height: 300px;
}
.container-foo {
    padding: 20px;
}
.footitu {
    color: #417bbd;
    padding: 20px;
}
.img-social {
    display: grid;
    justify-content: center;
    align-items: end;
    align-content: center;
    justify-items: end;
}
.contenelogo {
    display: flex;
    justify-content: space-evenly;
}
.imag {
    margin: 20px;
}
.contenelogo .image {
    display: flex;
    height: 120px;
    margin: 0 auto;
}
.contenelogo .image:hover {
    transition: transform 0.3s ease ease-in-out;
    transform: scale(1.07);
    opacity: 0.9;
}
.icon-content {
    width: 100%;
    color: #417bbd;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.iconos-content {
    color: #417bbd;
    font-size: 100%;
}
.icons-a {
    color: #417bbd;
}
.icons-a:hover {
    transition: transform 0.3s ease ease-in-out;
    transform: scale(1.07);
    opacity: 0.9;
}
.iconos-content p {
    font-size: 1rem;
}
hr {
    width: 100%;
    color: #417bbd;
}
.copy {
    color: #417bbd;
    margin-top: 17px;
}
.parrafo-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 17px;
}
.direcc {
    display: flex;
    align-items: center;
}
.dir {
    display: grid;
    font-size: 15px;
    padding: 10px;
}
.dire {
    font-size: 1.5em;
}
.span5 {
    font-size: 17px;
    text-decoration: none;
    color: #417bbd;
}
@media (max-width: 768px) {
    .contenelogo,
    .img-social {
        display: block;
    }
    .footitu {
        text-align: center;
    }
    .contac {
        display: grid;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
    .icon-content {
        width: 100%;
    }
    .icon-content a i {
        font-size: 0.8em;
    }
}
