/*
    Theme Name: SQLink
    Author: SQLink
*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");

body {
    font-family: "Heebo";
    background: linear-gradient(
        195deg,
        rgba(189, 171, 115, 0.4) 0%,
        rgba(249, 250, 252, 0.4) 19.08%
    );

    @media screen and (width <= 768px) {
        background: linear-gradient(54deg, white 73%, #cec09750);
    }
}

.rubik {
    font-family: "Rubik", serif;
}

html,
body {
    @media screen and (width <= 768px) {
        max-width: 100dvw;
        overflow-x: hidden;
    }
}

:root {
    --primary: #bdab73;
    --primary-hover: #cec097;
    --primary-active: #b19b59;

    --secondary: #174a75;
    --secondary-hover: #1f659e;
    --secondary-active: #0c263c;

    --tertiary-border: #b2aea8;
    --tertiary-border-hover: #bdab73;
    --tertiary-bg-hover: #ebe8e3;

    direction: rtl;
}

.sq-text-primary {
    color: var(--primary);
}

.linear_bg_page {
    background: linear-gradient(70deg, #174a74 85%, #376a93);
}

.sq-primary-button {
    border-radius: var(--border-radius-full, 100px);
    background: var(--surface-brand-secondary, #bdab73);
    color: #ffffff;
    font-size: 18px;
    padding: 10px 24px;
    transition: all 150ms ease-in-out;
    color: #000;
}

@media screen and (width > 768px) {
    .sq-primary-button::after {
        transition: all 150ms ease-in-out;
        content: "";
        display: inline-block;
        width: 0;
        height: 18px;
        background-image: url("./assets/images/btn-arrow-black.png");
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.sq-primary-button:hover {
    background-color: var(--primary-hover);
}
.sq-primary-button:active {
    background-color: var(--primary-active);
}

@media screen and (width > 768px) {
    .sq-primary-button:hover::after {
        width: 24px;
    }
}

.sq-secondary-button {
    background-color: var(--secondary);
    color: #ffffff;
    font-size: 18px;
    border-radius: 26px;
    padding: 10px 24px;
    transition: all 150ms ease-in-out;
}

@media screen and (width > 768px) {
    .sq-secondary-button::after {
        transition: all 150ms ease-in-out;
        content: "";
        display: inline-block;
        width: 0;
        height: 18px;
        background-image: url("./assets/images/btn-arrow.png");
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.sq-secondary-button:hover {
    background-color: var(--secondary-hover);
}
.sq-secondary-button:active {
    background-color: var(--secondary-active);
}

@media screen and (width > 768px) {
    .sq-secondary-button:hover::after {
        width: 24px;
    }
}

.sq-tertiary-button {
    background-color: #ffffff;
    border: 1px solid var(--tertiary-border);
    color: #000000;
    font-size: 18px;
    border-radius: 26px;
    padding: 10px 24px;
    transition: all 150ms ease-in-out;
}

@media screen and (width > 768px) {
    .sq-tertiary-button::after {
        transition: all 150ms ease-in-out;
        content: "";
        display: inline-block;
        width: 0;
        height: 18px;
        background-image: url("./assets/images/btn-arrow-black.png");
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.sq-tertiary-button:active {
    background-color: #ffffff;
}

.sq-tertiary-button:hover {
    background-color: var(--tertiary-bg-hover);
    border-color: var(--tertiary-border-hover);
}

@media screen and (width > 768px) {
    .sq-tertiary-button:hover::after {
        width: 24px;
    }
}

.navbar_social_icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.navbar_owner_logo {
    width: 32px;
    height: 32px;
}

.navbar_contrast_icon {
    width: 16px;
    height: 16px;
}

.about_managment_menu {
    top: 10px !important;
}

.about_managment_menu:has(img) {
    width: max-content;

    border-radius: var(--border-radius-normal, 8px);
    border: 1px solid var(--border-secondary, #b2aea8);
    background: rgba(252, 251, 249, 0.9);
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);
}

.about_management_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.navbar_brand_logo {
    width: auto;
    height: 84px;
    object-fit: cover;
    object-position: center;

    @media screen and (width <= 768px) {
        width: auto;
        height: 58px;
    }
}

.brand_label_content p {
    margin-bottom: 0;
}

.main_menu_card_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.main_menu_wrapper {
    height: 55px;
}

.main_menu_nav {
    border: 1px solid #b2aea8;
    background-color: #f4f4f4;
}

.navbar_light_mode {
    .main_menu_nav {
        border: 1px solid #b2aea8;
        background-color: #f4f4f4;
        color: black;
    }

    .main_nav_item {
        color: black !important;
    }
}

.dropdown-menu {
    width: 60dvw;
    position: fixed;
    top: 15px !important;
    left: -239px !important;
    z-index: 99999;

    @media screen and (width <= 1500px) {
        & {
            width: 77vw;
        }
    }
}

.navbar_menu_arrow {
    width: 16px;
    height: 16px;
    object-fit: cover;
    object-position: center;
}

.navbar_searchglass {
    width: 15px;
    height: 15px;
    object-fit: cover;
    object-position: center;

    @media screen and (width <= 768px) {
        width: 24px;
        height: 24px;
    }
}

.main_nav_item {
    padding: 5px 10px;
    border: none;
    background: transparent;
    border-radius: 100px;
}

.main_nav_item:hover {
    background-color: #ebe8e3;
}

@media screen and (width > 768px) {
    .mega_menu_toggle::after {
        transition: all 150ms ease-in-out;
        content: "";
        display: inline-block;
        border: none;
        width: 24px;
        height: 24px;
        background-image: url(./assets/images/dropdown-arrow.png);
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0;
        vertical-align: bottom;
    }
}

.searchbar_searchbox input {
    border: none;
    font-size: 18px;
    background-color: transparent;
    outline: none;
}

.main_menu_nav:has(input:focus) input,
.main_menu_nav:has(input:not(:placeholder-shown)) input {
    width: 40dvw;
}

.main_menu_nav:has(input:focus) .dropdown-center,
.main_menu_nav:has(input:focus) a,
.main_menu_nav:has(input:focus) .vr,
.main_menu_nav:has(input:not(:placeholder-shown)) .dropdown-center,
.main_menu_nav:has(input:not(:placeholder-shown)) a,
.main_menu_nav:has(input:not(:placeholder-shown)) .vr {
    display: none;
}

.management_dropdown_toggle {
    background-color: transparent;
    border: none;
    outline: none;
}

@media screen and (width > 768px) {
    .management_dropdown_toggle::after {
        content: "";
        display: inline-block;
        border: none;
        width: 16px;
        height: 16px;
        background-image: url(./assets/images/arrow-down.png);
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0;
        vertical-align: middle;
    }
}

.top_nav_select {
    border: none;
    font-size: 18px;
    outline: none;
    background-color: transparent;
}

.navbar_light_mode {
    .dropdown-toggle {
        color: white;
    }

    .management_dropdown_toggle::after {
        background-image: url(./assets/images/arrow_down_light.png);
    }
}

.carousel_weird_card_thing {
    margin-right: -153px;

    @media screen and (width <= 768px) {
        margin-right: 0;
        margin-top: -5px;
    }
}

.carousel_media_container {
    border-radius: 42px 42px 42px 200px;

    @media screen and (width <= 768px) {
        border-radius: 24px 24px 24px 100px;
    }
}

.carousel_media_container img,
.carousel_media_container iframe {
    width: 100%;
    min-height: 650px;
    height: 66dvh;
    /* height: 606px; */

    @media screen and (width <= 768px) {
        min-height: auto;
        height: 200px;
    }
}

