@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-Light.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-LightItalic.otf) format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-Medium.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-MediumItalic.otf) format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-Regular.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Matter';
    src: url(../font/Matter-RegularItalic.otf) format('opentype');
    font-weight: 400;
    font-style: italic;
}


body{overflow-x:hidden;background: white;font-family: 'Matter', sans-serif;line-height:120%;font-size:20px;position: relative;margin: 0;scroll-behavior: smooth;margin: 0 auto;box-sizing: border-box;}
h1, h2, h3, h4, h5, h6{font-family: 'Matter', sans-serif;line-height:100%;color: #813960;}
h1{font-size:76px;font-weight:500;}
h2{font-size:36px;font-weight:500;}
h3{font-size:26px;font-weight:500;}
h4{font-size:24px;font-weight:500;}
h5{font-size:20px;font-weight:500;}
h6{font-size:18px;font-weight:500;}

h1 {
    font-family: 'Matter', sans-serif;
    font-weight: 500;
}

p {
    font-family: 'Matter', sans-serif;
    font-weight: 400;
}

em {
    font-family: 'Matter', sans-serif;
    font-style: italic;
}

a{text-decoration: unset;font-family: 'Matter',sans-serif;color: #813960;transition: all 0.3s;}

a:hover {color: #333333;}

img {display: block; width: 100%;}

.hidden{
    display: none!important;
}

/* Color Pallete  */
.light-maroon{color: #813960}
.light-cyan{color: #9CCCD0}
.dark-purple{color: #2F2D53}
.creamy-yellow{color: #DBD8CD}
.light-grey{color: #BFBFBF}



/* Animation */
.ease-wrapper{overflow: hidden !important;}

.ease-ltr { transform: translateX(-100px); opacity: 0; transition: 1.5s; }
.ease-ltr.delay { transition-delay: 0.3s; }
.is-active .ease-ltr { transform: none; opacity: 1; }

.ease-rtl { transform: translateX(100px); opacity: 0; transition: 1.5s; }
.ease-rtl.delay { transition-delay: 0.3s; }
.is-active .ease-rtl { transform: none; opacity: 1; }

.ease-btt { transform: translateY(100px); opacity: 0; transition: 1.5s; }
.ease-btt.delay { transition-delay: 0.3s; }
.is-active .ease-btt { transform: none; opacity: 1; }

.ease-ttb { transform: translateY(-100px); opacity: 0; transition: 1.5s; }
/* .ease-ttb { width: 300px; height: 600px;} */
.ease-ttb.delay { transition-delay: 0.3s; }
.is-active .ease-ttb { transform: none; opacity: 1; }


.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #813960;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ics-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 5px;
    z-index: 1000;
}

.no-new-notification{


}
/* Nav */
.header {
    position: relative;
    background: #813960;
    padding: 34px 0 18px;
    box-sizing: border-box;
}

.mobile-menu{
    display: none;
}

.header .flex-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: space-between;
    max-width: 1512px;
    padding: 0 30px;
}

.header .menu-wrapper ul {
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.header .logo-wrapper{
    display: flex;
}

.header .logo-wrapper img {
    width: 100%;
    transition: all 0.3s linear;
}

.header .right-wrapper{
    display: flex;
    gap: 25px;
}

.header .menu-wrapper,
.header .utilities-wrapper{
    display: flex;
    align-items: end;
}

.header .utilities-wrapper{
    gap: 12px;
    margin-bottom: 3px;
    transition: 0.3s all linear;
}

.utilities-wrapper .mid-icon,
.utilities-wrapper .mid-icon .notification-icon-wrapper{
    position: relative;
}

.header .notification-toast{
    position: absolute;
    padding: 24px;
    border-radius: 22px;
    background-color: #9CCCD0;
    right: -58px;
    top: 43px;
    box-shadow: 0px 5px 20px -14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    z-index: 199;
}

    .header .notification-toast .notification-toast-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        max-height: 250px;
        overflow-y: auto;
    }


        .header .notification-toast .notification-toast-wrapper::-webkit-scrollbar {
            width: 5px;
            right: -10px;
        }

        .header .notification-toast .notification-toast-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .header .notification-toast .notification-toast-wrapper::-webkit-scrollbar-thumb {
            background: #c09caf;
            border-radius: 10px;
        }

            .header .notification-toast .notification-toast-wrapper::-webkit-scrollbar-thumb:hover {
                background: #813960;
            }

.header .notification-icon-wrapper:hover .notification-toast {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.header .notification-toast-wrapper a {
    min-width: 140px;
    display: flex;
    gap: 8px;
    transition: 0.3s all;
    text-decoration: unset;
    font-family: 'Matter', sans-serif;
    /*color: #813960;*/
    color: #000000;
    font-size: 16px;
    cursor: text;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E0E0E0;
}

    .header .notification-toast-wrapper a:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: unset;
    }

    .header .notification-toast-wrapper a:hover {
    }

    .header .notification-toast-wrapper a.pointer{
        transition: 0.3s all;
    }

    .header .notification-toast-wrapper a.pointer:hover {
        opacity: 0.6;
        cursor: pointer !important;
    }
.header .notification-toast-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #9CCCD0;
    transform: rotate(45deg);
    top: -30px;
    right: 32px;
    border-radius: 1px;
}

.header .utilities-wrapper .search-icon-wrapper img {
    transition: transform 0.3s ease;
}

.header .utilities-wrapper .search-icon-wrapper img:hover {
    transform: translateY(-5px);
}


.header .utilities-wrapper .header-notification-icon-w{
    width: 24px;
    height: 22px;
}
.header .utilities-wrapper .header-notification-icon-w:before{
    width: 22px;
    height: 22px;
    content: '';
    background: url(../image/notification-ic.svg) no-repeat;
    display: block;
    position: relative;
    transition: 0.3s all;
}

.header .utilities-wrapper .header-notification-icon-w:hover:before {
    background: url(../image/notification-ic-hover.svg) no-repeat;
    background-size: 22px 22px;
}

.header .utilities-wrapper .header-bookmark-icon-w{
    width: 14px;
    height: 20px;
}
.header .utilities-wrapper .header-bookmark-icon-w:before{
    width: 14px;
    height: 20px;
    content: '';
    background: url(../image/bookmark-ic.svg) no-repeat;
    display: block;
    position: relative;
    transition: 0.3s all;
}

.header .utilities-wrapper .header-bookmark-icon-w.active:before{
    background: url(../image/bookmark-ic-hover.svg) no-repeat;
}

.header .utilities-wrapper .header-bookmark-icon-w:hover:before{
    background: url(../image/bookmark-ic-hover.svg) no-repeat;
}

.mobile-menu-icon{
    display: none;
}

.header .menu-wrapper ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Matter', sans-serif;
    font-weight: 300;
    text-underline-offset: 5px;
    padding-bottom: 26px;
    /* text-transform: capitalize;*/
}

.header .menu-wrapper ul li a:hover {
    border-bottom: 5px solid white;
}
.header .menu-wrapper ul.navbar li a.active::after {
    position: absolute;
    bottom: -26px;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

/* Header login wrapper */
.header .login-wrapper{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    margin-bottom: -6px;
    margin-right: 25px;
}

.header .login-wrapper:hover{
    cursor: pointer;
}

.header .login-wrapper:hover .profile-toast:hover{
    cursor: default;
}

    .header .login-wrapper .profile-image {
        display: block;
        width: 100%;
        max-width: 38px;
        height: 100%;
        max-height: 38px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
    }

.header .login-wrapper .profile-name{
    position: relative;
    display: block;
    width: 100%;
    font-family: "Matter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    max-width: 100px;

    overflow: hidden; /* Hide overflow text */
    white-space: nowrap; /* Prevent text from wrapping to the next line */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */   
}

.header .login-wrapper .profile-arrow{
    background: url(../image/arrow-down-ic.svg) no-repeat;
    display: block;
    width: 12px;
    height: 6px;
    position: absolute;
    right: -20px;
    top: 16px;
}



.header .login-wrapper .profile-toast{
    position: absolute;
    padding: 24px;
    border-radius: 22px;
    background-color: #9CCCD0;
    right: -35px;
    top: 50px;
    box-shadow: 0px 5px 20px -14px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;

    z-index: 199;
}

.header .login-wrapper:hover .profile-toast{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.header .login-wrapper .profile-toast-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.header .login-wrapper .profile-toast-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #9CCCD0;
    transform: rotate(45deg);
    top: -30px;
    right: 32px;
    border-radius: 1px;
}



.header .profile-toast-wrapper .upper-toast{
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 10px;
}
.header .upper-toast .left-wrapper{
    display: flex;
    align-items: center;
    position: relative;
}

    .header .upper-toast .left-wrapper img {
        height: 48px;
        width: 48px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
    }
.header .upper-toast .right-wrapper{
    display: flex;
    flex-direction: column;
    gap:0px;
    justify-content: center;
    position: relative;
}
.header .upper-toast .right-wrapper .toast-profile-text{
    color: #813960;
    font-size: 16px;
    line-height: 110%;
}
.header .upper-toast .right-wrapper .toast-profile-text:last-child{
    color: rgba(129,57,96,0.5);
}
.header .profile-toast-wrapper .arrow-effect{
    display: none;
}

.header .profile-toast-wrapper .toast-separator{
    height: 1px;
    background-color: #88C0C5;
    width: 100%;
    margin-block: 12px;
    display: block;
    position: relative;
}

.header .profile-toast-wrapper .toast-link{
    font-size: 16px;
}

.header .profile-toast-wrapper a.edit-profile{
    margin-bottom: 12px;
}

.header .navbar li{
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.header .navbar li a{
    /* transition: all 0.3s linear; */
}

/* .header .navbar li:hover{
    border-bottom: 2px solid rgb(255, 255, 255);
} */

/* Submenu */
.mega-menu{
    background-color: #DBD8CD;
    overflow: hidden;
    width: 100%;
    position: absolute;
    height: 0;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s, top 0.5s ease;
}

.mega-menu.active {
    visibility: visible;
    opacity: 1;
    height: 100%;
}



.mega-menu .mega-menu-close{
    content: '';
    background: url(../image/mega-menu-close-ic.svg) no-repeat;
    display: block;

    position: relative;
    width: 38px;
    height: 38px;
}
.menu-close-wrapper{
    max-width: 1512px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 24px 30px 0;
    position: relative; 
    box-sizing: border-box;
}
.mega-menu .mega-menu-close:hover{
    cursor: pointer;
}

.mega-menu .flex-wrapper{
    max-width: 1512px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 42px;
    padding: 0 30px 30px;
    position: relative;
}


.mega-menu .flex-wrapper .sub-menu {
    width: calc(100% / 3);
}

.mega-menu .flex-wrapper .left-wrapper{
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .6s, opacity    
}
.mega-menu .flex-wrapper .middle-wrapper{
    transform: translateX(100%);
    opacity: 0;
    transition: transform .6s, opacity    
}
.mega-menu .flex-wrapper .right-wrapper{
    transform: translateX(100%);
    opacity: 0;
    transition: transform .6s, opacity    
}

.mega-menu.active .flex-wrapper .sub-menu{
    transform: translateX(0%);
    opacity: 1;
}

.sub-menu h1{
    color: rgba(129,57,96,0.5);
}

.sub-menu ul{
    list-style-type: none;
    padding: 2rem 0;
}

.sub-menu ul li{
    box-sizing: border-box;
    padding-bottom: 30px;
    position: relative;
    display: flex;
}

.sub-menu ul li.has-sub-tab{
    padding-bottom: 10px;
}

.sub-menu ul li a{
    font-size: 20px;
    color: #000000;
    font-family: "Matter", sans-serif;
    font-weight: 500;
    position: relative;
}

.mm-arrow{
    background: url(../image/mega-menu-arrow.svg) no-repeat;
    display: block;
    position: relative;
    top: 4px;
    right: -10px;
    display: block;
    width: 18px;
    height: 18px;
    transition: right 0.3s ease;    
}
.sub-menu ul li a:hover,
.sub-tab-list a:hover {
    color: #813960;
}
.sub-menu ul li a:hover ~ .mm-arrow{
    right: -20px;
}

.sub-menu .sub-tab-list{
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.sub-tab-list a {
    color: #000000;
    font-family: "Matter", sans-serif;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 300;
}


/* Search */
.icon-wrapper:hover{
    cursor: pointer;
}

#searchField {
    font-family: "Matter", sans-serif;
    font-size: 76px;
    color: rgba(129, 57, 96, 0.5);
    font-weight: 500;
    background: unset;
    border: unset;
    outline: none; 
}

#searchField:hover,
#searchField:focus {
    background: unset;
    border: unset;
    outline: none; 
}

#searchField::placeholder {
    font-family: "Matter", sans-serif;
    font-size: 76px;
    color: rgba(129, 57, 96, 0.5);
    font-weight: 500;
}

.search-wrapper .flex-wrapper{
    flex-direction: column;
}

.search-title {
    font-family: "Matter", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.clear-recent-searches {
    font-family: 'Matter', sans-serif;
    font-size: 14px;
    color: #813960;
    text-decoration: underline;
    transition: 0.3s all;
    margin-left: 22px;
}

.clear-recent-searches:hover {
    cursor: pointer;
}

.recent-searched-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.recent-searched-list a{
    font-family: "Matter", sans-serif;
    font-size: 20px;
    color: #BCB7A5;
    font-weight: 400;  
    transition: 0.3s all;
}

.recent-searched-list a:hover{
    color: #000000;
}


/* Marquee Wrapper */
.marquee-wrapper{
    margin-top: 60px;
    position: relative;
    background-color: #2F2D56;
}

.marquee-wrapper h1{
    color: #4E4C6F;
    margin: 0 0 24px 0;
    text-align: center;
}

.marquee-wrapper .flex-wrapper{
    position: relative;
    display: flex;
    padding: 60px 30px;
    max-width: 1512px;
    margin: 0 auto;
    flex-direction: column;
    gap: 24px;
}

.marquee-swiper-container .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
}


.marquee-swiper-container{
    position: relative;
    display: block;
}


/* Footer */
.footer{
    position: relative;
    background-color: #2F2D56;

    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer  .flex-wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1512px;
    padding: 14px 30px;
    margin: 0 auto;
}

ul.footer-menu{
    list-style-type: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.footnote{
    font-family: "Matter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: white; 
}

ul.footer-menu li:first-child a{
    font-family: "Matter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    position: relative;
}

ul.footer-menu li a{
    font-family: "Matter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: white;
    position: relative;
}

ul.footer-menu li{
    transition: 0.3s all;
}

ul.footer-menu li:not(:first-child) a:after{
    /* content: '';
    background: url(../image/footer-menu-arrow.svg) no-repeat;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: -15px; */
}

ul.footer-menu li:nth-child(2),
ul.footer-menu li:nth-child(3),
ul.footer-menu li:nth-child(4),
ul.footer-menu li:nth-child(5){
    margin-right: 10px;
}

ul.footer-menu li:nth-child(6){
    margin-right: 15px;
}



ul.footer-menu li:not(:nth-child(1)):hover{
    transform: translateY(-5px);
}

ul.footer-menu li:nth-child(2) a:after{
    content: '';
    background: url(../image/footer-instagram-ic.svg) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -15px;

}

ul.footer-menu li:nth-child(3) a:after{
    content: '';
    background: url(../image/footer-linkedin-ic.svg) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -15px;
}

ul.footer-menu li:nth-child(4) a:after{
    content: '';
    background: url(../image/footer-facebook-ic.svg) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -15px;
}

ul.footer-menu li:nth-child(5) a:after{
    content: '';
    background: url(../image/footer-tiktok-ic.svg) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -15px;
}

ul.footer-menu li:nth-child(6) a:after{
    content: '';
    background: url(../image/footer-youtube-ic.svg) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -15px;
}

/*Buttons*/
.btn-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.btn {
    color: #813960;
    font-size: 14px;
    font-weight: 500;
    background-color: #9CCCD0;
    padding: 12px 42px 11px 24px;
    border-radius:22px;
    position: relative;
    transition: all 0.3s;
}

.btn:hover {
    color: #DBD8CD;
    background-color: #813960;
}

.btn .arrow-right {
    background: url(../image/light-maroon-right-arrow.svg) no-repeat;
    display: block;
    position: absolute;
    right: 20px;
    top: 14px;
    width: 14px;
    height: 14px;
    transition: all 0.3s;
}

.btn:hover .arrow-right {
    transform: translateX(3px);
    background: url(../image/grey-right-arrow.svg) no-repeat;
}

.btn .arrow-down {
    background: url(../image/light-maroon-down-arrow.svg) no-repeat;
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    background-size: contain;
    width: 14px;
    height: 15px;
    transition: all 0.3s;
}

.btn:hover .arrow-down {
    transform: translateY(1px);
    background: url(../image/load-more-hovered.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}


/* Banner Wrapper */
.banner-wrapper{
    position: relative;
    margin-block: 40px 60px;
    box-sizing: border-box;
}


.banner-wrapper .flex-wrapper{
    position: relative;
    display: block;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 30px;
}

.swiper-container{
    display: unset;
}

.banner-wrapper .flex-wrapper h1{
    font-size: 36px;
    margin-block: 0  12px;
}

.announcement-item-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.announcement-item-wrapper .announcement-description {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limits to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(20px * 4);
}

.announcement-item-wrapper .announcement-left {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}
.announcement-item-wrapper .announcement-left a,
.announcement-item-wrapper .announcement-right a {
    position: relative;
    width: 100%;
}
.announcement-item-wrapper .announcement-left img,
.announcement-item-wrapper .announcement-right img {
    width: 100%;
    display: block;
    /*aspect-ratio: 16 / 9;*/
    object-fit: cover;
    border-radius: 22px;
    height: auto;
}

.announcement-item-wrapper .announcement-left .title-wrapper {
    margin-top: 7px;
}

.announcement-item-wrapper .announcement-left .title-wrapper a {
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    transition: all 0.3s;
    margin-bottom: 10px;
    display: block;
}
.announcement-item-wrapper .announcement-left .title-wrapper a:hover {
    color: #813960;
}

.announcement-item-wrapper .announcement-left .text-wrapper p {
    font-size: 16px;
    line-height: 20px;
    margin-block-start: 12px;
    margin-block-end: 20px;
}
.announcement-item-wrapper .announcement-right {
    position: relative;
    width: 50%;
    padding-left: 30px;
}

.tag-wrapper{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag-wrapper .tag-item{
    position: relative;
    display: inline-block;
    padding: 4px 13px;
    background: #813960;
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 17px;
    line-height: 100%;
    text-transform: uppercase;
}

.announcement-item-wrapper .announcement-right .announcement-title a {
    color: #000000;
    transition: all 0.3s;
}

.announcement-item-wrapper .announcement-right .announcement-title a:hover {
    color: #2F2D53;
}

.announcement-item-wrapper .announcement-right .announcement-view-more{
    color: #813960;
    font-size: 14px;
    font-weight: 500;
    background-color: #9CCCD0;
    padding: 12px 42px 11px 24px;
    border-radius:22px;
    position: relative;
    transition: all 0.3s;
}
.announcement-item-wrapper .announcement-right .announcement-view-more .arrow-right{
    background: url(../image/light-maroon-right-arrow.svg) no-repeat;
    display: block;
    position: absolute;
    right: 20px;
    top: 13px;
    width: 14px;
    height: 14px;
    transition: all 0.3s;
}
.announcement-item-wrapper .announcement-right .announcement-view-more:hover {
    background-color: #813960;
    color: #DBD8CD;
}
.announcement-item-wrapper .announcement-right .announcement-view-more:hover .arrow-right{
    transform: translateX(3px);
    background: url(../image/grey-right-arrow.svg) no-repeat;
}

/* Slider Dash */
.slider-dash{
    background-color: #000000;
    height: 1px;
    width: 30px;
    display: block;
    margin-inline: 8px;
}

.swiper.announcement-swiper {
    padding: 0 0 38px 0;
}
.swiper-pagination-custom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    left: unset !important;
    right: 100px;
}

.slider-starting-number,
.slider-ending-number{
    font-size:14px;
    font-weight: 300;
    font-family: "Matter", sans-serif;
}

.banner-wrapper .swiper-button-prev {
    position: absolute;
    bottom: 0;
    top: unset;
    right: 45px !important;
    left: unset !important;
    width: 38px;
    height: 38px;
    z-index: 11;
  }
  
  .banner-wrapper .swiper-button-prev:after {
    content: '';
    display: block;
    background-image: url(../image/slider-left.png), url(../image/slider-left-filled.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 38px;
    height: 38px;
    left: 0;
    top: 0;
    position: absolute;
    transition: all 0.3s;
}

.banner-wrapper .swiper-button-prev:hover:after {
    background-size: 0 0, contain;
    width: 38px;
    height: 38px;
}

  
  .banner-wrapper .swiper-button-next {
    position: absolute;
    bottom: 0;
    top: unset;
    right: 0 !important;
    left: unset !important;
    z-index: 11;
    width: 38px;
    height: 38px;
  }
  
  /* .banner-wrapper .swiper-button-next:after {
    content: '';
    background: url(../image/slider-right.png) no-repeat;
    background-size: contain;
    width: 38px;
    height: 38px;
  } */


  .banner-wrapper .swiper-button-next:after {
        content: '';
        display: block;
        background-image: url(../image/slider-right.png), url(../image/slider-right-filled.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 38px;
        height: 38px;
        left: 0;
        top: 0;
        position: absolute;
        transition: all 0.3s;
    }

    .banner-wrapper .swiper-button-next:hover:after {
        background-size: 0 0, contain;
        width: 38px;
        height: 38px;
    }
  

  .floating-bookmark-parent-wrapper {
    position: relative;
    z-index: 2;
  }

  .floating-inner-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 12px;
    top: 80%;
    right: 44px;
  }

  .floating-alert-wrapper {
    display: none;
  }
  .floating-alert-wrapper,
  .floating-bookmark-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    background: #9CCCD0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
  }
  .floating-alert-wrapper:before {
    content: '';
    background: url('../image/alert-icon.png') no-repeat;
    position: absolute;
    display: block;
    top: calc(50% - 13px);
    right: calc(50% - 11px);
    background-size: contain;
    width: 24px;
    height: 24px;
  }
  .floating-bookmark-wrapper:before {
    content: '';
    background: url('../image/back-to-top.png') no-repeat;
    position: absolute;
    display: block;
    top: calc(50% - 12px);
    right: calc(50% - 9px);
    background-size: contain;
    width: 17px;
    height: 24px;
  }

  .floating-alert-wrapper:hover,
  .floating-bookmark-wrapper:hover {
    transform: translateY(-3px);
  }

.floating-bookmark-parent-wrapper .bookmark-wrapper {
    position: absolute;
    bottom: 70px;
    width: 300px;
    right: -10px;
    background: #9CCCD0;
    border-radius: 22px;
    box-sizing: border-box;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
}

  .floating-bookmark-parent-wrapper .bookmark-wrapper.active {
    visibility: visible;
    opacity: 1;
  }

  .floating-bookmark-parent-wrapper .bookmark-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #9CCCD0;
}

  .floating-bookmark-parent-wrapper .bookmark-wrapper .bookmark-heading {
    color: #813960;
    font-size: 20px;
    font-weight: 500;
  }

    .floating-bookmark-parent-wrapper .bookmark-wrapper ul {
        padding-left: 0;
        list-style: none;
        max-height: 120px;
        overflow-y: auto
    }


    .floating-bookmark-parent-wrapper .bookmark-wrapper ul::-webkit-scrollbar {
        width: 8px;
    }

    .floating-bookmark-parent-wrapper .bookmark-wrapper ul::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .floating-bookmark-parent-wrapper .bookmark-wrapper ul::-webkit-scrollbar-thumb {
        background: #c09caf;
        border-radius: 10px;
    }

    .floating-bookmark-parent-wrapper .bookmark-wrapper ul::-webkit-scrollbar-thumb:hover {
        background: #813960;
    }


  .floating-bookmark-parent-wrapper .bookmark-wrapper ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
  }
    .floating-bookmark-parent-wrapper .bookmark-wrapper ul li a {
        font-size: 16px;
        color: #813960;
        transition: all 0.3s;
        max-width: calc(100% - 30px);
        display: inline-block;
    }

    .floating-bookmark-parent-wrapper .bookmark-wrapper ul li .del-bookmark {
        background: #813960;
        color: #9CCCD0;
        box-sizing: border-box;
        padding: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: 8px;

    }

  .floating-bookmark-parent-wrapper .bookmark-wrapper ul li a:hover {
    text-decoration: underline;
  } 
  .floating-bookmark-parent-wrapper .bookmark-wrapper ul li:before {
    content: '';
    background: url('../image/bookmark-icon-2.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 17px;

  }

  .floating-bookmark-parent-wrapper .bookmark-wrapper .logo {
    position: relative;
    height: 50px;
  }

  
  .floating-bookmark-parent-wrapper .bookmark-wrapper .logo:after {
    content: '';
    background: url('../image/uas-bookmark-logo.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 50px;
  }


  /* Floating Notification */
  .floating-bookmark-parent-wrapper .alert-wrapper {
    position: absolute;
    top: -260px;
    width: 300px;
    right: -10px;
    background: #9CCCD0;
    border-radius: 22px;
    box-sizing: border-box;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
}
.floating-bookmark-parent-wrapper .alert-wrapper.floating-toast.active {
    visibility: visible;
    opacity: 1;
}

.floating-bookmark-parent-wrapper .alert-wrapper .alert-heading {
    color: #813960;
    font-size: 20px;
    font-weight: 500;
}

.floating-bookmark-parent-wrapper .alert-wrapper a {
    font-size: 16px;
    color: #000000;
    transition: all 0.3s;
}

    .floating-bookmark-parent-wrapper .alert-wrapper .alert-listing {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 100px;
        min-height: 100px;
        overflow-y: auto
    }


        .floating-bookmark-parent-wrapper .alert-wrapper .alert-listing::-webkit-scrollbar {
            width: 8px;
        }

        .floating-bookmark-parent-wrapper .alert-wrapper .alert-listing::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .floating-bookmark-parent-wrapper .alert-wrapper .alert-listing::-webkit-scrollbar-thumb {
            background: #c09caf;
            border-radius: 10px;
        }

            .floating-bookmark-parent-wrapper .alert-wrapper .alert-listing::-webkit-scrollbar-thumb:hover {
                background: #813960;
            }

.floating-bookmark-parent-wrapper .alert-wrapper .logo {
    position: relative;
    height: 50px;
}

.floating-bookmark-parent-wrapper .alert-wrapper .logo:after {
    content: '';
    background: url(../image/uas-bookmark-logo.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 50px;
}


.floating-bookmark-parent-wrapper .alert-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #9CCCD0;
}

.hidden-profile-wrapper {
    display: none;
}


/*Search*/
input[data-sf-role="search-box"] {
    font-family: "Matter", sans-serif;
    font-size: 54px;
    color: rgba(129, 57, 96, 0.5);
    font-weight: 500;
    background: unset;
    border: unset;
    outline: none;
}

button[data-sf-role="search-button"] {
    display: none;
}


.userSortDropdown {
    box-sizing: border-box;
    padding: 8px 10px;
}

#sf-search-result-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

#sf-search-result-container a img{
max-width: 130px;
}
    #sf-search-result-container > .d-flex.align-items-center.justify-content-between {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

#sf-search-result-pager {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.mb-3.d-flex {
    border-bottom: 1px solid #f1f1f1;
    box-sizing: border-box;
    padding-bottom: 30px;
    margin-bottom: 30px !important;
}

    .mb-3.d-flex > .flex-grow-1 > h3 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

        .mb-3.d-flex > .flex-grow-1 > h3 + p {
            margin-bottom: 5px;
            margin-top: 10px;
        }

h1 {
    font-family: "Matter", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #813960;
    opacity: 0.5;
    margin: 0;
}

a {
    color: #783D5F;
}

.page-item.active .page-link {
    color: #783D5F;
    border-color: #783D5F;
}

.page-link:hover {
    color: #783D5F;
}

#sf-search-result-pager ul.pagination {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

    #sf-search-result-pager ul.pagination li .page-link {
        color: #783D5F;
    }

    #sf-search-result-pager ul.pagination li.active .page-link {
        color: #783D5F;
        font-weight: bold;
    }

@media only screen and (max-width: 1415px) {
    .floating-inner-wrapper {
        top: 90%;
    }
}



    @media only screen and (max-width: 1415px) {
        .footer .flex-wrapper {
            padding: 14px 45px 14px 30px;
        }
    }

    @media only screen and (max-width: 1315px) {
        .header .logo-wrapper img {
            width: 350px;
        }

        .header .menu-wrapper ul li a {
            font-size: 14px;
        }

        .header .utilities-wrapper {
            margin-bottom: 3px;
        }

        .header .login-wrapper {
            margin-bottom: -5px;
        }
    }


    @media only screen and (max-width: 1281px) {
        .header .logo-wrapper img {
            width: 250px;
        }

        .header .menu-wrapper ul li a {
            font-size: 12px;
        }

        .utilities-wrapper .icon-wrapper img {
            width: 13px;
            height: 13px;
        }

        .header .utilities-wrapper {
            margin-bottom: 7px;
        }

        .header .login-wrapper .profile-image {
            max-width: 26px;
            max-height: 26px;
        }

        .header .login-wrapper .profile-name {
            font-size: 12px;
        }

        .header .login-wrapper .profile-arrow {
            width: 15px;
            height: 6px;
            top: 15px;
        }

        .sub-menu h1 {
            font-size: 38px;
            margin-top: 13px;
        }

        .sub-menu ul {
            padding: 0 0 6rem;
        }

        .marquee-wrapper h1 {
            font-size: 38px;
        }

        .sub-menu ul li {
            padding-bottom: 15px;
        }

            .sub-menu ul li a {
                font-size: 14px;
            }

        .sub-tab-list a {
            font-size: 12px;
        }

        .mega-menu .flex-wrapper {
            /*        height: 80%;*/
            overflow-y: scroll;
            box-sizing: border-box;
        }

        .header .utilities-wrapper .header-notification-icon-w {
            width: 16px;
            height: 14px;
        }

            .header .utilities-wrapper .header-notification-icon-w:before {
                width: 14px;
                height: 14px;
                background-size: 14px 14px!important;
            }

            .header .utilities-wrapper .header-notification-icon-w:hover:before {
                background-size: 14px 14px;
            }

        .header .utilities-wrapper .header-bookmark-icon-w {
            width: 13px;
            height: 13px;
        }

            .header .utilities-wrapper .header-bookmark-icon-w:before {
                width: 13px;
                height: 13px;
                background-size: 13px 13px;
            }

            .header .utilities-wrapper .header-bookmark-icon-w:hover:before {
                background-size: 13px 13px;
            }
        /* WebKit browsers (Chrome, Safari, Edge) */
        .mega-menu .flex-wrapper::-webkit-scrollbar {
            width: 8px; /* Adjust the width of the scrollbar */
            margin-right: 20px; /* Shift scrollbar to the left */
            border-radius: 5px;
        }

        .mega-menu .flex-wrapper::-webkit-scrollbar-track {
            background: transparent; /* Optional: customize scrollbar track color */
        }

        .mega-menu .flex-wrapper::-webkit-scrollbar-thumb {
            background-color: #813960; /* Set the color of the scrollbar */
            border-radius: 6px; /* Optional: rounded scrollbar corners */
            border: 3px solid transparent; /* Padding around the scrollbar thumb */
        }

        /* Firefox (using scrollbar-color and scrollbar-width properties) */
        .mega-menu .flex-wrapper {
            scrollbar-color: #813960 transparent; /* Thumb color | Track color */
            scrollbar-width: thin; /* Options: auto, thin, none */
        }

        .footer .flex-wrapper {
            padding: 14px 45px 14px 30px;
        }



            #sf-search-result-container > .d-flex.align-items-center.justify-content-between {
                display: flex;
                flex-direction: column;
                gap: 24px;

            }

        #sf-search-result-container > div {
            padding-inline: 16px;
        }


        #sf-search-result-container h1 {
            font-family: "Matter", sans-serif;
            font-size: 40px;
        }
    }

