@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --AccentColor: #bc4141;
    --NeutralColor-Dark: #f31c40;
    --NeutralColor-Light: #c45351;
    --NeutralColor-Light-white: #ffffff;
    --NeutralColor-Light-gray: #EDEDED;
    --NeutralColor-gray: #333333;
    --white: #ffffff;
    --font-title: "Geologica", sans-serif;
    --font-text: "Poppins", sans-serif;
    --fs-body: 1rem;
    --fs-h1: 2.3rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.4rem;
    --fs-h4: 1.3rem;
    --fs-h5: 1.2rem;
}
body {
    font-family: var(--font-text);
    font-size: var(--fs-body);
    background-color: #fffdfd;
    overflow-x: hidden;
}
h1 {
    font-size: var(--fs-h1);
}
h2 {
    font-size: var(--fs-h2);
}
h3 {
    font-size: var(--fs-h3);
}
h4 {
    font-size: var(--fs-h4);
}
h5 {
    font-size: var(--fs-h5);
}
h6 {
    font-size: var(--fs-h6);
}
button {
    cursor: pointer;
}
.color_title {
    color: #1c1c1c;
}
.gray {
    margin-top: 3rem;
    color: var(--NeutralColor-Light-white);
    font-weight: 400;
}
header {
    z-index: 3;
    width: 100%;
    position: fixed;
    transition: 0.3s;
}
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    align-items: center;
}
.navbar img {
    margin: 0 25px;
}
.active {
    color: var(--white) !important;
}
.onActive {
    background: var(--NeutralColor-gray);
}
.now {
    background: var(--NeutralColor-gray);
}
.nav-btn {
    color: var(--NeutralColor-Light-white);
    text-decoration: none;
    margin: 0 25px;
}
.container-hamburger {
    display: flex;
    align-items: center;
}
.hamburger {
    position: relative;
    width: 2.2rem;
    height: 0.1rem;
    background: var(--white);
    border-radius: 0.6rem;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
    margin-right: 1rem;
}
.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 0.1rem;
    right: 0;
    background: var(--white);
    border-radius: 0.6rem;
    transition: 0.3s;
    width: 2.2rem;
}
.hamburger:before {
    top: -8px;
}
.hamburger:after {
    top: 8px;
}
.toggle-menu {
    position: absolute;
    width: 2rem;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}
