/* =========================================================
   PROPERĀ — ABOUT PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.propera-about-hero {
    width: 100%;
    background: #f4f7f8;
    overflow: hidden;
}

.propera-about-hero__container {
    width: min(1200px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;

    gap: 80px;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.propera-about-hero__content {
    padding: 80px 0;
}

.propera-about-hero__eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #92278f;
}

.propera-about-hero__title {
    max-width: 720px !important;

    margin: 0 0 32px !important;

    font-size: clamp(54px, 5.4vw, 54px) !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -0.045em !important;

    color: #111 !important;
}

.propera-about-hero__text {
    max-width: 520px;

    margin: 0;

    font-size: 19px;
    line-height: 1.55;
    font-weight: 400;

    color: #686868;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.propera-about-hero__image {
    height: 620px;

    overflow: hidden;
    border-radius: 28px;
}

.propera-about-hero__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-hero__container {
        width: min(100% - 40px, 900px);

        grid-template-columns: 1fr 0.85fr;

        gap: 40px;

        min-height: 560px;
    }

    .propera-about-hero__content {
        padding: 60px 0;
    }

    .propera-about-hero__title {
        font-size: clamp(42px, 6vw, 60px);
    }

    .propera-about-hero__text {
        font-size: 17px;
    }

    .propera-about-hero__image {
        height: 500px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-hero__container {
        width: calc(100% - 32px);

        display: flex;
        flex-direction: column;

        gap: 32px;

        min-height: auto;
    }

    .propera-about-hero__content {
        padding: 56px 0 0;
    }

    .propera-about-hero__eyebrow {
        margin-bottom: 20px !important;

        font-size: 20px !important;
    }

    .propera-about-hero__title {
        margin-bottom: 20px;

        font-size: clamp(34px, 12vw, 34px) !important;
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .propera-about-hero__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .propera-about-hero__image {
        width: 100%;
        height: 430px;

        margin-bottom: 32px;

        border-radius: 22px;
    }

}






/* =========================================================
   ABOUT — MISSION
   ========================================================= */

.propera-about-mission {
    width: 100%;
    padding: 80px 0 80px;
    background: #ffffff;
}

.propera-about-mission__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.propera-about-mission__intro {
    max-width: 900px;
    margin-bottom: 90px;
}

.propera-about-mission__eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #92278f;
}

.propera-about-mission__title {
    max-width: 900px;

    margin: 0 0 32px !important;

    font-size: clamp(40px, 5.3vw, 40px) !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -0.045em !important;

    color: #111111 !important;
}

.propera-about-mission__lead {
    max-width: 680px;

    margin: 0;

    font-size: 19px;
    line-height: 1.55;

    color: #686868;
}


/* ---------------------------------------------------------
   VALUES GRID
   --------------------------------------------------------- */

.propera-about-mission__values {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #dedede;

    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
}


/* ---------------------------------------------------------
   VALUE CARD
   --------------------------------------------------------- */