@media only screen and (max-width: 1023px) {
    .header .menu-wrapper, .header .login-wrapper {
        display: none;
    }
    .mid-icon, .right-icon {
        display: none;
    }
    .mid-icon, .right-icon {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }

    .utilities-wrapper .icon-wrapper img {
        width: 28px;
        height: 19px;
    }
}

    @media only screen and (max-width: 1023px) {
        #search .mega-menu-close {
            display: none;
        }

        .desktop {
            display: none !important;
        }

        h2 {
            font-size: 26px;
        }

        .floating-inner-wrapper {
            right: 16px;
        }

        .floating-alert-wrapper {
            display: block;
        }

        .header {
            padding: 60px 16px 20px 16px;
        }

            .header .logo-wrapper img {
                max-width: 270px;
            }

            .header .menu-wrapper,
            .header .login-wrapper {
                display: none;
            }

            .header .flex-wrapper {
                padding: 0;
            }

        .banner-wrapper {
            margin-block: 30px 54px;
            padding: 0 16px;
        }

            .banner-wrapper .flex-wrapper h1 {
                font-size: 26px;
            }

        .announcement-item-wrapper .announcement-left {
            width: 100%;
        }

        .announcement-item-wrapper .announcement-right .announcement-title {
            margin-block: 15px 8px;
        }


        .marquee-wrapper .flex-wrapper {
            padding: 24px 16px 48px 16px;
        }

        .marquee-wrapper h1 {
            font-size: 24px;
            margin: 0;
        }

        .marquee-swiper-container .swiper-slide {
            width: auto;
        }

            .marquee-swiper-container .swiper-slide img {
                width: 100%;
                max-width: 140px;
            }

        .footer .flex-wrapper {
            flex-direction: column-reverse;
            padding: 12px 16px;
        }

        ul.footer-menu {
            padding-inline-start: 0;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px 30px;
            margin: 0 0 24px 0;
        }

            ul.footer-menu li:first-child {
                width: 100%;
                text-align: center;
            }

            ul.footer-menu li:nth-child(2),
            ul.footer-menu li:nth-child(3),
            ul.footer-menu li:nth-child(4) {
                margin-bottom: 24px;
            }


        .header .utilities-wrapper {
            align-items: center;
        }

        .utilities-wrapper .icon-wrapper img {
            width: 30px;
            height: 20px;
        }

        .mobile-menu-icon {
            display: block;
        }

        .mobile-menu-icon-wrapper {
            display: flex;
            align-items: center;
            height: 0px;
            width: 30px;
            justify-content: center;
        }

            .mobile-menu-icon-wrapper.icon-wrapper img.active {
                width: 16px;
                height: 16px;
            }

        .search-icon-wrapper img.active {
            width: 16px;
            height: 16px;
        }

        .mid-icon, .right-icon {
            display: none;
        }

        .header .utilities-wrapper {
            margin-bottom: 0;
        }
        /* .left-icon{
        margin-top: 8px;
    } */

        .mobile-menu {
            width: 0;
            height: 100vh;
            max-height: calc(100% - 111px);
            visibility: hidden;
            width: 100vw;
            transform: translateX(100%);
            transition: transform .3s,visibility .5s;
            background-color: #DBD8CD;
            display: none;
            z-index: 2;
        }

        .mobile-menu-wrapper {
            height: 100%;
            position: relative;
        }

        .mobile-menu.active {
            position: fixed;
            display: block;
            transform: translate(0);
            visibility: visible;
            z-index: 10;
        }

        .mobile-menu .mobile-navbar > ul {
            margin-top: 30px;
            list-style-type: none;
            margin-bottom: 0;
            padding: 0 16px;
            height: 420px;
        }

            .mobile-menu .mobile-navbar > ul li a {
                text-decoration: unset;
                font-family: 'Matter', sans-serif;
                color: #000000;
                font-size: 18px;
                font-weight: 500;
            }

        .mobile-menu .mobile-navbar.active[data-mobile-link="main-menu"] {
            max-height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .mobile-menu .mobile-navbar.active[data-mobile-link="main-menu"] > ul > li {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                margin-bottom: 26px;
            }

        .btn-img-right-black span {
            content: "";
            width: 18px;
            height: 18px;
            background: url(../image/mega-menu-arrow.svg) no-repeat;
            background-size: contain;
            display: inline-block;
        }

        .mobile-menu .mobile-navbar[data-level="0"] {
            position: absolute;
            left: 0;
            transform: translateX(-100%);
            width: 100%;
            visibility: hidden;
            transition: transform .5s, opacity 1s;
            box-sizing: border-box;
        }

        .mobile-menu .mobile-navbar {
            position: absolute;
            left: 0;
            transform: translateX(100%);
            width: 100%;
            visibility: hidden;
            transition: transform .5s, opacity 1s;
            box-sizing: border-box;
        }

            .mobile-menu .mobile-navbar.active {
                transform: translateX(0);
                visibility: visible;
                opacity: 1;
                overflow-y: auto;
                max-height: 100%;
                position: initial;
            }

                .mobile-menu .mobile-navbar.active[data-mobile-link="departments"] {
                    /* padding-bottom: 220px; */
                }

        .mobile-navbar.sub {
            padding: 24px;
        }

        .mobile-menu .mobile-navbar.sub > ul {
            list-style-type: none;
            margin-bottom: 0;
            padding: 0 0;
        }

        .back-button-tab {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .sub-sub-back-button {
            content: "";
            width: 42px;
            height: 42px;
            background: url(../image/sub-sub-back-btn.svg) no-repeat;
            background-size: contain;
            display: inline-block;
            background-size: 38px 38px;
        }

        .sub-sub-menu-header {
            color: rgba(129, 57, 96, 0.5);
            font-family: 'Matter', sans-serif;
            font-weight: 500;
            font-size: 42px;
            line-height: 100%;
            text-align: end;
        }

        ul li.sub-sub-menu {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-bottom: 20px;
            align-items: center;
        }

        .sub-sub-menu.accordion > span {
            content: "";
            width: 16px;
            height: 16px;
            background: url(../image/sub-sub-accordion-plus.svg) no-repeat;
            background-size: contain;
            display: inline-block;
        }

            .sub-sub-menu.accordion > span.active {
                content: "";
                width: 16px;
                height: 16px;
                background: url(../image/sub-sub-accordion-minus.svg) no-repeat;
                background-size: 16px 16px;
                display: inline-block;
            }

        .sub-sub-menu-accordion {
            display: none;
        }

            .sub-sub-menu-accordion ul {
                list-style-type: none;
                margin-bottom: 0;
                padding: 0 0;
            }



        .mobile-menu .mobile-navbar > ul li.sub-sub-inner-menu a {
            text-decoration: unset;
            font-family: 'Matter', sans-serif;
            color: #000000;
            font-size: 18px;
            font-weight: 400;
        }

        .mobile-menu .mobile-navbar > ul li.sub-sub-inner-menu {
            margin-bottom: 20px;
        }

        .announcement-item-wrapper .announcement-left .title-wrapper a {
            font-size: 20px;
        }


        /* Mobile menu profile */
        .mobile-menu-footer {
            position: absolute;
            bottom: 0;
            background: #DBD8CD;
            width: 100%;
            padding: 20px 0px;
        }

            .mobile-menu-footer .mobile-profile {
                display: flex;
                flex-direction: row;
                position: relative;
                padding: 0 16px;
                gap: 14px;
            }


            .mobile-menu-footer .profile-image {
                position: relative;
                width: 50px;
                height: 50px;
                border-radius: 50%;
            }

        .mob-profile-wrapper {
            display: flex;
            position: relative;
            flex-direction: column;
        }

            .mob-profile-wrapper .first-row,
            .mob-profile-wrapper .second-row {
                position: relative;
                display: flex;
            }


                .mob-profile-wrapper .first-row .mob-name {
                    text-decoration: unset;
                    font-family: 'Matter', sans-serif;
                    color: #813960;
                    font-size: 16px;
                    font-weight: 300;
                    margin-right: 8px;
                }

                .mob-profile-wrapper .first-row .mob-email {
                    text-decoration: unset;
                    font-family: 'Matter', sans-serif;
                    color: #813960;
                    font-size: 16px;
                    font-weight: 300;
                    opacity: 0.5;
                }

                .mob-profile-wrapper .second-row .mob-edit-profile,
                .mob-profile-wrapper .second-row .mob-sign-out {
                    text-decoration: underline;
                    font-family: 'Matter', sans-serif;
                    color: #813960;
                    font-size: 16px;
                    font-weight: 300;
                }

        .mob-column-separator {
            height: 70%;
            width: 1px;
            position: relative;
            margin-inline: 8px;
            background-color: #813960;
            margin-top: 4px;
        }

        .floating-bookmark-parent-wrapper .bookmark-wrapper {
            top: -322px;
        }
        /* Search */
        .mega-menu.search-wrapper .flex-wrapper {
            justify-content: flex-start;
            margin-top: 12px;
            gap: 22px;
        }

        #searchField {
            font-size: 24px;
        }

            #searchField::placeholder {
                font-size: 24px;
            }

        .header .utilities-wrapper .search-icon-wrapper img:hover {
            transform: translateY(0px);
        }


        .floating-bookmark-parent-wrapper .bookmark-wrapper {
            top: -328px;
        }


        .floating-inner-wrapper {
            top: 80%;
        }


        input[data-sf-role="search-box"] {
            font-size: 20px;
            box-sizing: border-box;
            padding: 20px 15px;
            border-bottom: 1px solid #C4C0AE;
            width: 100%;
            padding-right: 80px;
        }
    }