.hamburger,
.toggle-menu {
    display: none;
}
.container-hamburger input:checked ~ .hamburger {
    background: transparent;
}
.container-hamburger input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
}
.container-hamburger input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
}
.container-hamburger input:checked ~ .menu {
    right: 0;
}
.section-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--white);
    font-family: var(--font-title);
    align-items: start;
    background: var(--NeutralColor-gray);
}
.container-hero {
    text-align: start;
    justify-content: center;
    display: flex;
    align-items: start;
    flex-direction: column;
    height: 90vh;
    gap: 1rem;
    padding: 1rem;
    z-index: 1;
}
.container-hero img {
    margin: 0;
}
.container-numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-text);
}
.container-numbers div {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.numbers-size {
    font-size: 1.8rem;
    font-weight: 700;
}
.hero-title {
    font-weight: 500;
    font-size: var(--fs-h2);
    width: 18rem;
    margin: 0 0.4rem 2rem 0;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.2;
}
.video-container2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
}
.primary-button {
    background: linear-gradient(60deg, #d30a0a, var(--AccentColor));
    font-family: var(--font-text);
    color: var(--white);
    padding: 1rem;
    border: none;
    box-shadow: 0 0 3rem var(--AccentColor);
    border-radius: 50px;
    display: flex;
    gap: 4px;
}
.primary-button a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
}
.section-projects {
    padding: 2rem 1rem 1rem 1rem;
}
.container_pro {
    padding: 3rem 1rem;
    background-color: #ece1df;
}
.text-container {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
}
.text-container h2 {
    color: var(--AccentColor);
}
.container-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.div_img_proyectos {
    border-radius: 10px;
    width: 100%;
    height: 315px;
}
.card {
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    overflow: hidden;
    gap: 1rem;
    border-radius: 0.6rem;
    height: 500px;
    background-color: #bc4141;
}
.img_proyectos {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.txt-crd {
    padding: 1.5rem;
    padding-bottom: 3rem;
}
.txt-crd h3 {
    font-weight: 600;
}
.txt-crd p {
    font-size: 0.9rem;
}
.section-different {
    background-color: #fffdfd;
    padding: 1rem;
}
.container-card-d {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 3rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
}
.text-container-d {
    padding-top: 3rem;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
}
.text-container-d span {
    color: var(--AccentColor);
}
.card_item {
    display: flex;
    align-items: self-start;
    justify-content: start;
    gap: 2rem;
}
.card_item p {
    color: var(--NeutralColor-gray);
}
.phrase {
    padding: 4rem 2rem;
    border-radius: 2rem;
    width: 80%;
    margin: 0 auto 40px auto;
    background-image: url(../Img/fondoTrabajadores.jpeg);
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--white);
}
.container-phrase {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    gap: 1.5rem;
    width: 100%;
}
.container-phrase h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}
.container-phrase p {
    font-size: 1rem;
    line-height: 1.5;
    color: #d0d0d0;
}
.phrase-shadow {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(155deg, #474747a4, #000000cb 80%);
    border-radius: 2rem;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 1;
}
.principalProjects {
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
}
.section-principalProjects {
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fffdfd;
}
.text-container2 {
    padding: 0.5rem 0;
}
.card2 {
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
    gap: 2rem;
    height: 22rem;
    border-radius: 0.6rem;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    background-position: center center;
    background-size: cover;
    padding: 2rem 1rem;
}
.proyecto1 {
    background-image: url(/Img/torre_medica.webp);
}
.proyecto2 {
    background-image: url(/Img/construcción_de_edificios_comerciales.webp);
}
.proyecto3 {
    background-image: url(/Img/OM_edificio.webp);
}
.proyecto4 {
    background-image: url(/Img/estructura_edificio.webp);
}
.proyecto5 {
    background-image: url(/Img/Bruxxel.webp);
}
.proyecto6 {
    background-image: url(/Img/estructuraE55.webp);
}
.container-crd2 {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.proyect-shadow {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(220.55deg, #000000 0%, #000000 100%);
    width: 100%;
    height: 100%;
    opacity: 0.5;
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}
/* footer */
footer {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 80px;
    background: linear-gradient(220.55deg, #a74730 0%, #a11818 100%);
    color: #fff;
}
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}
.wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.wrapper .footer-widget {
    width: calc(20% - 30px);
    margin: 0 15px 30px;
    padding: 0 12px;
}
.wrapper .footer-widget:nth-child(1) {
    width: calc(40% - 50px);
    margin-right: 15px;
}
.wrapper .footer-widget .logo {
    margin-bottom: 1rem;
    vertical-align: middle;
}
.wrapper .footer-widget p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 20px;
}
.wrapper .footer-widget .socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wrapper .footer-widget .socials li {
    list-style: none;
}
.wrapper .footer-widget .socials li a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    color: #ffffff;
    background-color: rgba(255, 119, 119, 0.5);
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}
.wrapper .footer-widget .socials li a:hover {
    background-color: #f79b9b;
}
.wrapper .footer-widget h4 {
    color: #ffffff;
    margin: 10px 0 1rem;
    font-size: 20px;
    font-weight: 600;
}
.wrapper .footer-widget .links li {
    list-style: none;
}
.wrapper .footer-widget .links li a {
    color: #ffeeee;
    font-size: 15px;
    text-decoration: none;
    line-height: 1rem;
    transition: all 0.3s ease-out;
    word-break: break-word;
}
.wrapper .footer-widget .links li a:hover {
    color: #ffb0b0;
}
.copyright-wrapper {
    padding: 20px 0;
    border-top: 1px solid rgb(255, 248, 248)
}
.copyright-wrapper p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.copyright-wrapper p a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-out;
}
.copyright-wrapper p a:hover {
    color: #ffb0b0;
}
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    .wrapper .footer-widget,
    .wrapper .footer-widget:nth-child(1) {
        width: calc(50% - 30px);
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    .wrapper .footer-widget,
    .wrapper .footer-widget:nth-child(1) {
        width: 100%;
        margin: 0 10px 50px;
    }
}
/* fin de footer */
.JustOn {
    opacity: 1 !important;
}
/* Sobre nosotros */
.aboutUs video {
    width: 100%;
    margin: auto 0;
    border-radius: 0.5rem;
    -webkit-box-shadow: -1px 14px 70px 0px rgba(222, 36, 36, 0.500);
    -moz-box-shadow: -1px 14px 70px 0px rgb(222, 36, 36, 0.500);
    box-shadow: -1px 14px 70px 0px rgb(222, 36, 36, 0.500);
}
.hdUs {
    left: -0.01vw;
    top: -0.01vh;
}
.aboutUs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-top: 10rem;
    gap: 1.5rem;
}
.aboutUs div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}
.container-us {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.text-container-d2 {
    padding-top: 3rem;
    gap: 1rem;
}
.text-container-d2 span {
    color: var(--AccentColor);
    font-style: italic;
}
.card_item2 {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: start;
    gap: 2rem;
}
.card_item2 p {
    color: var(--NeutralColor-gray);
}
.aboutUs p {
    width: 90%;
}
/* portafolio */
.portafolio{
    display: grid;
    justify-content: center;
    text-align: center;
    margin-top: 10rem;
    gap: 1.5rem;
}
.pdf{
    width: 100%;
    margin: 50px auto;
    border-radius: 0.5rem;
    -webkit-box-shadow: -1px 14px 70px 0px rgba(222, 36, 36, 0.100);
    -moz-box-shadow: -1px 14px 70px 0px rgb(222, 36, 36, 0.100);
    box-shadow: -1px 14px 70px 0px rgb(222, 36, 36, 0.200);
}
.portafolio div {
    gap: 0.5rem;
}
.portafolio p {
    width: 90%;
}
.section-different2 {
    background-color: #fffdfd;
}
.container-card-d2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
@media screen and (max-width: 528px) {
    .hamburger,
    .toggle-menu {
        display: block;
    }
    .menu {
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        background: var(--NeutralColor-gray);
        width: 18rem;
        height: 100%;
        padding: 5rem;
        right: -20rem;
        text-align: center;
        transition: 0.3s;
    }
    .menu a {
        padding: 2rem;
    }
}
@media screen and (min-width: 563px) {
    .card2 {
        width: 90%;
        margin: auto;
    }
    .card {
        width: 90%;
        margin: auto;
    }
    .section-hero {
        align-items: center;
    }
    .container-hero {
        justify-content: center;
        align-items: center;
        width: 90%;
    }
    .container-hero h1 {
        text-align: center;
        width: 100%;
        font-size: 1.8rem;
    }
    .none {
        display: none;
        transition: all 0.3s ease;
    }
}
@media screen and (max-width: 563px) {
    .none2 {
        opacity: 0;
        transition: all 0.3s ease;
    }
}
@media screen and (min-width: 581px) {
    .card2 {
        width: 80%;
    }
    .card {
        width: 80%;
    }
    .container-hero h1 {
        font-size: 2.2rem;
    }
    .container-phrase h2 {
        font-size: 1.8rem !important;
    }
    .primary-button {
        padding: 1.5rem;
    }
}
@media screen and (min-width: 642px) {
    .card2 {
        width: 100%;
        margin: 0;
    }
    .card {
        width: 100%;
        margin: 0;
    }
    .principalProjects {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .container-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    footer {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    .text-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }
    .text-container p {
        width: 60%;
    }
}
@media screen and (min-width: 928px) {
    .principalProjects {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .container-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .container-phrase {
        width: 70%;
        margin: auto;
        text-align: center;
        align-items: center;
    }
    .container-hero {
        justify-content: center;
        align-items: center;
        width: 70%;
    }
    .numbers-size {
        font-size: 2rem;
    }
    .gray {
        font-size: 1.2rem;
    }
    .container-card-d {
        grid-template-columns: repeat(3, 1fr);
    }
    .card_item {
        flex-direction: column;
    }
    .card_item h4 {
        text-align: center;
    }
    .text-container-d {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    .text-container-d p {
        width: 60%;
    }
    h2 {
        font-size: 2rem;
    }
}
@media screen and (min-width: 1200px) {
    .container-phrase {
        width: 60%;
    }
    .container-hero {
        padding: 3rem;
        height: 100vh;
    }
    .navbar {
        padding: 1.5rem 1.4rem;
    }
    .section-projects {
        padding: 3rem;
    }
    .section-different {
        padding: 3rem 3rem;
    }
    .section-principalProjects {
        padding: 5rem 3rem;
    }
    .card2 {
        height: 25rem;
    }
    footer {
        padding: 2rem 3rem 0 3rem;
    }
}
@media screen and (min-width: 1200px) {
    .container-phrase {
        width: 50%;
    }
    .card2 {
        height: 26.5rem;
    }
    .text-container-d p {
        width: 50%;
    }
}
@media screen and (min-width: 1408px) {
    .card2 {
        height: 28rem;
        width: 95%;
        margin: auto;
    }
    .container-hero {
        width: 60%;
    }
    h2 {
        font-size: 2.2rem;
    }
    h1 {
        font-size: 2.5rem !important;
    }
    .card_item {
        width: 80%;
        margin: auto;
    }
    .card {
        width: 95%;
        margin: auto;
    }
}
@media screen and (max-width: 550px) {
    .container-card-d2 {
        display: grid;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
    .aboutUs,
    .section-different2 {
        padding: 0 2rem 5rem 2rem !important;
    }
}
@media screen and (max-width: 616px) {
    .aboutUs h1,
    .section-different2 h1 {
        font-size: 1.8rem;
    }
    .aboutUs p,
    .section-different2 p {
        font-size: 0.8rem;
    }
    .section-different2 h3 {
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 826px) {
    .container-card-d2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}
@media screen and (max-width: 1000px) {
    .aboutUs p {
        width: 100%;
    }
}
@media screen and (max-width: 1188px) {
    .aboutUs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        margin-top: 10rem;
        gap: 1.5rem;
    }
}
@media screen and (max-width: 1500px) {
    .aboutUs h1,
    .section-different2 h1 {
        font-size: var(--fs-h2);
    }
    .aboutUs p,
    .section-different2 p {
        font-size: 0.9rem;
    }
    .section-different2 h3 {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1620px) {
    .pf {
        font-size: 1rem !important;
    }
    .container-phrase {
        width: 40%;
    }
    .container-phrase h2 {
        font-size: 2.2rem !important;
    }
}
@media screen and (max-width: 1799px) {
    .aboutUs,
    .section-different2 {
        padding: 0 5rem 5rem 5rem;
    }
}
@media screen and (min-width: 1800px) {
    body {
        width: 70%;
        margin: auto;
        overflow-x: hidden;
    }
    .section-hero {
        margin: auto;
        position: relative;
        width: 100vw;
        left: -22%;
    }
    .container-hero {
        width: 40%;
    }
    .phrase {
        margin: auto;
        position: relative;
        width: 100vw;
        left: -22%;
    }
    footer {
        margin: auto;
        position: relative;
        width: 100vw;
        left: -22%;
    }
    .svg2 {
        margin: auto;
        position: relative;
        width: 100vw;
        left: -22%;
    }
    .section-projects {
        width: 70%;
        margin: auto;
    }
    svg {
        margin: auto;
        position: relative;
        width: 100vw;
        left: -22%;
    }
}
@media screen and (max-width: 425px) {
    .aboutUs p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}