html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 85px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: rgba(216, 189, 178, 0.8);
    backdrop-filter: blur(4px);
    transition: 0.4s;
    padding: 12px 0;
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(216, 189, 178, 0.8), transparent);
    padding: 32px 0;
    backdrop-filter: none;
}

.toolbar_root .main_content {
    position: relative;
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    position: absolute;
    top: 0;
    left: 16px;
    width: 100px;
    height: 140px;
    transition: 0.4s;
    background-size: contain;
}

.toolbar_root #main_logo.minimized {
    top: -8px;
    width: 100px;
    height: 72px;
}

.toolbar_root #main_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.toolbar_menu_wrapper {
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    margin: 4px 8px;
}

.menu_item {
    margin: 4px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: #212121;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 15px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 2px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
}

.menu_item.highlight > span {
    background: white;
    color: #212121;
    padding: 16px;
}

.menu_item > img {
    border-radius: 50%;
    background: transparent;
    transition: 0.4s ease;
    border: 1px solid white;
}

.menu_item:hover > img {
    color: #212121;
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
}

.menu_item:hover > span {
    color: #212121;
    background-color: var(--colorAccent);
}

.menu_item.highlight:hover > span {
    color: #212121;
    background-color: var(--colorAccent);
}


.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    right: 0;
    /*border-bottom-left-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    background-size: 400% 400%;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item {
    min-height: 40px;
    padding: 8px;
    color: #212121;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.drawer_item:hover span {
    color: var(--colorAccent)
}

.main_content {
    width: 100%;
    max-width: 1500px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 90%;
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.header_image {
    width: 100%;
}

.about_section_content_wrapper {
    padding: 24px;
}

.about_section_content_wrapper > div {
    background-image: url("../images/facets_section_bg@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 24px;
}

.about_section_heading {
    font-size: 80px;
    color: #212121;
    font-weight: bold;
    line-height: 1;
    align-self: flex-start;
    padding: 6px 0;
    margin-bottom: 12px;
    position: relative;
}

.about_section_heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 1px;
    background: #212121;
}

.about_section_image_wrapper {
    position: relative;
}

.about_section_image_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    background: linear-gradient(to bottom, #4C2D07, black);
}

.about_section_image_wrapper img {
    max-height: 700px;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}

.accent_button {
    background-color: var(--colorAccent);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.light {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
}

.bordered_button {
    background: transparent;
    color: #212121;
    font-weight: 500;
    padding: 6px 16px;
    border: 2px solid #212121;
    font-size: 14px;
    text-decoration: none;
    border-radius: 16px;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background: var(--colorAccent);
    border: 2px solid var(--colorAccent);
    color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    position: relative;
    color: #212121;
    font-size: 52px;
    padding: 8px 0;
    font-weight: 500;
    margin: 0;
    align-self: center;
    text-align: center;
    font-family: "Playfair Display", serif;
}

.page_heading b {
    color: var(--colorAccent);
    font-weight: 500;
}

.page_heading.border:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70%;
    height: 1px;
    max-width: 300px;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #a3835f, transparent);
}

.page_heading.left {
    text-align: left;
    align-self: flex-start;
}

.page_heading.left.border:before {
    background: linear-gradient(to right, #a3835f, transparent);
    left: 8px;
    transform: translateX(0);
}

.page_heading.white {
    color: white;
}

.page_heading.white.border:before {
    background: linear-gradient(to right, transparent, white, transparent);
}

.page_sub_heading {
    text-align: center;
    max-width: 800px;
    align-self: center;
    margin: 16px;
    font-size: 20px;
    line-height: 1.6;
}

.page_sub_heading.left {
    text-align: left;
    align-self: flex-start;
}

.section_wrapper {
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.business_item_wrapper {
    position: relative;
    margin: 8px;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}

.business_item_wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);

}

.business_item_wrapper .background_image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.business_item_wrapper .logo_image {
    position: absolute;
    padding: 24px;
    max-height: 40%;
    left: 0;
    width: 100%;
    bottom: 0;
    object-fit: contain;
    z-index: 2;
    object-position: center;
}

.business_item_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to top, #193539, transparent, transparent);
}

.business_item_wrapper > div {
    padding: 16px;
    align-self: center;
}

.business_item_wrapper .logo {
    height: 80px;
    width: 80%;
    object-fit: contain;
    object-position: center left;
}

.business_item_wrapper p {
    font-size: 16px;
    line-height: 1.5;
}

.glimpse_item_wrapper {
    width: calc(100% - 24px);
    margin: 12px;
    border-radius: 16px;
    object-fit: cover;
    height: 340px;
    overflow: hidden;
}

.glimpse_item_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial_wrapper {
    margin: 12px;
    border-radius: 12px;
    transform: translateY(0);
    transition: 0.4s ease;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial_wrapper:hover {
    transform: translateY(-5px);
}

.testimonial_wrapper .quote_icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px !important;
    height: auto;
}

.testimonial_wrapper .client_image {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center;
}


.testimonial_wrapper .client_name {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.testimonial_wrapper p {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Playfair Display", serif;
}

.form_wrapper {
    width: calc(100% - 20px);
    border-radius: 16px;
}

.form_wrapper .title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 16px;
    padding: 24px 8px 0 8px;
    font-family: 'Poppins', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 12px 16px;
    width: calc(100% - 8px);
    margin: 4px;
    font-size: 14px;
    background: transparent;
    color: white;
    font-family: "Poppins", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid #999999;
    transition: all 0.4s;
}

.form_wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.contact_details_container {
    width: 90%;
    height: auto;
    max-width: 500px;
    color: white;
    padding: 26px;
}

.contact_details_container p {
    margin-left: 20px;
}

footer {
    background: linear-gradient(to left, #d8c8b9, #c1c8c2);
    padding-top: 16px;
}

.footer_logo {
    width: 90%;
    align-self: center;
    max-height: 80px;
    object-fit: contain;
    min-width: 100px;
    margin: 40px 0;
}

.footer_container {
    width: calc((100% / 3) - 16px);
    padding: 20px;
    margin: 8px;
}

.footer_container p {
    font-size: 16px;
    color: #212121;
}

.footer_social_link {
    font-weight: 500;
    font-size: 20px;
    padding-top: 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #a3835f;
    margin: 4px;
    border-radius: 50%;
    border: 1px solid #a3835f;
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: #a3835f;
    color: #212121;
}

.footer_heading {
    color: #c2c2c2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.footer_link {
    color: #607a62;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
    color: #212121;
}

.footer_icon {
    font-size: 18px;
    margin-right: 16px;
}

.footer_link i {
    color: var(--colorAccent);
    align-self: center;
}

.footer_input_field {
    background-color: #fde8e8;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.footer_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

.footer_accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.contact_header_container {
    position: relative;
    width: 100%;
    background: #212121;
}

.contact_header_container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 750px;
    padding: 16px;
}

.contact_header_container img {
    width: 100%;
    object-fit: cover;
    filter: opacity(0.5);
}

.contact_header_container h2 {
    font-size: 36px;
    margin: 4px;
}

.contact_header_container p {
    margin: 4px;
    line-height: 1.5;
    font-size: 18px;
}

.contact_us_header_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact_us_header_container .page_heading {
    z-index: 1;
    font-weight: bold;
    font-size: 42px;
}

.contact_detail_container {

}

.contact_detail_container a {
    padding: 8px;
}

.contact_detail_container a > .row_alignment {
    background: #f2f2f2;
    flex: 1 1 auto;
    padding: 16px;
    border-radius: 12px;
}

.contact_detail_container span {
    font-size: 16px;
    align-self: center;
}

.contact_detail_container img {
    width: 80px;
    align-self: center;
    height: 80px;
    margin-right: 16px;
}

.social_media_icon {
    font-size: 18px;
    line-height: 1;
    width: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;
    margin: 8px 16px 8px 0;
    padding: 11px 12px;
    background-color: var(--colorAccent);
}

.social_media_icon:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    transition: 0.4s;
}


.dialog-container#share_dialog span {
    font-size: 14px;
    margin: 4px;
    color: #424242;
}

.contact_form_section {
    margin: 12px;
    width: calc(100% - 24px);
    padding: 16px 500px 16px 16px;
    border-radius: 24px;
    background-color: white;
    max-width: 1100px;
}

.contact_detail_section {
    margin: 12px 12px 12px -400px;
    align-self: center;
    width: calc(100% - 24px);
    max-width: 500px;
    padding: 24px;
    border-radius: 24px;
    background: #FFF2E4;
}

.contact_detail_section .quote_text {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin: 12px 0 32px;
    font-style: italic;
}

.contact_detail_item {
    margin: 12px 0;
    border-radius: 12px;
    border: 1px solid var(--colorAccent);
    background: #FFE5C8;
    padding: 16px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0);
    transition: 0.4s ease;
}

.contact_detail_item:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
}

.contact_detail_item img {
    margin-right: 16px;
}

.contact_detail_item span b {
    font-weight: 500;
    font-size: 18px;
}

.timeline_section_wrapper {
    position: relative;
}

.timeline_section_wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: #878787;
}

.timeline_item_wrapper {
    width: 25%;
    margin: 12px 0;
    background: white;
    border-radius: 12px;
    justify-content: center;
    min-height: 230px;
    padding: 16px;
    align-self: flex-start;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(1);
    transition: 0.4s ease;
}

.timeline_item_wrapper:nth-child(even) {
    margin-top: 310px;
}

.timeline_item_wrapper:nth-child(even):before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: white;
    box-shadow: -8px 8px 16px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) rotate(-225deg);
}


.timeline_item_wrapper:nth-child(even):after {
    content: "";
    position: absolute;
    top: -48px;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #878787;
    transform: translateX(-50%);
}

.timeline_item_wrapper:nth-child(odd):before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: white;
    box-shadow: 8px 0 16px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) rotate(-225deg);
}

.timeline_item_wrapper:nth-child(odd):after {
    content: "";
    position: absolute;
    bottom: -48px;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #878787;
    transform: translateX(-50%);
}

.timeline_item_wrapper:hover {
    transform: scale(1.02);
}

.timeline_item_wrapper img {
    width: 60px;
    height: 60px;
    padding: 12px;
    object-fit: contain;
    border-radius: 6px;
    background: #FFE5C8;
    margin-right: 16px;
}

.timeline_item_wrapper span {
    font-weight: 500;
    font-size: 18px;
    align-self: center;
}

.facets_item_wrapper {
    margin: 8px 0;
    width: 50%;
}

.facets_item_wrapper .icon_wrapper {
    position: relative;
    padding: 20px;
    margin: 16px;
    width: 90px;
    height: 90px;
}

.facets_item_wrapper .icon_wrapper img {
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.facets_item_wrapper .icon_wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    width: 100%;
    transform: rotate(20deg);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    border-radius: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.facets_item_wrapper span {
    color: white;
    font-weight: 500;
    font-size: 18px;
    flex: 1 1 auto;
    align-self: center;
}

.numbers_inspire_section_wrapper {
    background-image: url("../images/numbers_bg@2x-100.jpg");
    background-size: cover;
}

.number_inspire_item_wrapper {
    background-color: #fff9f0;
    border-radius: 24px;
    margin: 24px 16px;
    padding: 16px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
}

.number_inspire_item_wrapper .number {
    text-align: center;
    font-size: 80px;
    line-height: 1;
    font-weight: 500;
    font-family: "Playfair Display", serif;
}

.number_inspire_item_wrapper .number i {
    font-size: 60px;
    font-style: normal;
    margin-bottom: 4px;
}

.number_inspire_item_wrapper .label {
    text-align: center;
    margin-top: 12px;
}

.words_to_live_section_wrapper {
    margin: 24px 0;
    padding: 80px 0;
    background-image: url("../images/words_to_live_by_section_bg@2x-100.jpg");
    background-size: cover;
    background-position: center;
}

.words_item_wrapper {

}

.words_item_wrapper .quote_icon {
    color: #a3835f;
    font-size: 60px;
    font-style: italic;
    margin-top: 24px;
    margin-bottom: -8px;
    line-height: 1;
    text-align: center;
}

.words_item_wrapper .quote_footer {
    text-align: center;
    color: #708272;
    font-weight: 500;
    font-size: 18px;
    margin: 16px 0;
}

.words_item_wrapper img {
    width: 200px !important;
}

.words_item_wrapper p {
    color: #eadece;
    max-width: 700px;
    margin-top: 0;
    text-align: center;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    font-size: 36px;
}

.words_slides .owl-dots,
.testimonial_slides .owl-dots {
    margin-top: 12px;
}

.words_slides .owl-dot span,
.testimonial_slides .owl-dot span {
    background: rgba(163, 131, 95, 0.44) !important;
}

.words_slides .owl-dot.active span,
.testimonial_slides .owl-dot.active span {
    background: #a3835f !important;
}

.words_slides {
    position: relative;

}

.words_slides .owl-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    width: 50%;
    transform: translateX(-50%);
    left: 50%;
    margin-top: 0 !important;
}

.words_slides .owl-nav button {
    display: flex;
    width: 60px;
    justify-items: center;
    height: 60px;
    border: 1px solid #a3835f !important;
    border-radius: 50% !important;
    color: #a3835f;
    font-size: 24px !important;
    line-height: 1;
    padding: 19px 0 !important;
    text-align: center;
}

.words_slides .owl-nav span {
    display: flex;
    color: #a3835f;
    line-height: 1;
    margin-top: -10px;
    font-family: "Playfair Display", serif;
    font-size: 44px !important;
}

.moment_image_wrapper {
    padding: 8px;
    position: relative;
    transform: scale(1);
    transition: 0.4s ease;
}

.moment_image_wrapper img {
    width: 100%;
    flex: 1 1 auto;
    border-radius: 12px;
    object-fit: cover;
}

.moment_image_wrapper .moment_image_caption {
    opacity: 0;
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: linear-gradient(to top, #193539, transparent);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 60px 24px 24px;
    transition: 0.4s ease;
}

.moment_image_wrapper:hover {
    transform: scale(1.01);
}

.moment_image_wrapper:hover .moment_image_caption {
    opacity: 1;
}

.moment_image_wrapper .moment_image_caption span {
    color: #fff;
    font-size: 18px;
}

.award_item_wrapper {
    padding: 8px;
}

.award_item_wrapper img {
    max-width: 250px !important;
    height: 250px !important;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #ffeabc;
}

.award_item_wrapper span {
    text-align: center;
    line-height: 1.4;
    color: #8e8e8e;
}

.award_item_wrapper span b {
    font-weight: 500;
    color: #212121;
}

.podcast_item_wrapper {
    padding: 8px;
}

.podcast_item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #a2835f, #718172);
    margin-bottom: 16px;
}

.podcast_item_wrapper span {
    font-weight: 500;
    text-align: center;
}

.gratitude_gallery_section {
    background-image: url("../images/gratitude_gallery_bg@2x-100.jpg");
    background-size: cover;
}

.gratitude_item_wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    padding: 12px;
    margin: 20px 0;
    transform: rotate(-15deg);
}

.gratitude_item_wrapper img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.gratitude_item_wrapper span {
    text-align: center;
}

.gratitude_item_wrapper.left {
    transform: rotate(15deg);
}

@media only screen and (max-width: 780px) {

    .toolbar_root {
        padding: 4px;
    }

    .toolbar_root #main_logo {
        height: 100px;
    }

    .toolbar_root #main_logo.minimized {
        top: 4px;
        height: 60px;
    }

    .page_heading {
        font-size: 42px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


    .page_heading.left_aligned {
        text-align: center;
    }

    .footer_container {
        width: calc(100% - 6px);
    }

    .base_margin {
        margin-top: 60px;
    }

    .contact_page_heading {
        align-self: center;
    }


    .timeline_section_wrapper:before {
        width: 2px;
        height: 90%;
        top: 50%;
        left: 12px;
        background: #878787;
    }

    .timeline_item_wrapper {
        width: calc(100% - 42px);
        align-self: flex-end;
        padding: 24px;
    }

    .timeline_item_wrapper:nth-child(even) {
        margin-top: 12px;
    }

    .timeline_item_wrapper:nth-child(even):before,
    .timeline_item_wrapper:nth-child(odd):before {
        content: "";
        position: absolute;
        top: 50%;
        bottom: auto;
        left: 4px;
        box-shadow: -8px 0 16px -5px rgba(0, 0, 0, 0.1);
        transform: translateX(-50%) rotate(-225deg);
    }


    .timeline_item_wrapper:nth-child(even):after,
    .timeline_item_wrapper:nth-child(odd):after {
        content: "";
        position: absolute;
        top: 50%;
        bottom: auto;
        left: -42px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #878787;
        transform: translateY(0);
    }

    .contact_form_section {
        margin: 8px 12px;
        width: calc(100% - 16px);
        padding: 16px;
        border-radius: 24px;
    }

    .contact_detail_section {
        margin: 8px 12px;
        align-self: center;
        width: calc(100% - 24px);
        max-width: 500px;
        padding: 24px;
        border-radius: 24px;
        background: #FFF2E4;
    }

    .about_section_content_wrapper {
        padding: 40px 20px;
    }

    .about_section_image_wrapper img {
        object-position: center bottom;
    }

    .words_item_wrapper p {
        font-size: 28px;
        padding: 0 16px;
    }
}
