/* -> GERAL */

@font-face {
    font-family: "Marion";
    src: url("/wp-content/themes/colmeia/assets/fonts/marion-regular.ttf");
}

:root {
    --font-opensans: "Open Sans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-roboto: "Roboto", sans-serif;
}

.body-modal {
    overflow: hidden;
}

.wrap {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.wrap--short {
    max-width: 800px;
}

#wpadminbar {
    display: none;
}

a,
a:focus,
a:visited {
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

a {
    color: #000;
    text-decoration: none !important;
}

/* <- GERAL */

/* -> HEADER */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 999;
    height: 72px;
    background-color: #323232f2;
}

.header--scroll {
    position: fixed;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
    z-index: 100;
    width: 100%;
    height: 53px;
}

.header--scroll .header__grid-a-img {
    height: 42px;
}

.header__wrap {
    height: 100%;
}

.header__container {
    height: 100%;
}

.header__grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    height: 100%;
}

.header__grid-a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
    background-color: #fff;
}

.header__grid-a-img {
    height: 54px;
}

.header__grid-a--fake {
    height: inherit !important;
    position: absolute;
    right: 100%;
    top: 0;
    height: 72px;
    background-color: #fff;
    width: 200%;
}

.header__grid-b {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 5px 0 5px 50px;
    background-color: #323232;
    opacity: 0.9;
}

.header__grid-b--fake {
    height: inherit !important;
    position: absolute;
    left: 100%;
    top: 0;
    height: 72px;
    background-color: #323232f2;
    width: 100%;
}

