:root {
    --c-TresNavy: hsl(216 100% 22%);
    --c-TresBlue: hsl(206 100% 32.4%);
    --c-TresLightBlue: hsl(210 76.9% 74.5%);
    --c-TresTypeGray: hsl(15 4.7% 16.9%);
    --c-agent: hsl(50 25% 47.1%);
    --c-sell: var(--c-TresBlue);
    --c-leasing: hsl(0 0% 46.7%);
    --c-consulting: var(--c-TresBlue);
    --c-planting: var(--c-TresBlue);
    --c-TresNavy45: hsla(216 100% 22% / 0.45);
    --c-TresBlue45: hsla(206 100% 32.4% / 0.45);
    --c-grad_3: hsl(209 72.1% 57.8%);
    --c-grad_3_45: hsla(209 72.1% 57.8% / 0.45);
    --c-error: hsl(0 100% 45.1%);
    --c-Black: hsl(0 0% 0%);
    --c-black: hsl(0 0% 20%);
    --c-White: hsl(0 0% 100%);
    --c-white: hsl(0 0% 100%);
    --c-text: hsl(0 0% 20%);
    --c-grayEB: hsl(0 0% 92.2%);
    --c-dummy: hsl(0 0% 85%);
    --c-pink: hsl(300 100% 50%);
    --fvRightW: 72px;
    --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
    --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
    --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
    --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
    --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
    --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
    --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
    --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
    --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
    --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
    --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
    --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
    --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
    --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
    --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
}

#wrapper.bgBlue #bg #bg_blue {
    background-color: transparent;
}

main {
    position: relative;
}
main .page_intro {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    position: relative;
}
main .page_intro .bar_blue {
    width: 100%;
    height: 80px;
    background-color: var(--c-TresNavy);
}
@media screen and (max-width: 1139px) {
    main .page_intro .bar_blue {
        height: 70px;
    }
}
@media screen and (max-width: 839px) {
    main .page_intro .bar_blue {
        display: none;
    }
}
main .page_intro .page_title {
    -ms-grid-column-align: end;
        justify-self: end;
    margin-top: 40px;
    padding: 20px 130px 46px 20px;
    position: relative;
}
@media screen and (max-width: 1139px) {
    main .page_intro .page_title {
        padding: 20px 110px 40px 20px;
    }
}
@media screen and (max-width: 839px) {
    main .page_intro .page_title {
        -ms-grid-column-align: end;
            justify-self: end;
        margin-top: 90px;
        padding: 20px 57px 20px 20px;
    }
}
main .page_intro .page_title .bg_shape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    mix-blend-mode: multiply;
    overflow: hidden;
}
main .page_intro .page_title .bg_shape img {
    rotate: -45deg;
}
main .page_intro .page_title .bg_shape svg {
    stroke: var(--c-TresNavy);
    rotate: -45deg;
}
main .page_intro .page_title .bg_shape {
    position: absolute;
    inset: 0;
}
main .page_intro .page_title h1 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 44px;
    line-height: 1em;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--c-white);
    position: relative;
}
main .page_intro .page_title h1 span {
    font-weight: 700;
}
@media screen and (max-width: 1139px) {
    main .page_intro .page_title h1 {
        font-size: 34px;
    }
}
@media screen and (max-width: 639px) {
    main .page_intro .page_title h1 {
        font-size: 24px;
    }
}
main .page_intro .page_title.fadeElem .bg_shape {
    opacity: 0;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
main .page_intro .page_title.fadeElem h1 {
    opacity: 0;
    translate: 0 15px;
}
main .page_intro .page_title.fadeIn .bg_shape {
    -webkit-transition: opacity 1s 0s, clip-path 1s var(--easeOutQuart) 0s;
    transition: opacity 1s 0s, clip-path 1s var(--easeOutQuart) 0s;
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
main .page_intro .page_title.fadeIn h1 {
    -webkit-transition: opacity 0.6s 0.6s, translate 0.6s var(--easeOutQuart) 0.6s;
    transition: opacity 0.6s 0.6s, translate 0.6s var(--easeOutQuart) 0.6s;
    opacity: 1;
    translate: 0 0;
}
main .page_content {
    margin-top: 120px;
    margin-inline: auto;
    width: 1000px;
}
@media screen and (max-width: 1139px) {
    main .page_content {
        margin-top: 90px;
        width: 88vw;
    }
}
@media screen and (max-width: 639px) {
    main .page_content {
        margin-top: 60px;
    }
}
main .page_content h3 {
    padding: 0.6em 0;
    margin-block: calc((1em - 1lh) / 2);
    font-size: 18px;
    line-height: 2.1em;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: var(--c-TresNavy);
}
main .page_content h3 span {
    font-weight: 600;
}
@media screen and (max-width: 1139px) {
    main .page_content h3 {
        font-size: 17px;
        line-height: 2.05em;
    }
}
@media screen and (max-width: 639px) {
    main .page_content h3 {
        font-size: 16px;
        line-height: 2em;
    }
}
main .page_content p {
    margin-block: calc((1em - 1lh) / 2);
    font-size: 16px;
    line-height: 2.1em;
    letter-spacing: 0.04em;
    font-weight: 400;
}
main .page_content p span {
    font-weight: 400;
}
@media screen and (max-width: 1139px) {
    main .page_content p {
        font-size: 15.5px;
        line-height: 2.05em;
    }
}
@media screen and (max-width: 639px) {
    main .page_content p {
        font-size: 15px;
        line-height: 2em;
        text-align: justify;
    }
}
main .page_content p a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
@media screen and (min-width: 1023px) {
    main .page_content p a:hover {
        color: var(--c-TresBlue);
    }
}
/*# sourceMappingURL=style.css.map */