.propera-about-mission__value {
    min-height: 280px;

    padding: 36px;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.propera-about-mission__value:hover {
    background: #faf7fa;
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.propera-about-mission__icon {
    width: 64px;
    height: 64px;

    margin-bottom: 38px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

.propera-about-mission__icon img {
    display: block;

    width: 64px;
    height: 64px;

    object-fit: contain;
}




/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.propera-about-mission__value-content {
    margin-top: auto;
}

.propera-about-mission__value h3 {
    margin: 0 0 14px !important;

    font-size: 22px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;

    color: #111111 !important;
}

.propera-about-mission__value p {
    max-width: 330px;

    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #707070;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-mission {
        padding: 100px 0 110px;
    }

    .propera-about-mission__container {
        width: min(100% - 40px, 900px);
    }

    .propera-about-mission__intro {
        margin-bottom: 65px;
    }

    .propera-about-mission__title {
        font-size: clamp(44px, 6vw, 62px) !important;
    }

    .propera-about-mission__lead {
        font-size: 17px;
    }

    .propera-about-mission__values {
        grid-template-columns: repeat(2, 1fr);
    }

    .propera-about-mission__value {
        min-height: 260px;
        padding: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-mission {
        padding: 40px 0 40px;
    }

    .propera-about-mission__container {
        width: calc(100% - 32px);
    }

    .propera-about-mission__intro {
        margin-bottom: 40px;
    }

    .propera-about-mission__eyebrow {
        margin-bottom: 20px !important;

        font-size: 20px !important;
    }

    .propera-about-mission__title {
        max-width: 100%;

        margin-bottom: 22px !important;

        font-size: clamp(34px, 11.5vw, 34px) !important;
        line-height: 0.96 !important;
    }

    .propera-about-mission__lead {
        font-size: 16px;
        line-height: 1.5;
    }

    .propera-about-mission__values {
        grid-template-columns: 1fr;
    }

    .propera-about-mission__value {
        min-height: auto;

        padding: 28px;
    }

    .propera-about-mission__icon {
    width: 52px;
    height: 52px;

    margin-bottom: 26px;
}

.propera-about-mission__icon img {
    width: 52px;
    height: 52px;
}

    .propera-about-mission__value h3 {
        font-size: 20px !important;
    }

    .propera-about-mission__value p {
        max-width: none;

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-about-mission {
        padding: 40px 0 40px;
    }

    .propera-about-mission__container {
        width: calc(100% - 24px);
    }

    .propera-about-mission__title {
        font-size: clamp(24px, 11.8vw, 24px) !important;
		line-height: 1.2 !important;
    }

    .propera-about-mission__value {
        padding: 24px;
    }

}










/* =========================================================
   ABOUT — ORIGIN
   ========================================================= */

.propera-about-origin {
    width: 100%;
    padding: 120px 0 130px;

    background: #f4f7f8;
}

.propera-about-origin__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.propera-about-origin__header {
    margin-bottom: 55px;
}

.propera-about-origin__eyebrow {
    display: inline-block;

    margin: 0;

    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #92278f !important;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.propera-about-origin__grid {
    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);

    gap: 90px;

    align-items: center;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.propera-about-origin__image {
    width: 100%;
    height: 680px;

    overflow: hidden;

    border-radius: 28px;
}

.propera-about-origin__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.propera-about-origin__image:hover img {
    transform: scale(1.02);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.propera-about-origin__content {
    max-width: 580px;
}

.propera-about-origin__title {
    margin: 0 0 32px !important;

    font-size: 54px !important;
    line-height: 0.98 !important;
    font-weight: 700 !important;

    letter-spacing: -0.04em !important;

    color: #111111 !important;
}

.propera-about-origin__text {
    margin-bottom: 40px;
}

.propera-about-origin__text p {
    margin: 0 0 20px;

    font-size: 17px;
    line-height: 1.6;

    color: #5f5f5f;
}

.propera-about-origin__text p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   PROPER CARRY
   --------------------------------------------------------- */

.propera-about-origin__brand {
    padding: 28px 0 28px 28px;

    margin-bottom: 34px;

    border-left: 2px solid #92278f;
}

.propera-about-origin__brand-label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #92278f;
}

.propera-about-origin__brand-name {
    display: block;

    margin-bottom: 10px;

    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;

    color: #111111 !important;
}

.propera-about-origin__brand p {
    max-width: 470px;

    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #707070;
}


/* ---------------------------------------------------------
   QUOTE
   --------------------------------------------------------- */

.propera-about-origin__quote {
    padding-top: 4px;
}

.propera-about-origin__quote span {
    display: block;

    max-width: 500px;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;

    color: #111111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-origin {
        padding: 100px 0 110px;
    }

    .propera-about-origin__container {
        width: min(100% - 40px, 900px);
    }

    .propera-about-origin__grid {
        gap: 50px;
    }

    .propera-about-origin__image {
        height: 580px;
        border-radius: 24px;
    }

    .propera-about-origin__title {
        font-size: 44px !important;
    }

    .propera-about-origin__text p {
        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-origin {
        padding: 75px 0 85px;
    }

    .propera-about-origin__container {
        width: calc(100% - 32px);
    }

    .propera-about-origin__header {
        margin-bottom: 32px;
    }

    .propera-about-origin__eyebrow {
        font-size: 20px !important;
    }

    .propera-about-origin__grid {
        display: flex;
        flex-direction: column;

        gap: 36px;
    }

    .propera-about-origin__image {
        width: 100%;
        height: 430px;

        border-radius: 20px;
    }

    .propera-about-origin__content {
        max-width: none;
    }

    .propera-about-origin__title {
        margin-bottom: 24px !important;

        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .propera-about-origin__text {
        margin-bottom: 32px;
    }

    .propera-about-origin__text p {
        margin-bottom: 16px;

        font-size: 15px;
        line-height: 1.55;
    }

    .propera-about-origin__brand {
        padding: 22px 0 22px 20px;

        margin-bottom: 28px;
    }

    .propera-about-origin__brand-name {
        font-size: 24px !important;
    }

    .propera-about-origin__brand p {
        font-size: 14px;
    }

    .propera-about-origin__quote span {
        font-size: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-about-origin {
        padding: 60px 0 70px;
    }

    .propera-about-origin__container {
        width: calc(100% - 24px);
    }

    .propera-about-origin__image {
        height: 380px;
        border-radius: 18px;
    }

    .propera-about-origin__title {
        font-size: 34px !important;
    }

}









/* =========================================================
   ABOUT — HISTORY
   ========================================================= */

.propera-about-history {
    width: 100%;
    padding: 130px 0 150px;
    background: #ffffff;
}

.propera-about-history__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.propera-about-history__header {
    max-width: 850px;
    margin-bottom: 100px;
}

.propera-about-history__eyebrow {
    display: block;

    margin-bottom: 24px;

    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #92278f !important;
}

.propera-about-history__title {
    margin: 0 0 30px !important;

    font-size: 54px !important;
    line-height: 0.98 !important;
    font-weight: 700 !important;

    letter-spacing: -0.04em !important;

    color: #111111 !important;
}

.propera-about-history__intro {
    max-width: 650px;

    margin: 0;

    font-size: 18px;
    line-height: 1.55;

    color: #686868;
}


/* ---------------------------------------------------------
   TIMELINE
   --------------------------------------------------------- */

.propera-about-history__timeline {
    position: relative;

    width: 100%;
}


/* центральная линия */

.propera-about-history__timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background: #d8d8d8;

    transform: translateX(-50%);
}


/* ---------------------------------------------------------
   ITEM
   --------------------------------------------------------- */

.propera-about-history__item {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 60px 1fr;

    align-items: start;

    min-height: 250px;
}


/* ---------------------------------------------------------
   YEAR
   --------------------------------------------------------- */

.propera-about-history__year {
    grid-column: 1;

    padding-right: 60px;

    text-align: right;

    font-size: 54px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    letter-spacing: -0.04em;

    color: #e4e4e4;
}


/* ---------------------------------------------------------
   DOT
   --------------------------------------------------------- */

.propera-about-history__dot {
    position: relative;
    z-index: 2;

    grid-column: 2;

    width: 14px;
    height: 14px;

    margin: 7px auto 0;

    border: 3px solid #ffffff;
    border-radius: 50%;

    background: #92278f;

    box-shadow: 0 0 0 1px #92278f;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.propera-about-history__content {
    grid-column: 3;

    padding: 0 0 65px 60px;

    max-width: 500px;
}

.propera-about-history__date {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #92278f;
}

.propera-about-history__content h3 {
    margin: 0 0 18px !important;

    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;

    letter-spacing: -0.025em;

    color: #111111 !important;
}

.propera-about-history__content p {
    margin: 0 0 14px;

    font-size: 15px;
    line-height: 1.6;

    color: #686868;
}

.propera-about-history__content p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FEATURED — REBRANDING
   --------------------------------------------------------- */

.propera-about-history__item--featured {
    margin: 25px 0 45px;
    padding: 40px 0;

    background: #f4f7f8;
}

.propera-about-history__item--featured .propera-about-history__year {
    color: #92278f;
}

.propera-about-history__item--featured .propera-about-history__content {
    padding-bottom: 0;
}

.propera-about-history__item--featured .propera-about-history__content h3 {
    font-size: 34px !important;
}


/* ---------------------------------------------------------
   LAST ITEM
   --------------------------------------------------------- */

.propera-about-history__item--last {
    min-height: auto;
}

.propera-about-history__item--last .propera-about-history__content {
    padding-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-history {
        padding: 100px 0 120px;
    }

    .propera-about-history__container {
        width: min(100% - 40px, 900px);
    }

    .propera-about-history__header {
        margin-bottom: 75px;
    }

    .propera-about-history__title {
        font-size: 54px !important;
    }

    .propera-about-history__item {
        grid-template-columns: 100px 40px 1fr;
    }

    .propera-about-history__year {
        padding-right: 25px;

        font-size: 40px !important;
    }

    .propera-about-history__content {
        padding-left: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-history {
        padding: 80px 0 90px;
    }

    .propera-about-history__container {
        width: calc(100% - 32px);
    }

    .propera-about-history__header {
        margin-bottom: 55px;
    }

    .propera-about-history__eyebrow {
        margin-bottom: 18px;

        font-size: 20px !important;
    }

    .propera-about-history__title {
        margin-bottom: 22px !important;

        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .propera-about-history__intro {
        font-size: 16px;
        line-height: 1.5;
    }


    /* -----------------------------------------------------
       MOBILE TIMELINE
       ----------------------------------------------------- */

    .propera-about-history__timeline {
        padding-left: 24px;
    }

    .propera-about-history__timeline::before {
        left: 5px;

        transform: none;
    }

    .propera-about-history__item {
        display: block;

        min-height: auto;

        padding: 0 0 48px;
    }

    .propera-about-history__year {
        padding: 0;

        margin-bottom: 8px;

        text-align: left;

        font-size: 38px !important;
        line-height: 1 !important;

        color: #dcdcdc;
    }

    .propera-about-history__dot {
        position: absolute;

        top: 3px;
        left: -24px;

        width: 11px;
        height: 11px;

        margin: 0;

        border-width: 2px;
    }

    .propera-about-history__content {
        padding: 0;

        max-width: none;
    }

    .propera-about-history__date {
        margin-bottom: 10px;

        font-size: 11px;
    }

    .propera-about-history__content h3 {
        margin-bottom: 14px !important;

        font-size: 24px !important;
        line-height: 1.1 !important;
    }

    .propera-about-history__content p {
        font-size: 15px;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       FEATURED
       ----------------------------------------------------- */

    .propera-about-history__item--featured {
        margin: 5px 0 35px;
        padding: 28px 20px 28px 0;
    }

    .propera-about-history__item--featured .propera-about-history__year {
        color: #92278f;
    }

    .propera-about-history__item--featured .propera-about-history__content h3 {
        font-size: 28px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-about-history {
        padding: 65px 0 75px;
    }

    .propera-about-history__container {
        width: calc(100% - 24px);
    }

    .propera-about-history__title {
        font-size: 34px !important;
    }

    .propera-about-history__year {
        font-size: 34px !important;
    }

}









/* =========================================================
   ABOUT — REBRANDING
   ========================================================= */

.propera-about-rebranding {
    width: 100%;

    padding: 0 0 150px;

    background: #ffffff;
}

.propera-about-rebranding__container {
    width: min(1200px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);

    gap: 90px;

    align-items: center;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.propera-about-rebranding__image {
    width: 100%;
    height: 680px;

    overflow: hidden;

    border-radius: 28px;
}

.propera-about-rebranding__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.propera-about-rebranding__image:hover img {
    transform: scale(1.02);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.propera-about-rebranding__content {
    max-width: 580px;
}

.propera-about-rebranding__eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #92278f !important;
}

.propera-about-rebranding__title {
    margin: 0 0 30px !important;

    font-size: 54px !important;
    line-height: 0.98 !important;
    font-weight: 700 !important;

    letter-spacing: -0.04em !important;

    color: #111111 !important;
}

.propera-about-rebranding__lead {
    margin: 0 0 28px;

    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;

    color: #222222;
}

.propera-about-rebranding__text {
    margin-bottom: 38px;
}

.propera-about-rebranding__text p {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.6;

    color: #686868;
}

.propera-about-rebranding__text p:last-child {
    margin-bottom: 0;
}

.propera-about-rebranding__text strong {
    font-weight: 700;

    color: #111111;
}


/* ---------------------------------------------------------
   STATEMENT
   --------------------------------------------------------- */

.propera-about-rebranding__statement {
    display: flex;
    flex-direction: column;

    gap: 7px;

    padding-left: 24px;

    border-left: 2px solid #92278f;
}

.propera-about-rebranding__statement span {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;

    color: #111111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-rebranding {
        padding-bottom: 110px;
    }

    .propera-about-rebranding__container {
        width: min(100% - 40px, 900px);

        gap: 50px;
    }

    .propera-about-rebranding__image {
        height: 580px;

        border-radius: 24px;
    }

    .propera-about-rebranding__title {
        font-size: 54px !important;
    }

    .propera-about-rebranding__lead {
        font-size: 19px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-rebranding {
        padding-bottom: 90px;
    }

    .propera-about-rebranding__container {
        width: calc(100% - 32px);

        display: flex;
        flex-direction: column;

        gap: 36px;
    }

    .propera-about-rebranding__image {
        width: 100%;
        height: 430px;

        border-radius: 20px;
    }

    .propera-about-rebranding__content {
        max-width: none;
    }

    .propera-about-rebranding__eyebrow {
        margin-bottom: 18px;

        font-size: 20px !important;
    }

    .propera-about-rebranding__title {
        margin-bottom: 24px !important;

        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .propera-about-rebranding__lead {
        margin-bottom: 24px;

        font-size: 18px;
        line-height: 1.45;
    }

    .propera-about-rebranding__text {
        margin-bottom: 30px;
    }

    .propera-about-rebranding__text p {
        margin-bottom: 16px;

        font-size: 15px;
        line-height: 1.55;
    }

    .propera-about-rebranding__statement {
        padding-left: 20px;
    }

    .propera-about-rebranding__statement span {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-about-rebranding {
        padding-bottom: 75px;
    }

    .propera-about-rebranding__container {
        width: calc(100% - 24px);
    }

    .propera-about-rebranding__image {
        height: 390px;

        border-radius: 18px;
    }

    .propera-about-rebranding__title {
        font-size: 34px !important;
    }

}









/* =========================================================
   ABOUT — TODAY
   ========================================================= */

.propera-about-today {
    width: 100%;

    padding: 130px 0 140px;

    background: #f4f7f8;
}

.propera-about-today__container {
    width: min(1200px, calc(100% - 48px));

    margin: 0 auto;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.propera-about-today__intro {
    max-width: 900px;

    margin-bottom: 85px;
}

.propera-about-today__eyebrow {
    display: block;

    margin-bottom: 24px;

    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #92278f !important;
}

.propera-about-today__title {
    margin: 0 0 30px !important;

    font-size: 54px !important;
    line-height: 0.98 !important;
    font-weight: 700 !important;

    letter-spacing: -0.04em !important;

    color: #111111 !important;
}

.propera-about-today__text {
    max-width: 650px;

    margin: 0;

    font-size: 18px;
    line-height: 1.55;

    color: #686868;
}


/* ---------------------------------------------------------
   CATEGORIES
   --------------------------------------------------------- */

.propera-about-today__categories {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

.propera-about-today__category {
    min-height: 270px;

    padding: 32px;

    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;

    background: #f4f7f8;

    display: flex;
    flex-direction: column;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.propera-about-today__category:hover {
    background: #ffffff;
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.propera-about-today__number {
    display: block;

    margin-bottom: 55px;

    font-size: 13px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: #92278f;
}


/* ---------------------------------------------------------
   CATEGORY CONTENT
   --------------------------------------------------------- */

.propera-about-today__category-content {
    margin-top: auto;
}

.propera-about-today__category h3 {
    margin: 0 0 14px !important;

    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;

    letter-spacing: -0.025em;

    color: #111111 !important;
}

.propera-about-today__category p {
    max-width: 220px;

    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #707070;
}


/* ---------------------------------------------------------
   BOTTOM STATEMENT
   --------------------------------------------------------- */

.propera-about-today__bottom {
    max-width: 700px;

    margin: 75px 0 0 auto;

    padding-left: 28px;

    border-left: 2px solid #92278f;
}

.propera-about-today__bottom p {
    margin: 0 0 18px;

    font-size: 18px;
    line-height: 1.55;

    color: #686868;
}

.propera-about-today__bottom strong {
    display: block;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;

    color: #111111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .propera-about-today {
        padding: 100px 0 110px;
    }

    .propera-about-today__container {
        width: min(100% - 40px, 900px);
    }

    .propera-about-today__intro {
        margin-bottom: 65px;
    }

    .propera-about-today__title {
        font-size: 54px !important;
    }

    .propera-about-today__categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .propera-about-today__category {
        min-height: 240px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-about-today {
        padding: 80px 0 90px;
    }

    .propera-about-today__container {
        width: calc(100% - 32px);
    }

    .propera-about-today__intro {
        margin-bottom: 50px;
    }

    .propera-about-today__eyebrow {
        margin-bottom: 18px;

        font-size: 20px !important;
    }

    .propera-about-today__title {
        margin-bottom: 22px !important;

        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .propera-about-today__text {
        font-size: 16px;
        line-height: 1.5;
    }


    /* -----------------------------------------------------
       CATEGORIES
       ----------------------------------------------------- */

    .propera-about-today__categories {
        grid-template-columns: 1fr;
    }

    .propera-about-today__category {
        min-height: 200px;

        padding: 26px;
    }

    .propera-about-today__number {
        margin-bottom: 45px;
    }

    .propera-about-today__category h3 {
        font-size: 24px !important;
    }

    .propera-about-today__category p {
        max-width: none;

        font-size: 15px;
    }


    /* -----------------------------------------------------
       BOTTOM
       ----------------------------------------------------- */

    .propera-about-today__bottom {
        margin-top: 50px;

        padding-left: 20px;
    }

    .propera-about-today__bottom p {
        font-size: 16px;
    }

    .propera-about-today__bottom strong {
        font-size: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-about-today {
        padding: 65px 0 75px;
    }

    .propera-about-today__container {
        width: calc(100% - 24px);
    }

    .propera-about-today__title {
        font-size: 34px !important;
    }

    .propera-about-today__category {
        min-height: 180px;

        padding: 24px;
    }

}