.header__selectCity,
.h__option--selected,
.h__option--toSelect,
.header__customersArea,
.header__realtonArea,
.header__mobile-button {
    color: #969696;
    text-decoration: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.h__option--selected:hover,
.h__option--toSelect:hover,
.header__customersArea:hover,
.header__realtonArea:hover,
.header__mobile-button:hover {
    color: #e1e0e0;
}

.header__selectCity {
    font-family: var(--font-opensans);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header__selectCity-title {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
}

.h__option--selected {
    display: flex;
    gap: 10px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.header__selectCity-select {
    position: relative;
}

.h__option-container {
    display: none;
    width: calc(100% + 20px);
    padding: 0 0 5px 11px;
    position: absolute;
    background-color: #323232;
    top: 19px;
    left: -11px;
}

.h__option--toSelect {
    display: block;
    line-height: 1;
    padding: 5px 0;
    white-space: nowrap;
}

.h__option--toSelect:hover {
    color: #e1e0e0;
}

.h__option-icon {
    width: 16px;
    font-size: 16px;
}

.header__customersArea,
.header__realtonArea {
    display: flex;
    align-items: end;
    gap: 6px;
    font-size: 16px;
}

.header__customersArea-text,
.header__realtonArea-text {
    line-height: 0.8;
}

.header__mobile-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #a8a8a8;
    line-height: 1;
    cursor: pointer;
    gap: 5px;
    padding-top: 2px;
    text-align: center;
    justify-content: center;
}

.header__mobile-button-icon {
    font-size: 30px;
}

.header__mobile-button-span {
    font-family: var(--font-opensans);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.header__mobile-button-hamburguer {
    cursor: pointer;
    width: 27px;
    height: 19px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__mobile-button-hamburguer-bar {
    background-color: #969696;
    height: 3px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.header__mobile-button:hover .header__mobile-button-hamburguer-bar {
    background-color: #e1e0e0;
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    display: grid;
    place-items: start;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    width: 300px;
    height: 100vh;
    padding: 90px 20px 40px 20px;
    background-color: #323232;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    z-index: -1;
}

.header__mobile-menu--active {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.header__mobile-menu-nav {
    display: grid;
    gap: 20px;
}

.header__mobile-menu-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__mobile-menu-nav-link-img {
    width: 24px;
}

.header__mobile-menu-nav-link {
    color: #969696;
    text-decoration: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    text-transform: uppercase;
}

.header__mobile-menu-nav-link:hover {
    color: #e1e0e0;
}

.header__mobile-menu-areas {
    display: none;
    gap: 20px;
}

.header__customersArea--mobile,
.header__realtonArea--mobile {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #969696;
    text-decoration: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.header__customersArea--mobile:hover,
.header__realtonArea--mobile:hover {
    color: #e1e0e0;
}

.header__customersArea-icon--mobile,
.header__realtonArea-icon--mobile {
    width: 24px;
    font-size: 24px;
    text-align: center;
    color: #fff;
}

.header__customersArea-text--mobile,
.header__realtonArea-text--mobile {
    line-height: 0.8;
    text-transform: uppercase;
}

.header__mobile-menu-rs {
    font-family: var(--open-sans);
    color: #919191;
}

.header__mobile-menu-rs-title {
    font-weight: bold;
}

.header__mobile-menu-rs-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__mobile-menu-rs-item {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    box-shadow: -5px 5px 21px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-decoration: none;
}

.header__mobile-menu-rs-item:hover {
    background-color: #db050c;
}

.header__mobile-menu-rs-item:hover .header__mobile-menu-rs-item-icon {
    color: #fff;
}

.header__mobile-menu-rs-item-icon {
    font-size: 18px;
    color: #db050c;
}

.rotate-top {
    transform: translateY(8px) rotate(45deg);
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
}

.rotate-bottom {
    transform: translateY(-8px) rotate(-45deg);
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
}

.fade {
    opacity: 0;
}

/* <- HEADER */

/* -> BANNER--1 */

.main-banner {
    width: 100%;
    height: 84vh;
    position: relative;
}

.main-banner .main-banner__slider {
    width: 100%;
    height: 100%;
}

.main-banner .slide-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-banner .slide-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner .slide-item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-banner .slide-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 80px;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__flex {
        display: flex;
    }
}

.main-banner .overlay__tag {
    background-color: #ec232b;
    color: #fff;
    display: inline-flex;
    padding: 2px 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    align-self: center;
    font-size: 14px;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__tag {
        margin-bottom: 0;
        margin-left: 20px;
    }
}

.main-banner .overlay__title {
    font-family: Times New Roman;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    width: 80%;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__title {
        max-width: 800px;
        font-size: 50px;
    }
}

.main-banner .overlay__subtitle {
    font-weight: 600;
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__subtitle {
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.main-banner .overlay__address {
    font-weight: 300;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__address {
        font-size: 20px;
    }
}

.main-banner .overlay__address p {
    margin: 0;
}

.main-banner .overlay__address i {
    margin-right: 10px;
}

.main-banner .overlay__link {
    display: inline-flex;
    margin-top: 30px;
    text-transform: uppercase;
    line-height: 1.2;
    vertical-align: sub;
    transition: 400ms;
    font-weight: 300;
    color: #fff;
}

.main-banner .overlay__link:hover {
    letter-spacing: 2px;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__link {
        font-size: 20px;
    }
}

.main-banner .overlay__link i {
    font-size: 12px;
    margin-top: 5px;
    margin-left: 5px;
}

@media only screen and (min-width: 1200px) {
    .main-banner .overlay__link i {
        font-size: 16px;
        margin-left: 10px;
    }
}

.main-banner .swiper-button-next,
.main-banner .swiper-button-prev {
    display: none;
}

@media only screen and (min-width: 1200px) {

    .main-banner .swiper-button-next,
    .main-banner .swiper-button-prev {
        display: block;
    }
}

.main-banner .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .swiper-pagination-bullet {
    background: #fff;
    width: 6px;
    height: 6px;
    opacity: 1;
}

.main-banner .swiper-pagination-bullet-active {
    margin-top: 0;
    width: 12px;
    height: 12px;
    background: #bd1d1d;
}

.slide-controls__prev {
    position: absolute;
    top: calc(50% - 50px);
    left: 20px;
    background-color: transparent;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -50px;
    padding-left: 30px;
    font-size: 32px;
    cursor: pointer;
    display: none;
    color: #bd1d1d;
}

@media only screen and (min-width: 1200px) {
    .slide-controls__prev {
        display: flex;
    }
}

.slide-controls__next {
    position: absolute;
    top: calc(50% - 50px);
    right: 20px;
    background-color: transparent;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-right: -50px;
    padding-right: 30px;
    cursor: pointer;
    display: none;
    color: #bd1d1d;
}

@media only screen and (min-width: 1200px) {
    .slide-controls__next {
        display: flex;
    }
}

.image {
    max-width: 100%;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.image.fluid {
    width: 100%;
}

.image.cover {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image.block {
    display: block;
}

/* <- BANNER--1 */

/* -> CIDADES */

.cidades {
    padding: 70px 0 140px;
    background-color: #f5f5f5;
}

.cidades__container {
    display: grid;
    gap: 60px;
    font-family: var(--font-poppins);
}

.cidades__title {
    color: #db050c;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.cidades__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cidades__options-option {
    color: #000;
    padding: 10px 40px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    box-shadow: -5px 5px 21px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    text-decoration: none;
    line-height: 1;
}

.cidades__options-option:hover {
    color: #db050c;
}

/* <- CIDADES */

/* -> BLOG */

.blog {
    padding: 70px 0;
}

.blog__container {
    display: grid;
}

.blog__label {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
}

.blog__title {
    color: #db050c;
    margin-bottom: 27px;
    font-family: var(--font-poppins);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog__grid-item {
    display: grid;
    gap: 13px;
    text-decoration: none;
    place-items: start center;
    grid-template-rows: fit-content(1ch) 1fr;
}

.blog__grid-item-img {
    max-width: 364px;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog__grid-item-title {
    color: #000;
    font-family: var(--open-sans);
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    text-align: center;
}

.blog__seemore {
    display: inline-block;
    width: fit-content;
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 400;
    padding: 14px 23px;
    margin: 50px auto 0 auto;
    text-transform: uppercase;
    background-color: #db050c;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-decoration: none;
    line-height: 1;
}

.blog__seemore:hover {
    background-color: #f00109;
}

/* <- BLOG */

/* -> FORM */

.form {
    margin-bottom: 55px;
}

.form__wrap {
    padding: 0 !important;
}

.form__container {
    padding: 60px;
    background-color: rgba(74, 66, 66, 0.77);
    background: url("/wp-content/themes/colmeia/assets/img/form.jpg") no-repeat center center;
    background-size: cover;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.form__grid-a-title {
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.form__grid-b-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-bottom: 20px;
}

.form__grid-b-form-field {
    margin-bottom: 20px;
}

.form__grid-b-form-field-text {
    display: grid;
}

.form__grid-b-form-field-label {
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 16px;
    margin-right: 5px;
}

.form__grid-b-form-field-input-text {
    height: 40px;
    padding: 5px 10px;
    color: #fff;
    border: 1px solid #fff;
    outline: none;
    background: transparent;
}

.form__grid-b-form-field-input {
    margin-right: 2px;
}

.form__grid-b-form-field-link {
    color: #fff;
    color: #ff9000;
    text-decoration: none;
}

.form__grid-b-form-submit {
    appearance: none;
    width: 107px;
    height: 41px;
    background-color: #1e1e1e;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.form__grid-b-form-submit:hover {
    background-color: #3f3f3f;
}

/* <- FORM */

/* -> FOOTER */

.footer {
    background-color: #000;
}

.footer__line {
    background-color: #f5f5f5;
    font-family: var(--font-opensans);
}

.footer__line-container {
    background: url("/wp-content/themes/colmeia/assets/img/logo-acrilico-2.png") no-repeat center center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__line-title {
    display: grid;
    color: #ff0400;
    font-size: 32px;
    font-weight: 300;
    margin: 0;
}

.footer__line-rs-container {
    display: flex;
    gap: 15px;
}

.footer__line-rs {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    box-shadow: -5px 5px 21px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-decoration: none;
}

.footer__line-rs:hover {
    background-color: #db050c;
}

.footer__line-rs:hover .footer__line-rs-icon {
    color: #fff;
}

.footer__line-rs-icon {
    font-size: 25px;
    color: #db050c;
}

.footer__body {
    padding: 70px 0 80px 0;
    background-color: #1c1c1c;
}

.footer__body-wrap {
    display: grid;
    gap: 70px;
}

.footer__body-pages {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer__body-pages-item {
    padding: 25px 0 0 0;
    font-family: var(--open-sans);
    color: #919191;
}

.footer__body-pages-item--logo {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
}

.footer__body-pages-item-caption {
    color: #7f7f7f;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.footer__body-pages-item-caption-emphasis {
    color: #e30000;
}

.footer__body-pages-item-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__body-pages-item-container-link {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    row-gap: 18px;
    column-gap: 34px;
}

.footer__body-pages-item-link {
    color: #919191;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.footer__body-pages-item-link:hover {
    color: #fff;
}

.footer__body-branches {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer__body-branches-item {
    color: #919191;
    font-family: var(--open-sans);
}

.footer__body-branches-item-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__body-branches-item-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 0;
}
.footer__body-branches-item a {
    color: #919191;
    transition: all 200ms linear;
}
.footer__body-branches-item a:hover {
    color: #d2671b;
}

.footer__copyright {
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #070707;
}

.footer__copyright-text {
    color: #fff;
    font-family: var(--open-sans);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    text-align: center;
}

.grecaptcha-badge {
    display: none;
}

/* <- FOOTER */

/* -> PAGES */

.page__header {
    background-color: #323232;
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 36px;
    font-weight: 600;
    padding: 142px 0 70px 0;
    text-align: center;
}

.page__crumbs {
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 300;
    margin-top: 4px;
}

.page__crumbs a {
    color: #fff;
    text-decoration: none;
}

.page__crumbs a:hover {
    color: #ff9000;
}

.page__crumbs #crumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.page__content {
    overflow: hidden;
    padding: 70px 0;
}

.page__content a,
.page__content a:visited,
.page__content a:active {
    text-decoration: none;
}

.page__grid {
    display: grid;
    gap: 10px;
    grid-auto-flow: column;
    list-style: none;
    padding: 70px 0;
}

/* <- PAGES */

/* -> PÁGINA ENTERPRISES (PAGE 33) */

.enterprises {
    padding: 70px 0 0 0;
    margin: 0;
    background-color: #f5f5f5;
}

.page__content--enterprises {
    padding: 70px 0;
    margin: 0;
    background-color: #f5f5f5;
}

.enterprises__container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.enterprises__filter-title {
    color: #db050c;
    font-family: var(--font-poppins);
    font-size: 24 px;
    font-weight: 700;
}

.enterprises__filter-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enterprises__filter-form--mobile {
    display: none;
}

.enterprises__filter-form--mobile .enterprises__filter-form-container-select {
    display: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    gap: 10px;
    margin-bottom: 10px;
}

.enterprises__filter-form--mobile .enterprises__filter-form-select {
    max-width: unset;
}

.enterprises__filter-form-select {
    max-width: fit-content;
    width: 100%;
    border: none !important;
    background-color: #e7ecf2 !important;
    font-family: var(--open-sans);
    font-weight: 500 !important;
}

.enterprises__filter-form-select:focus {
    box-shadow: none !important;
}

.enterprises__filter-form-submit {
    display: inline-block;
    font-family: var(--open-sans);
    appearance: none;
    padding: 10px 50px;
    background-color: #ed232b;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 14px;
    border: none;
    line-height: 1;
    border-radius: 5px;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.enterprises__filter-form-submit:hover {
    background-color: #ff0008;
}

.enterprises__houses {
    display: grid;
    gap: 44px;
}

.enterprises__house {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 425px;
    gap: 30px;
    padding: 9px 10px;
    background-color: #fff;
    font-family: var(--font-opensans);
    font-size: 18px;
    height: 100%;
    box-shadow: -5px 5px 21px rgba(0, 0, 0, 0.07);
    background: url("/wp-content/themes/colmeia/assets/img/logo-acrilico-1.png") no-repeat left center;
    background-size: contain;
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

.enterprises__house-image-container {
    position: relative;
}

.enterprises__house-image-container-sold {
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 12px;
    line-height: 1;
    color: #bd1d1d;
}

.enterprises__house-image-container-sold-span {
    font-weight: bold;
    font-size: 24px;
}

.enterprises__house-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    padding: 15px 0 0 15px;
}

.enterprises__house-info--1 {
    position: relative;
}

.enterprises__house-type {
    color: #333333;
    font-family: var(--font-poppins);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.enterprises__house-status {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    background-color: #db050c;
    padding: 7px 14px;
}

.enterprises__house-title {
    max-width: 350px;
    font-family: var(--font-poppins);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 18px;
    white-space: pre-wrap;
    /* CSS3 */
    white-space: -moz-pre-wrap;
    /* Firefox */
    white-space: -pre-wrap;
    /* Opera <7 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: revert;
}

.enterprises__house-description {
    color: #000;
    font-family: var(--font-opensans);
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

.enterprises__house-specs-list {
    display: grid;
    grid-template-columns: fit-content(100%) fit-content(100%);
    grid-template-rows: repeat(4, fit-content(1ch));
    column-gap: 48px;
    row-gap: 18px;
    grid-auto-flow: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.enterprises__house-specs-item-title {
    color: #db050c;
    font-family: var(--font-opensans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.enterprises__house-specs-item-text {
    color: #484848;
    max-width: 350px;
    font-family: var(--font-opensans);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.enterprises__house-info-hr {
    height: 3px;
    border-top: none;
    background-color: #db050c;
    opacity: 1;
    margin: 15px 0;
}

.enterprises__house-info-location-icon {
    color: #db050c;
}

.enterprises__house-info-location-text {
    line-height: 1;
}

.enterprises__button {
    display: inline-block;
    width: fit-content;
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 400;
    padding: 14px 23px;
    margin: 40px auto 0 auto;
    text-transform: uppercase;
    background-color: #db050c;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-decoration: none;
    line-height: 1;
}

.enterprises__button:hover {
    background-color: #f00109;
}

.enterprises__pagination {
    font-size: 22px;
    font-family: var(--font-opensans);
    margin: 0 auto;
}

.enterprises__pagination a {
    color: #f00;
}

.enterprises__pagination ul {
    gap: 3px;
}

.enterprises__not-found {
    text-align: center;
}

/* <- PÁGINA ENTERPRISES (PAGE 33) */

/* -> PÁGINA REALTOR */

.page__content--realtor {
    padding: 70px 0;
    margin: 0;
    background-color: #f5f5f5;
}

.realtor__container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.realtor__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 50px;
}

.realtor__grid-item {
    position: relative;
    width: 100%;
    text-transform: none;
    overflow: hidden;
}

.realtor__grid-item-container-imgs {
    position: relative;
}

.realtor__grid-item-label {
    position: absolute;
    top: 43px;
    left: -41px;
    font-family: "Zurich1";
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #c10c1a;
    width: 175px;
    width: 200px;
    padding: 8px 0;
    z-index: 2;
}

.realtor__grid-item-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.realtor__grid-item-sold {
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 12px;
    line-height: 1;
    color: #bd1d1d;
}

.realtor__grid-item-sold-span {
    font-weight: bold;
    font-size: 24px;
}

.realtor__grid-item-infos {
    display: grid;
    gap: 5px;
    padding: 10px 0;
}

.realtor__grid-item-infos-type {
    color: #c10c1a;
    font-size: 12px;
    text-transform: uppercase;
}

.realtor__grid-item-infos-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 0;
}

.realtor__grid-item-infos-address {
    font-size: 16px;
    color: #919191;
}

.enterprises__pagination {
    font-size: 22px;
    font-family: var(--font-opensans);
    margin: 0 auto;
}

.enterprises__pagination a {
    color: #f00;
}

.enterprises__pagination ul {
    gap: 3px;
}

.enterprises__not-found {
    text-align: center;
}

/* <- PÁGINA REALTOR */

/* -> PÁGINA INSTITUCIONAL (PAGE 31) */

.page__content--institucional {
    font-family: var(--font-roboto);
}

.institucional__paragraphs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.institucional__paragraphs-grid--l1 {
    padding-bottom: 70px;
}

.institucional__paragraphs-grid-item-title {
    font-family: "Times New Roman";
    font-weight: bold;
    font-size: 35px;
    color: #bd1d1d;
    text-align: left;
    margin-bottom: 30px;
}

.institucional__paragraphs-grid-item-video,
.institucional__paragraphs-grid-item-video iframe {
    width: 100%;
    height: 100%;
}

.institucional__paragraphs-grid-item-blockquote {
    display: flex;
    gap: 12px;
}

.institucional__paragraphs-grid-item-blockquote::before {
    content: "\201C";
    color: #bd1d1d;
    font-size: 100px;
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
}

.institucional__paragraphs-grid-item-blockquote p {
    color: #4f4f4f;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
}

.institucional__city {
    padding: 70px 0 30px 0;
}

.institucional__city-banner {
    height: 400px;
    position: relative;
}

.institucional__city-banner-caption {
    position: absolute;
    left: 20px;
    bottom: 0;
    color: #fff;
}

.institucional__city-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    justify-items: end;
}

.institucional__city-box {
    display: grid;
    width: 350px;
    height: 350px;
    padding: 20px;
    margin-top: -50px;
    color: #bd1d1d;
    background-color: #fbfbfb;
    box-shadow: 0px 0px 15px -8px rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.institucional__city-box-title {
    font-size: 54px;
    font-weight: bold;
    font-family: "Times New Roman";
    text-align: right;
    line-height: 1;
}

.institucional__city-box-hyphen {
    display: block;
    font-size: 95px;
    line-height: 1;
}

.institucional__numbers-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    place-items: end start;
    gap: 30px;
}

.institucional__numbers-grid-item-square {
    width: 100%;
    height: 100%;
    background: #bd1d1d;
    color: #fff;
    padding: 80px 40px;
    font-size: 50px;
    font-weight: bold;
}

.institucional__numbers-grid-item-square-hyphen {
    display: block;
    font-size: 57px;
    line-height: 0.4;
}

.institucional__numbers-grid-item-square-description {
    font-size: 18px;
    font-weight: lighter;
}

.institucional__numbers-grid-item-list {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 30px;
}

.institucional__numbers-grid-item-list-item {
    font-size: 30px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
    color: #333539;
}

.institucional__numbers-grid-item-list-item-description p {
    font-size: 16px;
    margin-bottom: 15px;
}

.institucional__purpose {
    padding-top: 70px;
}

.institucional__purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.institucional__purpose-grid-item-title {
    width: 220px;
    color: #333333;
    font-size: 44px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
}

.institucional__purpose-grid-item-description {
    text-align: left;
}

.institucional__purpose-grid-item-description--quote::before {
    content: '"';
    display: block;
    height: 70px;
    font-size: 90px;
    color: #bd1d1d;
    line-height: 1.3;
    font-weight: bold;
}

.institucional__purpose-grid-item-description--plus::before {
    content: "+";
    display: block;
    font-size: 50px;
    height: 70px;
    color: #bd1d1d;
    line-height: 1.3;
    font-weight: bold;
}

.institucional__awards {
    padding: 70px 0;
    background-color: #fbfbfb;
}

.swiper {
    width: 100%;
    height: 100%;
}

.institucional__awards-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.institucional__awards-header-left {
    display: grid;
}

.institucional__awards-header-label {
    font-size: 14px;
}

.institucional__awards-header-title {
    font-size: 24px;
    font-weight: bold;
}

.institucional__awards-header-title--emphasis {
    color: #f00;
}

.institucional__awards-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.institucional__awards-header-arrows-left:hover,
.institucional__awards-header-arrows-right:hover {
    color: #d10;
}

.institucional__awards-content {
    padding: 50px 0;
}

.institucional__awards-content-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    column-gap: 50px;
    padding: 0 40px;
}

.institucional__awards-content-list-item {
    display: flex;
    gap: 10px;
    line-height: 1.2;
}

.institucional__awards-content-list-item i {
    padding-top: 2px;
}

.institucional__porftolio {
    display: grid;
    place-items: center;
    height: 400px;
}

.institucional__portfolio-text {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-family: "Times New Roman";
    text-align: center;
    text-transform: uppercase;
}

/* <- PÁGINA INSTITUCIONAL (PAGE 31) */

/* -> PÁGINA FAQ */

.faq__grid {
    display: grid;
    gap: 50px;
}

.faq__grid-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__grid-item-header-title {
    width: 100px;
    color: #bd1d1d;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    font-family: "Times New Roman";
    line-height: 1.2;
}

.faq__grid-item-header-caption {
    width: 300px;
    text-align: right;
}

.faq__grid-item-list {
    display: grid;
    gap: 10px;
    max-width: 650px;
    width: 100%;
}

.faq__grid-item-list-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 10px;
}

.faq__grid-item-list-item-header-question p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.faq__grid-item-list-item-header-icon {
    cursor: pointer;
}

.faq__grid-item-list-item-header-icon i {
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.faq__grid-item-list-item-header-icon--rotate {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.faq__grid-item-list-item-answer {
    display: none;
}

/* <- PÁGINA FAQ */

/* -> CF7 HOME */

.form__grid-b-form .building-form__form-row {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 15px;
}

.form__grid-b-form .building-form__form-item {
    display: grid;
}

.form__grid-b-form .building-form__form-item label {
    color: #fff;
    font-family: var(--font-opensans);
    font-size: 16px;
    margin-right: 5px;
}

.form__grid-b-form .building-form__form-item input {
    height: 40px;
    padding: 5px 10px;
    color: #fff;
    border: 1px solid #fff;
    outline: none;
    background: transparent;
}

.form__grid-b-form .building-form__form-item input[type="text"],
.form__grid-b-form .building-form__form-item input[type="email"] {
    width: 100%;
}

.form__grid-b-form .radio-container {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.form__grid-b-form .radio-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form__grid-b-form .wpcf7-list-item {
    margin: 0;
}

.form__grid-b-form .wpcf7-list-item-label {
    color: #fff;
}

.form__grid-b-form .wpcf7-list-item-label a {
    color: #ff9000;
    text-decoration: none;
}

.form__grid-b-form .wpcf7-form input[type="submit"] {
    appearance: none;
    width: 107px;
    height: 41px;
    background-color: #1e1e1e;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.form__grid-b-form .wpcf7-form input[type="submit"]:hover {
    background-color: #3f3f3f;
}

.form__grid-b-form .wpcf7-response-output {
    color: #fff;
}

/* <- CF7 HOME */

.modal-newsletter {
    display: none;
    opacity: 0;
}
.modal-newsletter.modal-active {
    background-color: #00000094;
    display: flex;
}

.modal-newsletter .modal__box {
    max-width: 600px;
    border-radius: 20px;
    margin: auto;
    background-color: #f5f5f5;
    padding: 20px;
}

.modal-newsletter .modal__close-button {
    background-color: #EC232B;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 400ms
}

.modal-newsletter .modal__close-button:hover {
    opacity: 0.8
}

.modal-newsletter .newsletter__title {
    color: #BD1D1D;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    max-width: 280px;
    line-height: 1.2;
    margin: auto;
    margin-bottom: 20px
}

.modal-newsletter .newsletter__subtitle {
    text-align: center;
    font-size: 14px;
    max-width: 250px;
    margin: auto;
    margin-bottom: 10px
}

.newsletter-form .newsletter-form__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.newsletter-form .newsletter-form__item {
    margin-bottom: 10px
}

.newsletter-form .newsletter-form__item label {
    width: 100%;
    font-size: 12px
}

.newsletter-form .newsletter-form__item input {
    width: 100%;
    border: 0;
    outline: none;
    border-radius: 4px;
    padding: 10px;
    background-color: #e7ecf1
}

.newsletter-form .newsletter-form__submit-container {
    text-align: center
}

.newsletter-form__checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem
}

.newsletter-form__checkbox input {
    all: unset;
    background-color: #ccc;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 4px;
    margin-right: 5px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.newsletter-form__checkbox input:checked {
    background-color: #BD1D1D;
    color: #fff;
    align-self: center
}

.newsletter-form__checkbox input:checked::before {
    font-family: FontAwesome;
    content: "\f00c";
    font-size: 10px
}

.newsletter-form__checkbox label {
    display: flex;
    align-items: center
}

.newsletter-form__checkbox label a {
    text-decoration: underline;
    color: #BD1D1D
}

.newsletter-form__checkbox span.wpcf7-list-item {
    margin: 0 1em 0 0;
}

.newsletter-form .newsletter-form__submit {
    background-color: #EC232B;
    color: #fff;
    outline: none;
    border: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 12px;
    text-align: center;
    transition: 400ms;
    width: 200px
}

.newsletter-form .newsletter-form__submit:hover {
    opacity: 0.8
}

.news-listing__top-row {
    padding-top: 50px;
    border-bottom: 1px solid #FBFBFB;
    padding-bottom: 15px
}

@media screen and (max-width: 600px) {
    .modal-newsletter .modal__box {
        width: calc(100% - 20px);
    }
}