#construccion {
    position: relative;
}

#construccion .construccion-text {
    background-color: var(--primary-color);
    padding: 80px 0;
}

#construccion .text-block h2 {
    color: white;
    text-wrap: balance;
    text-transform: uppercase;
    font-family: 'TenorSans', sans-serif;
    font-weight: 400 !important;
    font-size: 38px !important;
    line-height: 123% !important;
}
#construccion .text-block p {
    color: white;
}

#construccion .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
}

#construccion .img-block {
    width: 100%;
    height: 100%;
}

#construccion .img-block>h1,
#construccion .text-container>h1 {
    margin-bottom: 40px;
    color: #fff;
    font-size: 28px !important;
}

#construccion .img-block>img {
    width: 100%;
    object-fit: cover;
}

#construccion .text-container {
    padding: 0;
    background-color: var(--primary-color);
}

#construccion .text-container .input-style ::placeholder,
#construccion .text-container .checkboxs .checkbox-style>span {
    color: #fff;
}

#construccion .text-container .checkboxs .checkbox-style>input {
    border-color: #fff;
}

#construccion .text-container .checkboxs .checkbox-style>input::before {
    box-shadow: inset 1em 1em #fff;
}

#construccion .text-container .input-style {
    border-bottom: 1px solid #fff;
}

#construccion .text-container .text-construccion .primary-btn-custom {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

#construccion .flex-wrapper {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary-color);
}

#construccion .flex-wrapper h3>span {
    color: var(--text-color);
    text-transtext: none;
}

#construccion .logo {
    height: 60px;
}

@media(max-width: 998px) {
    #construccion .grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #construccion .flex-wrapper {
        padding: 10px;
        display: block;
    }

    #construccion .logo {
        height: 40px;
    }
}