/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */
/* Two-Column Image-Big-Small-Text Section */
.two_column_image-big-small-text_section{
    padding: 20px 0 100px;
}

.two_column_image_big_wrap{
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 575px;
    max-width: 636px;
    height: 100%;
}
.two_column_image_big_wrap img{
    object-fit: cover;
    height: 100%;
}
.small_text_section_wrap{
    max-width: 574px;
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Two-Column Image-Big-Small-Text Section */