@media only screen and (max-width: 768px) {
    .utilities-wrapper, .right-icon {
        display: block;
    }

    .utilities-wrapper .left-icon {
        display: none;
    }
    .header .utilities-wrapper .header-bookmark-icon-w {
        width: 14px;
        height: 20px;
    }

    .header .utilities-wrapper .header-bookmark-icon-w:before {
        width: 14px;
        height: 20px;
        background-size: 14px 20px;
    }


        .header .utilities-wrapper .header-bookmark-icon-w:hover:before {
            background: url(../image/bookmark-ic-hover.svg) no-repeat;
            width: 14px;
            height: 20px;
        }

    #sf-search-result-container .mb-3.d-flex > .flex-grow-1 > h3 {
        font-size: 1.3rem;
    }

        #sf-search-result-container .mb-3.d-flex > .flex-grow-1 > h3 + p {
            font-size: 1rem;
        }


        #sf-search-result-container .mb-3.d-flex > .flex-grow-1 > h3 + p + a {
            font-size: 1rem;
        }

    input[data-sf-role="search-box"] {
        font-size: 20px;
        box-sizing: border-box;
        padding: 20px 15px;
        border-bottom: 1px solid #C4C0AE;
        width: 100%;
        padding-right: 80px;
    }
}



@media only screen and (max-width: 431px) {
    .floating-inner-wrapper {
        top: 80%;
    }
}

@media only screen and (max-width: 391px) {
    .floating-inner-wrapper {
        top: 84%;
    }

    .mob-profile-wrapper .first-row {
        flex-direction: column;
    }
}

@media only screen and (max-width: 365px) {
    .floating-inner-wrapper {
        top: 70%;
    }
}





    /* */