.carousel_news_item {
    width: fit-content;
}

.carousel_info_card {
    border-radius: 20px;
    border: 1px solid var(--border-secondary, #b2aea8);
    background: rgba(252, 251, 249, 0.9);

    /* Blur shaps */
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);

    z-index: 999;
    min-height: 341px;

    @media screen and (width <= 768px) {
        min-height: 220px;
        height: auto;
    }
}

.activeFieldLink.active
{
    background-color: #0C263C;
    color:#fff;
}

.carousel_play,
.carousel_prev,
.carousel_next {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-position: center;
    background-size: cover;
}

.carousel_next.slick-disabled,
.carousel_prev.slick-disabled {
    opacity: 0.5;
}

.carousel_play {
    background-image: url("./assets/images/pause.png");
}

.carousel_play.carousel_paused {
    background-image: url("./assets/images/play.png");
}

.carousel_prev {
    background-image: url("./assets/images/carousel_arrow.png");
}

.carousel_next {
    background-image: url("./assets/images/carousel_arrow.png");
    transform: rotate(180deg);
}

.home_sbutitle {
    padding-right: 8dvw;

    @media screen and (width <= 768px) {
        padding-right: 0;
    }
}

.carousel_row_wrapper {
    @media screen and (width <= 768px) {
        padding-right: 17px;
    }
}

.home_header_wrapper {
    background: linear-gradient(to bottom left, #bdaa7321 10%, #ffffff);
}

.main_topic_wrapper {
    background-color: #174a75;
}

.main_topic_link_icon {
    width: 24px;
    height: 24px;
}

.rs-col-5 {
    flex: 0 0 20%;
    max-width: 20%;

    @media screen and (max-width: 992px) { /* lg */
        flex: 0 0 25%;
        max-width: 25%;
    }

    @media screen and (max-width: 768px) { /* md */
        flex: inherit;
        max-width: inherit;
        padding: 0 18px;
    }

    @media screen and (max-width: 576px) { /* sm */
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 12px;
    }
}

.main_topic_card {
    background-color: #ffffff;
    border-radius: 18px;
    height: 100%;
    transition: transform 350ms ease-in-out;

    @media screen and (max-width: 768px) {
        height: 270px;
    }
    
    @media screen and (width > 768px) {        
        &:hover {
            transform: translateY(-20px) rotate(5deg);
            border-radius: var(--border-radius-large, 16px);
            background: var(--surface-secondary, #ebe8e3);
            box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
        }
    }
}

.information_square .info_box {
    border-radius: 30px;
    border: 1px solid var(--border-secondary, #b2aea8);
    background: var(--surface-primary, #fff);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}

.information_square:first-of-type {
    position: sticky;
    top: 0;
}

.col-md-6:has(.information_square_second) {
    align-self: flex-end;

    @media screen and (width <= 768px) {
        align-self: auto;
    }
}

.information_square_image {
    width: 202px;
    height: 232px;

    @media screen and (width <= 768px) {
        width: 120px;
        height: 136px;
    }
}

.information_square_bg {
    background-image: url(./assets/images/yellow-vector.png);
    background-position: left;
    background-repeat: repeat-y;
    background-size: auto;
}

.information_square_wrapper {
    height: 90vh;

    @media screen and (width <= 768px) {
        height: auto;
        gap: 2rem;
    }
}

.information_banner_wrapper {
    background-image: url(./assets/images/bg-art.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    background-attachment: fixed;
}

.information_banner {
    border-radius: 24px;
    height: 660px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.information_banner_card {
    z-index: 999;
    border: 1px solid #b2aea8;
    background-color: #fcfbf9e5;
    margin: 20px;

    @media screen and (width <= 768px) {
        margin-bottom: -28px;
    }
}

.project_slider_wrapper {
    background-color: #ebe8e3;
}

.project_card_image,
.event_card_image {
    background-position: center;
    background-size: cover;
    /* height: 280px; */
    height: 32dvh;
    border-radius: 18px;
    transition: filter 250ms ease-in-out;
}

.project_status_color {
    border-radius: 100px;
    border: 1px solid #000;
    width: 24px;
    height: 24px;
}

.project_status_wrapper {
    margin: 5px;
}

.project_status_wrapper,
.event_status_wrapper {
    background-color: #fcfbf9f2;
    border-radius: 24px;
    padding: 5px 10px;
    height: fit-content;
}

.project_slider_control,
.event_slider_control {
    cursor: pointer;
}

.project_slider_control.slick-disabled,
.event_slider_control.slick-disabled {
    opacity: 0.5;
}

.project_slider_next,
.event_slider_next {
    transform: rotate(180deg);
}

.project_slider_dots .slick-dots,
.event_slider_dots .slick-dots {
    display: flex;
    align-items: center;
    position: static;
}

.project_slider_dots .slick-dots li,
.event_slider_dots .slick-dots li {
    width: 60px;
    margin: 0;
}

.project_slider_dots .slick-dots li button,
.event_slider_dots .slick-dots li button {
    width: 100%;
    transition: all 250ms ease-in-out;
}

.project_slider_dots .slick-dots li button:before,
.event_slider_dots .slick-dots li button:before {
    background-color: rgb(185, 181, 181);
    content: "";
    height: 5px;
    width: 100%;
}

.project_slider_dots .slick-dots li.slick-active button:before,
.event_slider_dots .slick-dots li.slick-active button:before {
    width: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    height: 8px;
}

.project_slider_dots .slick-dots li:not(.slick-active),
.event_slider_dots .slick-dots li:not(.slick-active) {
    top: 2px;
}

.project_card_wrapper:hover .project_card_image {
    filter: drop-shadow(2px 4px 6px #04040458);
}

.howcanwehelp {
    color: #fff !important;
}
.hcwhy-h {
    font-size: 45px;
}
.hcwhy-p {
    max-width: 619px;
    font-size: 20px;
    margin-bottom: 20px;
}

.tertiary_button_trans {
    background-color: transparent;
    color: #ffffff;
    font-size: 18px;
    border-radius: 26px;
    padding: 10px 24px;
    transition: all 150ms ease-in-out;
    border: solid 1px #fff;
}

@media screen and (width > 768px) {
    .tertiary_button_trans::after {
        transition: all 150ms ease-in-out;
        content: "";
        display: inline-block;
        width: 0;
        height: 18px;
        background-image: url("./assets/images/btn-arrow.png");
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.tertiary_button_trans:hover {
    background-color: var(--primary-hover);
}
.tertiary_button_trans:active {
    background-color: var(--primary-active);
}

.tertiary_button_trans:hover::after {
    width: 24px;
}

.event_card_short_description {
    height: 77px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article_list_wrapper {
    background-color: #ebe8e3;
}

.article_list_tile:not(:last-of-type) {
    border-bottom: 1px solid #b2aea8;
}

.article_list_side_image {
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    width: 23dvw;
    height: 23dvw;
}

@keyframes infiniteRotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(120deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.article_list_side_cube {
    width: 12vw;
    height: 12vw;
    position: relative;
    left: 81px;
    object-fit: cover;
    animation: infiniteRotation 10s steps(4) infinite;
    top: 80px;
}

.article_title_icon {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

.article_list_tile:hover .article_title {
    text-decoration: 2px solid underline;
}

.article_list_tile:hover .article_title_icon {
    opacity: 1;
}

.footer_gallery_logo {
    height: 100px;
    object-position: center;

    @media screen and (width <= 768px) {
        height: 60px;
    }
}

.footer_brand_logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    object-position: right;
}

.footer_menu_item_logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: right;
}

.main_topic_image {
    height: 140px;
    width: auto;
}

.text_center_mb {
    @media screen and (width <= 768px) {
        text-align: center;
    }
}

.top_navbar_wrapper_mobile {
    border: 1px solid #b2aea8;
    border-right: none;
    border-left: none;
}

#mobile-hamburger {
    height: fit-content;
}

.mobile_searchbox {
    background-color: transparent;
    border: none;
}

.mobile_searchbox_input {
    border: none;
    font-size: 18px;
    background-color: transparent;
    outline: none;
}

.mobile_menu_head img {
    transition: transform 100ms ease-in-out;
}

.mobile_menu_head:not(.collapsed) img {
    transform: scaleY(-1);
}

.footer_mobile_menu_item img {
    transition: transform 250ms ease-in-out;
}

.footer_mobile_menu_item:not(.collapsed) img {
    transform: scaleY(-1);
}

.home_breadcrumb {
    background-size: cover;
    background-position: center;
    display: inline-block;
    position: relative;
    top: -5px;
}

.seperator {
    background-image: url(./assets/images/left-arrow.png);
    width: 16px;
    height: 16px;
    margin: 0 16px;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.seperator.light {
    background-image: url(./assets/images/seperator-light.svg);
}

.faq_side_image {
    height: 24dvw;
    width: 24dvw;
    object-fit: cover;
    border-radius: 100%;
}

.faq_toggler_wrapper {
    border: 1px solid #bdab73;
    transition: all 250ms ease-in-out;
    background-color: #ebe8e3;
}

.faq_toggler {
    cursor: pointer;
}

.faq_toggler_wrapper:hover {
    box-shadow: 0 0 16px #00000013;
}

.faq_icon {
    transition: all 250ms ease-in-out;
    width: 24px;
    height: 24px;
    background-image: url(./assets/images/plus.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.faq_toggler:not(.collapsed) .faq_icon {
    transform: scaleY(-1);
    background-image: url(./assets/images/minus.png);
}

.external_links_container {
    cursor: pointer;
    background-color: #fff;
    transition: all 250ms ease-in-out;
}

.external_links_container:has(.external_links_toggler:hover),
.external_links_container.group_item:hover {
    background-color: #bdab7350;
}

.external_link_image {
    width: 103px;
    height: 84px;
    object-fit: contain;
    object-position: center;
    border: 1px solid #bdab73;
    border-radius: 16px;
}

.external_link_container {
    border-radius: 20px;
    border-bottom: 1px solid #00000013;
}

.external_link_container:hover {
    background-color: #bdab7350;
}

.external_link_container:last-of-type {
    border-bottom: none;
}

.external_links_toggler img.external_link_icon {
    transition: all 250ms ease-in-out;
}

.external_links_toggler:not(.collapsed) img.external_link_icon {
    transform: scaleY(-1);
}

.form-control:focus {
    box-shadow: none;
}

.stage_side_arrows {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.stage_btn img {
    transition: all 250ms ease-in-out;
}

.stage_btn:not(.collapsed) img {
    transform: scaleY(-1);
}

.stage_displayd_image {
    width: 100%;
    height: 35dvh;
}

.stage_paragraph_side_image {
    width: 100%;
    height: 24dvh;
    object-fit: cover;
    object-position: center;
}

.downloadable_file_item {
    transition: all 250ms ease-in-out;
    border: 1px solid #bdab73;
}

.downloadable_file_item:hover {
    box-shadow: 0 0 16px #00000013;
    cursor: pointer;
}

.stage_arrow {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.stage_circle {
    width: 32px;
    height: 32px;
    background-color: #ebe8e3;
    border-radius: 100%;
}

.stage_accordion {
    cursor: pointer;

    .stage_arrow {
        transition: all 250ms ease-in-out;
    }
}

.stage_accordion_wrapper * {
    transition: all 250ms ease-in-out;
}

.stage_accordion_wrapper {
    border: 1px solid #b2aea8;
    border-radius: 18px;
}

.stage_accordion_wrapper:hover {
    background-color: var(--primary-hover);
}

.stage_accordion_wrapper:hover .stage_circle,
.stage_accordion:not(.collapsed) .stage_circle {
    background-color: var(--primary-active);
}

.stage_accordion:not(.collapsed) .stage_arrow {
    transform: scaleY(-1);
}

.stage_accordion_wrapper:has(.stage_accordion:not(.collapsed)) {
    background-color: transparent !important;
}

.input-group:has(.stages_search) {
    width: 24dvw;

    @media screen and (width <= 768px) {
        width: 100%;
    }
}
.stages_search {
    padding: 10px;
    background-color: white;
}

.data_table_wrapper th,
.data_table_wrapper td {
    @media screen and (width <= 768px) {
        min-width: 150px;
    }
}

.article_display_image {
    width: 380px;
    object-fit: cover;
    object-position: center;

    @media screen and (width <= 768px) {
        width: 100%;
    }
}

@media screen and (width > 768px) {
    .article_card_elm:not(:last-of-type) {
        border-bottom: 1px solid #b2aea8;
    }
}

.article_wrapper {
    background-image: url(./assets/images/yellow-vector-extended.png);
    background-position: left;
    background-repeat: repeat-y;
    background-size: auto;
}

.events-container {
    max-width: clamp(70%, 90vw, 90%);

    @media screen and (width <= 768px) {
        max-width: 100%;
    }
}

.event_searchbar {
    width: 24dvw;
}

/* First we hide the default CF7 loader */
.wpcf7-spinner::before {
    display: none;
}

/* Add custom CF7 loader */
.wpcf7-spinner {
    top: 11px;
    background-color: transparent;
}

.wpcf7-response-output {
    border-color: transparent !important;
    color: #dc3232;
    text-align: center;
    font-weight: 600;
    margin: 0 !important;
}

.spinner-border-sq-primary {
    color: var(--primary) !important;
}

.image_gallery_image_item {
    object-fit: cover;
    object-position: center;
    height: 550px;
    width: 100%;

    @media screen and (width <= 768px) {
        height: 260px;
    }
}

.wpcf7-form {
    direction: rtl !important;
}

.wpcf7-form * {
    direction: rtl !important;
}

textarea {
    height: 120px;
}

.contact-form-tablist {
    width: fit-content;
    border-radius: var(--border-radius-full, 100px);
    border: 2px solid var(--border-secondary, #b2aea8);
}

.contact-form-tab {
    color: black !important;
    border: none;
    transition: all 250ms ease-in-out;
}

.contact-form-tab.active {
    background-color: #b19b59;
}

#top-navbar {
    border-bottom: 1px solid;
    position: relative;
    transition: all 250ms ease-in-out;
}

.home_header_wrapper {
    background-image: url(./assets/images/yellow-vector-bottom.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 50dvh;
}

.sq-search-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    padding: 15px;
    transition: all 250ms ease-in-out;
}

.sq-search-item:hover {
    background-color: #cec097;
}

.sq-search-item-arrow {
    width: 24px;
    height: 24px;
    background-image: url(./assets/images/arrow-left.png);
    background-position: center;
    background-size: cover;
}

.modal-backdrop.show {
    opacity: 0.2;
}

#search-modal .modal-content {
    top: 14dvh;
    /* width: 45dvw;
    left: 9dvw;
    max-height: 39dvh;
    overflow-y: auto;
    scrollbar-width: auto;
    background-color: white; */

    /* @media screen and (width <= 1600px) {
        & {
            left: 100px;
            top: 100px;
        }
    }

    @media screen and (width <= 1440px) {
        & {
            left: 1dvw;
        }
    }

    @media screen and (width <= 768px) {
        left: 0;
        right: 0;
        width: 100%;
        top: 250px;
        scrollbar-width: none;
    } */
}

/* Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
#search-modal .modal-content::-webkit-scrollbar {
    width: 8px; /* Set width of scrollbar */
}

/* Scrollbar thumb */
#search-modal .modal-content::-webkit-scrollbar-thumb {
    background: #cec097;
    border-radius: 18px; /* Optional: round edges */
}

/* Scrollbar track (background) */
#search-modal .modal-content::-webkit-scrollbar-track {
    border-radius: 18px; /* Optional: round edges */
    background: white;
}

.carousel_play:not(.carousel_paused)::after {
    content: "";
    width: 40px;
    height: 26px;
    background-size: cover;
    background-image: url(./assets/images/carousel_spinner_thing.png);
    display: block;
    padding: 21px;
    left: 8px;
    position: relative;
    top: -9px;
    animation: rotate360 5s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.limit-8-lines {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gradientText {
    background: linear-gradient(to bottom left, black 0%, #e4d8b2 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mega_menu_tile {
    padding: 12px;
    border-radius: var(--border-radius-normal, 8px);
    background: var(--color-neutral-300, #f8f6f4);
    transition: all 250ms ease-in-out;
}

.mega_menu_tile:hover {
    border-radius: var(--border-radius-normal, 8px);
    background: var(--color-neutral-300, #f8f6f4);

    /* elevation/4 */
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}

.main_menu_dropdown {
    border-radius: 20px;
    border: 1px solid var(--border-secondary, #b2aea8);
    background: rgba(252, 251, 249, 0.9);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);
}

.mega_menu_dropdown_item:not(:last-of-type) {
    border-bottom: 1px solid #b2aea8;
}

.mega_menu_dropdown_item:hover a {
    background-color: inherit;
    color: #b2aea8;
}

.mega_menu_side_link {
    border-radius: 8px;
    transition: all 250ms ease-in-out;

    width: fit-content;
}

.mega_menu_side_link:hover,
.mega_menu_side_link:active {
    background-color: inherit;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.event_card_image {
    transition: all 250ms ease-in-out;
}

.event_card_wrapper:hover .event_card_image {
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}

.dark-blue-bg {
    background: linear-gradient(
            to bottom,
            rgba(23, 74, 117, 0.8),
            rgba(23, 74, 117, 0.5)
        ),
        url(./assets/images/shutterstock/blue-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mainTopicNumber {
    text-align: center;
}

.mainTopicWrapper {
    position: relative;
    opacity: 0;
    bottom: -50px;
}

.about-header-wrapper {
    background-image: url(./assets/images/yellow-vector.png);
    background-size: contain;
    background-position: left bottom -300px;
    background-repeat: no-repeat;
}

.event_card_wrapper:hover .sq-tertiary-button {
    background-color: var(--tertiary-bg-hover);
    border-color: var(--tertiary-border-hover);
}

.event_card_wrapper:hover .sq-tertiary-button::after {
    width: 24px;
}

.sq-secondary-button.disabled {
    border-radius: var(--border-radius-full, 100px);
    opacity: 0.2;
    background: var(--components-button-secondary, #174a75);

    /* elevation/4 */
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    cursor: default;
}

@media screen and (width > 768px) {
    .sq-secondary-button.disabled:hover::after {
        width: 0;
    }
}

.hot-fix-ghost-btn:hover {
    background: var(--surface-secondary, #bdab7350) !important;
}

.mobile_brand_text {
    @media screen and (max-width: 768px) {
        width: 56%;
    }
}

#desktop_brand_text {
    position: relative;
    transition: all 250ms ease-in-out;
}

.dark_top_nav {
    color: white;
    background: #174a74;
}

@media screen and (width > 768px) {
    .session_bg_vector {
        background-image: url(./assets/images/yellow-vector.png);
        background-repeat: no-repeat;
        background-position: left 244px;
        background-size: 560px;
    }
}

.renewal_stage_submenu {
    transition: all 250ms ease-in-out;
    cursor: pointer;
}

.renewal_stage_submenu:hover {
    background-color: var(--primary-hover);
}

#main-menu {
    transition: all 250ms ease-in-out;
}

.custom-marquee .js-marquee {
    display: flex;
    flex-flow: row nowrap;
}

.done_label {
    background-color: #174a75;
    color: #fff;
}

@media screen and (width <= 768px) {
    .d-flex > .information_banner_card {
        justify-content: center !important;
    }

    .information_banner {
        height: 342px;
        background-position: top;
        background-size: contain;
    }
}

.sq_breadcrumbs span a {
    color: #212529 !important;
}

.flip {
    transform: scale(-1);
}

.a11y-toggle .arrow {
    transition: all 250ms ease-in-out;
}

.a11y-toggle {
    left: 0;
    transition: all 500ms ease-in-out;
}

.a11y-toolbar-list {
    @media screen and (width <= 768px) {
        & {
            transform: scale(0.7);
            left: 6px;
            position: relative;
        }
    }
}