/* Common Css Start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body, html {
    overflow-x: hidden;
}
/* ScrollBar CSS Start */
::-webkit-scrollbar-track {
    background-color: #231F2066;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #00234B !important;
    border-radius: 10px;
}
/* ScrollBar CSS End */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    outline: none;
    font-family: "Reddit Sans", sans-serif;
    background-color: #FFFFFF;
    width: 100%;
    overflow: hidden;
    position: relative;
}
html.remove-overflow,
body.remove-overflow {
    overflow: hidden;
}
a, a:not([href]):not([class]) {
    text-decoration: none;
    cursor: pointer;
}
.cursor-pointer {
    cursor: pointer;
}
.cursor-none {
    cursor: auto;
}
.spacer {
    flex: 1 1 auto;
}
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.mobile-view {
    display: none;
}
/* Common Button Css Start */
.white-txt-btn {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    outline: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
    width: fit-content;
    transition: all 0.3s;
}
.white-txt-btn:hover {
    color: #B19672;
}
.white-txt-btn::after {
    display: none;
}
.white-txt-btn::before,
.white-txt-btn:hover::after {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: all 1s;
}
.white-txt-btn:hover::before {
    display: none;
}
.white-txt-btn::before {
    background: #FFFFFF;
    margin-right: 10px;
}
.white-txt-btn::after {
    background: #B19672;
    margin-left: 10px;
}
.red-txt-btn {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    outline: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
    width: fit-content;
    transition: all 0.3s;
}
.red-txt-btn:hover {
    color: #B19672;
}
.red-txt-btn::after {
    display: none;
}
.red-txt-btn::before,
.red-txt-btn:hover::after {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: all 1s;
}
.red-txt-btn:hover::before {
    display: none;
}
.red-txt-btn::before {
    background: #A90533;
    margin-right: 10px;
}
.red-txt-btn::after {
    background: #B19672;
    margin-left: 10px;
}
/* Common Button Css End */
/* Notification Message Css Start */
.notification-message-section {
    background: #FFFFFFA6;
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    width: 100%;
}
.notification-message-section .notification-message-box {
    display: flex;
    align-items: center;
    width: 100%;
}
.notification-message-section .notification-message-box .notification-message-detail-box {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.notification-message-section .notification-message-box .notification-message-detail-box .notification-message-detail-txt p {
    font-size: 14px;
    line-height: 20px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
.notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt {
    margin-left: 10px;
}
.notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt ul {
    margin: 0;
}
.notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt ul li::marker {
    color: #A90533;
    font-size: 20px;
    line-height: 20px;
}
.notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt ul li a {
    font-size: 14px;
    line-height: 21px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
}
.notification-message-section .notification-message-box .notification-message-close-btn-box {
    width: 20px;
}
.notification-message-section .notification-message-box .notification-message-close-btn-box .notification-message-close-btn {
    display: block;
    width: 20px;
}
.notification-message-section .notification-message-box .notification-message-close-btn-box .notification-message-close-btn img {
    width: 20px;
}
/* Notification Message Css End */
/* Header Css Start */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
    padding: 5px 20px;
    width: 100%;
    transition: all 0.5s;
    transform: translateY(-100%);
    opacity: 0;
}
.header-section.header-visible {
    transform: translateY(0);
    opacity: 1;
}
.header-section .header-btn-logo-search-menu-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.header-section .header-btn-logo-search-menu-box .header-search-seqta-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 285px;
    margin-top: 15px;
}
.header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box {
    display: inline-block;
    margin-right: 40px;
}
.header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box .search-icon-img {
    width: 22px;
}
.header-section .header-btn-logo-search-menu-box .header-search-seqta-box .seqta-btn-box {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}
.header-section .header-btn-logo-search-menu-box .header-search-seqta-box .seqta-btn-box:hover {
    color: #B19672;
}
.header-section .header-btn-logo-search-menu-box .header-logo-box {
    width: 80px;
}
.header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img {
    display: inline-block;
    width: 80px;
}
.header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img .header-logo {
    width: 80px;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 285px;
    margin-top: 15px;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con > :not(:last-child) {
    margin-right: 30px;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box .translate-icon {
    width: 24px;
    margin-right: 10px;
    transition: all 1s;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box .menu-icon {
    width: 30px;
    margin-right: 10px;
    transition: all 1s;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box:hover .translate-icon.white-icon,
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box .translate-icon.gold-icon,
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box:hover .menu-icon.blue-icon,
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box .menu-icon.red-icon {
    display: none;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box:hover .translate-icon.gold-icon,
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box:hover .menu-icon.red-icon {
    display: inline-block;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box p {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-bottom: 0;
}
.header-section .header-btn-logo-search-menu-box .header-translate-menu-con .header-translate-menu-box:hover p {
    color: #B19672;
}
/* Header Css End */
/* Banner Css Start */
.banner-section {
    padding: 0;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.home-page-banner-section.banner-section::before,
.home-page-banner-section.banner-section::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background-color: #fff;
    z-index: 2;
    transition: transform 1.5s ease-in-out;
}
.home-page-banner-section.banner-section::before {
    left: 0;
    transform: translateX(0);
}
.home-page-banner-section.banner-section::after {
    right: 0;
    transform: translateX(0);
}
.banner-section .banner-bg-img-one {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 170px;
    z-index: 1;
}
.banner-section .banner-con {
    margin: 0;
}
.banner-section .banner-con .banner-box {
    position: relative;
    padding: 0;
}
.banner-section .banner-con .banner-box .carousel,
.banner-section .banner-con .banner-box .carousel-inner,
.banner-section .banner-con .banner-box .carousel-item {
    position: initial;
}
.banner-section .banner-con .banner-box .carousel-item {
    display: flex;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
}
.banner-section .banner-con .banner-box video,
.banner-section .banner-con .banner-box .banner-img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    object-position: top;
}
.banner-section .banner-con .banner-box .carousel-caption {
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}
.banner-section .banner-con .banner-box .carousel-caption .banner-title-box {
    width: 100%;
    padding: 10px 80px 60px;
}
.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title {
    font-size: 82px;
    line-height: 96px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title span {
    font-size: 82px;
    line-height: 96px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
}
.event-calendar-banner-section.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-sub-title {
    font-size: 16px;
    line-height: 26px;
    color: #B19672;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.event-calendar-banner-section.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title {
    font-size: 62px;
    line-height: 76px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-description-txt {
    font-size: 42px;
    line-height: 50px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    margin: 20px 0 0;
}
.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .white-txt-btn {
    margin-top: 40px;
}
.banner-section .banner-con .banner-box .banner-caption {
    background: #00000033;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    z-index: 1;
}
.event-calendar-banner-section.banner-section .banner-con .banner-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 22.16%, rgba(0, 0, 0, 0) 68.4%, rgba(0, 0, 0, 0.4) 75%);
}
.event-calendar-banner-section.banner-section .banner-con .banner-box .banner-caption {
    background: transparent;
    height: auto;
    z-index: 10;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
    width: 100%;
    padding: 10px 20px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 285px;
    margin-top: 15px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box {
    display: inline-block;
    margin-right: 40px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box .search-icon-img {
    width: 22px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .seqta-btn-box {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    transition: all 0.3s;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .seqta-btn-box:hover {
    color: #B19672;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box {
    width: 190px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img {
    display: inline-block;
    width: 190px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
    width: 190px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 285px;
    margin-top: 15px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con > :not(:last-child) {
    margin-right: 30px;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box .translate-icon {
    width: 24px;
    margin-right: 10px;
    transition: all 1s;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box .menu-icon {
    width: 30px;
    margin-right: 10px;
    transition: all 1s;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box:hover .translate-icon.white-icon,
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box .translate-icon.gold-icon,
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box:hover .menu-icon.blue-icon,
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box .menu-icon.red-icon {
    display: none;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box:hover .translate-icon.gold-icon,
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box:hover .menu-icon.red-icon {
    display: inline-block;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box p {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-bottom: 0;
}
.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con .banner-translate-menu-box:hover p {
    color: #B19672;
}
.banner-iframe-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.banner-iframe-box iframe {
    top: -52%;
    width: 130%;
    height: 200%;
    border: 0;
    left: -15%;
    position: absolute;
    transform: unset;
}
/* General Page Banner Css Start */
.general-page-banner-section.banner-section {
    padding: 20px;
    background: linear-gradient(90.95deg, #A90533 1.63%, #860026 77.41%);
    overflow: initial;
}
.general-page-banner-section.banner-section .banner-bg-img-one {
    bottom: -68px;
    right: auto;
    left: 0;
    width: 170px;
    z-index: 1;
}
.general-page-banner-section.banner-section .banner-bg-img-two {
    position: absolute;
    bottom: -35px;
    right: 120px;
    width: 140px;
    z-index: 1;
}
.general-page-banner-section.banner-section .banner-con {
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
}
.general-page-banner-section.banner-section .banner-con .banner-box,
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box,
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box,
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-img-box {
    height: 100%;
}
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box,
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-img-box {
    position: relative;
    padding: 0;
}
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px 60px 60px 80px;
}
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box .general-page-banner-sub-title {
    font-size: 16px;
    line-height: 24px;
    color: #B19672;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box .general-page-banner-title {
    font-size: 62px;
    line-height: 72px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
.general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 22.16%);
}
.general-page-banner-section.banner-section .banner-con .banner-box .carousel,
.general-page-banner-section.banner-section .banner-con .banner-box .carousel-inner,
.general-page-banner-section.banner-section .banner-con .banner-box .carousel-item {
    height: 100%;
}
.general-page-banner-section.banner-section .banner-con .banner-box .carousel-item,
.general-page-banner-section.banner-section .banner-con .banner-box video,
.general-page-banner-section.banner-section .banner-con .banner-box .banner-img {
    width: 100%;
    height: 100%;
}
.general-page-banner-section.banner-section .banner-con .banner-box .banner-caption {
    background: transparent;
    height: auto;
    width: 100%;
}
.general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
    padding: 10px 80px;
}
.general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
.general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
.general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
    width: 160px;
}
/* General Page Banner Css End */
/* Banner Css End */
/* Menu Css Start */
.menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    transform: translateX(100%);
    transition: all 1s;
    z-index: 109;
    padding: 0;
}
.menu-nav.active {
    transform: translateX(0);
}
.menu-nav .menu-box {
    width: 100vw;
    height: 100vh;
    display: inline-flex;
    align-items: flex-start;
}
.menu-nav .menu-box .menu-left-box {
    padding: 50px 100px;
    height: 100vh;
    width: calc(100vw - 600px);
    background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
    position: relative;
}
.menu-nav .menu-box .menu-left-box .menu-square-bg-img {
    position: absolute;
    right: -1px;
    top: 0;
    width: auto;
    height: 100%;
}
.menu-nav .menu-box .menu-left-box .menu-search-con {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 50px;
}
.menu-nav .menu-box .menu-left-box .menu-search-con .search-icon-box {
    display: inline-block;
}
.menu-nav .menu-box .menu-left-box .menu-search-con .search-icon-box .search-icon-img {
    width: 20px;
}
.menu-nav .menu-box .menu-left-box .menu-search-con .seqta-btn-box {
    display: inline-block;
    margin-left: 40px;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
}
.menu-nav .menu-box .menu-left-box .menu-search-con .seqta-btn-box:hover {
    color: #B19672;
}
.menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box {
    display: none;
}
.menu-nav .menu-box .menu-left-box .menu-logo-box {
    padding-top: 30px;
}
.menu-nav .menu-box .menu-left-box .menu-logo-box .menu-logo {
    width: 110px;
}
.other-links-box {
    height: calc(100vh - 313px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    position: relative;
}
.other-links-box ul {
    padding-left: 0;
    margin-bottom: 0;
}
.other-links-box ul li {
    list-style: none;
}
.other-links-box .other-link-menu-box {
    position: relative;
}
.other-links-box .other-link-menu {
    padding-bottom: 20px;
    width: 60%;
    padding-right: 20px;
}
.other-links-box .parent-menu-text {
    position: relative;
    width: 100%;
    display: inline-block;
}
.other-links-box .parent-menu-text span {
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    background: #a90533;
    padding-right: 10px;
    z-index: 1;
    position: relative;
}
.other-links-box .other-link-menu .parent-menu-text:hover span,
.other-links-box .other-link-menu .parent-menu-text.active-menu span {
    color: #B19672;
}
.other-links-box .other-link-menu .parent-menu-text:hover::after,
.other-links-box .other-link-menu .parent-menu-text.active-menu::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: #B19672;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.other-links-box .child-menu {
    display: none;
}
.other-links-box .child-menu.active-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    transition: all 5s ease-in-out;
}
.other-links-box .child-menu.active-menu li {
    padding-bottom: 15px;
}
.other-links-box .child-menu.active-menu a {
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.035rem;
}
.other-links-box .child-menu.active-menu a:hover {
    color: #B19672;
}
.menu-nav .menu-box .menu-right-box {
    width: 600px;
    height: 100vh;
    background: #3397B9;
}
.menu-nav .menu-box .menu-right-box .menu-img-box {
    width: 100%;
    height: calc(100vh - 260px);
    position: relative;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    background: #00000033;
    padding: 40px 60px;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .menu-close-translate-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .translate-icon {
    display: inline-block;
    margin-right: 20px;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .translate-icon img {
    width: 24px;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .close-icon {
    display: inline-flex;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .close-icon img {
    width: 56px;
    transition: all 0.5s;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .close-icon:hover img.close-white-bg,
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .close-icon img.close-red-bg {
    display: none;
}
.menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .close-icon:hover img.close-red-bg {
    display: block;
}
.menu-nav .menu-box .menu-right-box .quick-links-box {
    width: 100%;
    height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 50px 20px 30px;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-title {
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con {
    margin: 30px 0 0;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 75px;
    gap: 5px;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item {
    display: inline-block;
    text-align: center;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item .quick-links-item-icon {
    width: 20px;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item p {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.035rem;
    margin: 10px 0 0;
}
.menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item:hover p {
    color: #A81E37;
}
/* Menu Css End */
/* Floating Button Css Start */
.floating-button-section {
    height: auto;
    width: 0;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
    rotate: 270deg;
}
.floating-button-section .floating-button-box {
    padding: 5px;
    display: flex;
    justify-content: center;
}
.floating-button-section .floating-button-box .floating-apply-book-btn {
    background: #A90533;
    border: 0;
    outline: 0;
    width: 170px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all 0.5s;
}
.floating-button-section .floating-button-box .floating-apply-book-btn:first-child {
    margin-right: 10px;
}
.floating-button-section .floating-button-box .floating-apply-book-btn:hover {
    background-color: #B19672;
}
/* Floating Button Css End */
/* Footer Css Start */
.footer-section {
    padding: 40px 20px 10px;
    background: linear-gradient(81.26deg, #860026 30.92%, #A90533 50.67%);
    position: relative;
}
.footer-section .footer-square-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 545px;
}
.footer-section .container {
    position: relative;
}
.footer-section .top-to-scroll-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: solid 1px #FFFFFF;
    background: transparent;
    box-shadow: none;
    outline: 0;
}
.footer-section .top-to-scroll-btn i {
    font-size: 20px;
    color: #FFFFFF;
}
.footer-section .footer-con .footer-logo-con .footer-logo-box {
    display: block;
}
.footer-section .footer-con .footer-logo-con .footer-logo-box .footer-logo {
    width: 350px;
}
.footer-section .footer-con .footer-detail-con .footer-detail-box {
    width: 100%;
    padding: 0 60px;
}
.footer-section .footer-con .footer-detail-con .footer-detail-box .footer-detail-txt,
.footer-section .footer-con .footer-detail-con .footer-detail-box .footer-detail-txt a {
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 20px;
}
.footer-section .footer-con .footer-detail-con .footer-social-icon-con {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 60px;
}
.footer-section .footer-con .footer-detail-con .footer-social-icon-con .footer-social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
}
.footer-section .footer-con .footer-detail-con .footer-social-icon-con .footer-social-icon-box:not(:last-child) {
    margin-right: 10px;
}
.footer-section .footer-con .footer-detail-con .footer-social-icon-con .footer-social-icon-box i {
    font-size: 24px;
    color: #FFFFFF;
}
.footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt {
    font-size: 32px;
    line-height: 36px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 10px 0 30px;
}
.footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt span {
    font-size: 32px;
    line-height: 36px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
}
.footer-section .footer-con .footer-copyright-con .footer-copyright-box {
    padding: 0 60px;
}
.footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
.footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt span {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}
.footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt .jwam-logo {
    margin-left: 5px;
    width: 50px;
}
/* Footer Css End */
/* Also In This Section Css Start */
.also-in-this-edition-section {
    background: #EAEAEA;
    padding: 60px 0;
}
.also-in-this-edition-section .also-in-this-edition-con {
    justify-content: center;
}
.also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-title {
    font-size: 24px;
    line-height: 28px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: solid 1px #B19672;
}
.also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-list-con .also-in-this-edition-list-box {
    margin-top: 20px;
}
.also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-list-con .also-in-this-edition-list-box .also-in-this-edition-list-txt {
    display: block;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    transition: all 0.5s;
}
.also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-list-con .also-in-this-edition-list-box .also-in-this-edition-list-txt:hover,
.also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-list-con .also-in-this-edition-list-box .also-in-this-edition-list-txt.active {
    color: #B19672;
}
/* Also In This Section Css End */
/* Page Header Section Css Start */
.page-header-section {
    background: #EAEAEA;
}
.page-header-section .page-header-con {
    position: relative;
}
.page-header-section .page-header-con .page-header-bg-img {
    position: absolute;
    right: 0;
    bottom: -35px;
    width: 140px;
    padding: 0;
}
.page-header-section .page-header-con .page-header-box {
    padding: 50px 0;
    text-align: center;
}
.page-header-section .page-header-con .page-header-box .page-header-txt {
    font-size: 22px;
    line-height: 34px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 0;
}
/* Page Header Section Css End */
/* Back to Button Css Start */
.back-to-btn-section {
    background: #EAEAEA;
    padding: 60px 0;
    text-align: center;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box {
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box i {
    font-size: 20px;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box i.red-icon {
    color: #A90533;
    margin-right: 20px;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box:hover i.red-icon {
    display: none;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box i.yellow-icon {
    display: none;
    color: #B19672;
    margin-left: 20px;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box:hover i.yellow-icon {
    display: inline-block;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box p {
    font-size: 14px;
    line-height: 14px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin: 0;
}
.back-to-btn-section .back-to-btn-con .back-to-btn-box:hover p {
    color: #B19672;
}
/* Back to Button Css End */
/* Common Css End */
/* Home Page Css Start */
/* Illuminating Css Start */
.illumination-section {
    background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
    padding: 60px 20px;
    position: relative;
}
.illumination-section .illuminating-bg-img-one {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translate(0, -50%);
    width: 135px;
}
.illumination-section .illumination-box {
    z-index: 1;
    position: relative;
}
.illumination-section .illumination-box .illumination-title-box .illumination-title {
    font-size: 62px;
    line-height: 70px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    max-width: 720px;
}
.illumination-section .illumination-box .illumination-detail-box .illumination-txt {
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
    max-width: 650px;
}
.illumination-section .illumination-four-con {
    margin-top: 50px;
    z-index: 1;
    position: relative;
}
.illumination-section .illumination-four-con .illumination-four-box {
    margin-top: 20px;
}
.illumination-section .illumination-four-con .illumination-four-box .illumination-four-card {
    border: 1px solid #B19672;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    transition: all 1s;
}
.illumination-section .illumination-four-con .illumination-four-box .illumination-four-card:hover {
    background-image: url(../images/gold-bg-gold-border.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}
.illumination-section .illumination-four-con .illumination-four-box .illumination-four-card .illumination-four-title {
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
/* Illuminating Css End */
/* Welcome Message Css Start */
.welcome-message-section {
    padding: 80px 0 120px;
}
.welcome-message-section .welcome-message-box .welcome-message-img-box {
    padding: 0;
    position: relative;
}
.welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-bg-img-one {
    position: absolute;
    left: 0;
    bottom: -67px;
    width: 135px;
}
.welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-img {
    width: 100%;
    height: 100%;
    max-height: 665px;
    object-fit: cover;
    object-position: top;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box {
    padding: 40px 60px;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail {
    max-width: 580px;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-sub-title {
    font-size: 16px;
    line-height: 24px;
    color: #B19672;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-title {
    font-size: 48px;
    line-height: 54px;
    color: #3397B9;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt {
    font-size: 22px;
    line-height: 35px;
    color: #000000;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 20px;
}
.welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt.light-txt {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.03rem;
}
/* Welcome Message Css End */
/* Image Divider Slider Css Start */
.img-divider-slider-section {
    padding: 0;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .img-divider-slider-title-txt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    padding: 25px 20px 0;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.68%, rgba(0, 0, 0, 0.6) 67.53%, rgba(0, 0, 0, 0.8) 89.17%);
    padding: 150px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-title {
    font-size: 62px;
    line-height: 70px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    max-width: 860px;
    margin-bottom: 40px;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-txt {
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    max-width: 540px;
    margin-bottom: 40px;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators {
    margin: 0 auto 30px;
    gap: 15px;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators [data-bs-target] {
    flex: min-content;
    text-indent: 0;
    height: auto;
    width: auto;
    background: transparent;
    border: 0;
    border-top: solid 1px #FFFFFFCC;
    padding: 15px 10px;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFFCC;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators .active {
    border-top: solid 1px #FFFFFF;
    color: #FFFFFF;
}
/* Image Divider Slider Css End */
/* Latest News Slider Css Start */
.latest-news-slider-section {
    padding: 60px 0 20px;
}
.latest-news-slider-section.latest-news-page-slider-section {
    padding: 60px 0;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box {
    align-items: flex-end;
    margin-bottom: 20px !important;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-heading-box .latest-news-slider-heading {
    font-size: 62px;
    line-height: 70px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(102.2deg, #6EA9C7 10.19%, #0D5167 67.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn,
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn {
    display: inline-flex;
    align-items: center;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn .red-txt-btn:not(:last-child) {
    margin-right: 50px;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn {
    margin-left: 70px;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn:not(:last-child) {
    margin-right: 10px;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #A90533;
    transition: all 0.5s;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn:hover {
    background: #B19672;
}
.latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn i {
    font-size: 24px;
    color: #FFFFFF;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider {
    margin: 0 -10px;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .slick-list {
    padding: 0 0 44px !important;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .slick-track {
    display: flex !important;
    align-items: center;
    transition: all 0.5s;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider {
    margin: 30px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    padding: 0;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box {
    display: inline-block;
    position: relative;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .latest-news-slider-img {
    height: 440px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
    left: 0;
    bottom: 0;
    padding: 15px 20px 30px;
    width: 100%;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box.only-icon-box {
    background: none;
    align-items: center;
    justify-content: flex-end;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box.only-icon-box.icon-from-center {
    justify-content: center;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box.only-txt-box {
    justify-content: flex-end;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box .img-caption-title {
    font-size: 26px;
    line-height: 30px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box .img-caption-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #A81E37;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box .img-caption-icon-box .pin-icon {
    width: 20px;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .img-caption-box .img-caption-icon-box i {
    font-size: 20px;
    color: #FFFFFF;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .slider-progress-bar {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: block;
    width: calc(100% - 120px);
    height: 3px;
    border-radius: 10px;
    overflow: hidden;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .slider-progress-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #D7EBF2;
}
.latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .slider-progress-bar .slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #A90533;
    z-index: 1;
}
/* Latest News Slider Css End */
/* Event Calendar Slider Css Start */
.event-calendar-slider-section {
    padding: 20px 0 60px;
}
.event-calendar-slider-section .event-calendar-slider-heading-btn-box {
    align-items: flex-end;
    margin-bottom: 20px !important;
}
.event-calendar-slider-section .event-calendar-slider-heading-btn-box .event-calendar-slider-heading-box .event-calendar-slider-heading {
    font-size: 62px;
    line-height: 70px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(102.2deg, #6EA9C7 10.19%, #0D5167 67.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}
.event-calendar-slider-section .event-calendar-slider-heading-btn-box .event-calendar-slider-btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.event-calendar-slider-section .event-calendar-slider-heading-btn-box .event-calendar-slider-btn-box .event-calendar-two-btn {
    display: inline-flex;
    align-items: center;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider {
    margin: 0 -10px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .slick-list {
    padding: 0 0 44px !important;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .slick-track {
    display: flex !important;
    align-items: center;
    transition: all 0.5s;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider {
    margin: 30px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    padding: 0;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box {
    display: inline-block;
    position: relative;
    height: 400px;
    background: #EAEAEA;
    padding: 20px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #B19672;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box .event-calendar-date-txt {
    width: 60px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box .event-calendar-date-txt .event-calendar-date {
    font-size: 48px;
    line-height: 54px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box .event-calendar-day-month-txt {
    width: calc(100% - 60px);
    padding-left: 10px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box .event-calendar-day-month-txt .event-calendar-day-txt {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-date-box .event-calendar-day-month-txt .event-calendar-month-txt {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-list-box .event-calendar-list-txt {
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    border-left: solid 3px #3196B9;
    padding-left: 15px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-list-box .event-calendar-list-txt:not(:last-child) {
    margin-bottom: 20px;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .slider-progress-bar {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: block;
    width: calc(100% - 120px);
    height: 3px;
    border-radius: 10px;
    overflow: hidden;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .slider-progress-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #D7EBF2;
}
.event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .slider-progress-bar .slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #A90533;
    z-index: 1;
}
/* Event Calendar Slider Css End */
/* Quote Section Css Start */
.quote-section {
    padding: 80px 20px;
    background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
    position: relative;
}
.quote-section .quote-bg-img-one {
    position: absolute;
    top: 0;
    right: 35px;
    width: 135px;
}
.quote-section .quote-con {
    position: relative;
    z-index: 1;
}
.quote-section .quote-con .quote-icon-box .quote-icon {
    width: 125px;
}
.quote-section .quote-con .quote-detail-box .quote-detail-txt {
    margin: 0 auto;
    max-width: 945px;
    text-align: center;
}
.quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-txt {
    font-size: 24px;
    line-height: 40px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 30px;
}
.quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-by-txt {
    font-size: 24px;
    line-height: 40px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
}
/* Quote Section Css End */
/* Build Brighter Future Css Start */
.build-brighter-future-section {
    padding: 80px 0 120px;
}
.build-brighter-future-section .build-brighter-future-box {
    align-items: center;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box {
    padding: 0;
    position: relative;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-bg-img-one {
    position: absolute;
    left: -35px;
    bottom: -34px;
    width: 70px;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-img {
    width: 100%;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    object-position: top;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
    padding: 40px 60px;
    position: relative;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-bg-img-two {
    position: absolute;
    right: 0;
    bottom: -66px;
    width: 140px;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail {
    max-width: 650px;
    position: relative;
    z-index: 1;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-title {
    font-size: 62px;
    line-height: 70px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(102.2deg, #6EA9C7 10.19%, #0D5167 67.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}
.build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-txt {
    font-size: 22px;
    line-height: 35px;
    color: #000000;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 30px;
}
/* Build Brighter Future Css End */
/* Acknowledge Section Css Start */
.acknowledge-section {
    padding: 80px 20px;
    background: #EAEAEA;
    position: relative;
}
.acknowledge-section::before {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/acknowledge-bg-img-one.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.acknowledge-section::after {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/acknowledge-bg-img-two.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.acknowledge-section .acknowledge-con .acknowledge-detail-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.acknowledge-section .acknowledge-con .acknowledge-detail-box .acknowledge-txt {
    font-size: 22px;
    line-height: 38px;
    color: #A90533;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
}
/* Acknowledge Section Css End */
/* Home Page Css End */
/* General Page Css Start */
/* Full Text Editor Css Start */
.full-text-editor-section {
    padding: 40px 0px;
}
.full-text-editor-section p,
.full-text-editor-section a,
.full-text-editor-section ul li,
.full-text-editor-section ol li {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin-bottom: 30px;
}
.full-text-editor-section a {
    transition: all 1s;
    color: #B19672;
}
.full-text-editor-section a:hover {
    color: #A81E37;
}
.full-text-editor-section ul,
.full-text-editor-section ol {
    padding-left: 14px;
    margin-bottom: 30px;
    margin-top: -10px;
}
.full-text-editor-section ul li,
.full-text-editor-section ol li {
    margin-bottom: 0;
}
.full-text-editor-section blockquote p {
    font-size: 24px;
    line-height: 38px;
    color: #3397B9;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 30px;
}
.full-text-editor-section h1 {
    font-size: 62px;
    line-height: 72px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(115.44deg, #6EA9C7 -0.02%, #0D5167 99.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.full-text-editor-section h2,
.full-text-editor-section h3,
.full-text-editor-section h5 {
    color: #A90533;
    margin-bottom: 30px;
}
.full-text-editor-section h2 {
    font-size: 48px;
    line-height: 48px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-top: 40px;
}
.full-text-editor-section h3 {
    font-size: 36px;
    line-height: 36px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
}
.full-text-editor-section h4 {
    font-size: 24px;
    line-height: 24px;
    color: #3397B9;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}
.full-text-editor-section h5 {
    font-size: 20px;
    line-height: 20px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 500;
}
.full-text-editor-section h6 {
    font-size: 16px;
    line-height: 16px;
    color: #3397B9;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
}
.full-text-editor-section .table {
    overflow-x: auto;
}
.full-text-editor-section table {
    margin: 20px 0 40px;
    width: 100%;
}
.full-text-editor-section .table thead tr th,
.full-text-editor-section table thead tr th {
    font-size: 16px;
    line-height: 26px;
    color: #A90533;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    border-bottom: solid 1px #A90533 !important;
    padding: 0.5rem 0.5rem 0.5rem 0;
    letter-spacing: 0.03rem;
}
.full-text-editor-section .table tbody tr td,
.full-text-editor-section table tbody tr td {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    border-bottom: solid 1px #B19672;
    padding: 0.5rem 0.5rem 0.5rem 0;
    letter-spacing: 0.03rem;
}
.full-text-editor-section .general-page-btn-link-box {
    margin-bottom: 30px;
}
.full-text-editor-section .general-page-btn-link-box .red-txt-btn {
    font-size: 14px;
    line-height: 20px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
.full-text-editor-section .general-page-btn-link-box .red-txt-btn:hover {
    color: #B19672;
}
.full-text-editor-section .general-page-btn-link-box .red-txt-btn:not(:last-child) {
    margin-bottom: 30px;
}
.full-text-editor-section .general-page-editor-img-box {
    position: relative;
    margin-bottom: 30px;
}
.full-text-editor-section .general-page-editor-img-box img {
    width: 100%;
}
.full-text-editor-section .general-page-editor-img-box .img-caption-box {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 85.37%, rgba(0, 0, 0, 0.4) 93.63%);
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.full-text-editor-section .general-page-editor-img-box .img-caption-box p {
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
}
figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 85.37%, rgba(0, 0, 0, 0.4) 93.63%);
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
}
/* Image and Text Side By Side Css Start */
.image-txt-side-by-side-section {
    margin-top: 30px;
}
.image-style-align-left,
.image-txt-side-by-side-section .general-page-editor-img-box {
    margin-bottom: 0;
    float: left; /* Makes the image float on the left */
    margin-right: 20px; /* Adds space to the right of the image */
    width: auto; /* Adjust the width of the image */
    height: auto; /* Ensures the image retains its aspect ratio */
}
.image-style-align-right,
.image-txt-side-by-side-section.right-side-img-box .general-page-editor-img-box {
    float: right;
    margin-left: 20px;
    margin-right: 0;
}
figure,
.image-txt-side-by-side-section .general-page-editor-img-box img {
    height: auto;
    object-fit: cover;
    object-position: center;
    position: relative;
}
.image-txt-side-by-side-section .general-page-editor-img-content-box p {
    text-align: justify; /* Optional: Makes text look neat */
}
/* Image and Text Side By Side Css End */
.full-text-editor-section .full-text-editor-box > :last-child {
    margin-bottom: 0;
}
/* Full Text Editor Css End */
/* Web Form Css Start */
.web-form-section {
    z-index: 1;
}
.web-form-section h1,
.web-form-section h5 {
    margin: 40px 0 10px;
}
.web-form-section p {
    margin: 20px 0;
}
.web-form-section .form-label,
.web-form-section .freeform-label {
    font-size: 16px !important;
    line-height: 24px !important;
    color: #000000 !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 15px !important;
}
.web-form-section .form-check .form-check-label,
.web-form-section .form-check-label {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 0;
    cursor: pointer;
}
.web-form-section .form-control,
.web-form-section .form-select,
.web-form-section textarea,
.web-form-section .freeform-input {
    background-color: transparent !important;
    border-radius: 10px !important;
    border: solid 1px #3397B9 !important;
    padding: 10px 20px !important;
    margin-bottom: 15px !important;
    caret-color: #000000 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    color: #000000 !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-weight: 300 !important;
    height: 70px !important;
    width: 100% !important;
    margin: 0 !important;
}
.web-form-section .form-select,
.web-form-section .freeform-fieldtype-dropdown .freeform-input {
  background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23000000' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") right 20px center/8px 10px no-repeat !important;
}
.web-form-section .form-control::placeholder,
.web-form-section textarea::placeholder,
.web-form-section .freeform-input::placeholder {
    font-size: 16px !important;
    line-height: 20px !important;
    color: #739ABC !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-weight: 300 !important;
}
.web-form-section textarea.freeform-input {
    height: auto !important;
}
.web-form-section .form-control:focus,
.web-form-section .form-select:focus,
.web-form-section textarea,
.web-form-section .freeform-input:focus {
    box-shadow: none !important;
    outline: 0 !important;
    border: solid 2px #3397B9 !important;
}
.web-form-section .form-check .form-check-label {
    cursor: pointer;
    margin-bottom: 0;
    padding: 0 30px 0 5px;
    margin-left: 5px;
}
.web-form-section .form-check {
    position: relative;
    margin-bottom: 15px;
}
.web-form-section .form-check input[type="radio"] {
    opacity: 0 !important;
    display: none !important;
}
.web-form-section .custom-radio-btn-box {
    margin-bottom: 25px;
}
.web-form-section .freeform-fieldtype-radios label {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 30px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: #000000 !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 15px !important;
    cursor: pointer !important;
}
.web-form-section .freeform-fieldtype-radios .freeform-label {
    padding: 0 !important;
}
.web-form-section .form-check label::before,
.web-form-section .freeform-fieldtype-radios input[type="radio"] {
    width: 24px !important;
    height: 24px !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    content: '' !important;
    display: inline-block !important;
    border-radius: 50% !important;
    border: 1px solid #3397B9 !important;
    background: transparent !important;
    transform: none !important;
}
.web-form-section .form-check input[type="radio"]:checked + label::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 5px !important;
    transform: translate(0, -50%) !important;
    display: inline-block !important;
    width: 14px !important;
    height: 14px !important;
    background-color: #A81E37 !important;
    border-radius: 50% !important;
}
.web-form-section .freeform-fieldtype-checkboxes .freeform-input {
    height: 24px !important;
    width: 24px !important;
    transform: none !important;
    margin-right: 10px !important;
}
.web-form-section .freeform-fieldtype-checkboxes label {
    font-size: 16px !important;
    line-height: 24px !important;
    color: #000000 !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 15px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: flex-start !important;
}
.web-form-section button[type="submit"] {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    outline: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 0;
    width: fit-content;
    transition: all 0.3s;
}
.web-form-section button[type="submit"]:hover {
    color: #B19672;
    background: transparent;
}
.web-form-section button[type="submit"]::after {
    display: none;
}
.web-form-section button[type="submit"]::before,
.web-form-section button[type="submit"]:hover::after {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: all 1s;
}
.web-form-section button[type="submit"]:hover::before {
    display: none;
}
.web-form-section button[type="submit"]::before {
    background: #A90533;
    margin-right: 10px;
}
.web-form-section button[type="submit"]::after {
    background: #B19672;
    margin-left: 10px;
}
/* Web Form Css End */
/* General Page Css End */
/* Page Module Css Start */
/* Photo Gallery Module Css Start */
.photo-gallery-module-section {
    padding: 30px 0 30px 100px;
}
.photo-gallery-module-section .photo-gallery-slick-slider {
    margin: 0 -10px;
}
.photo-gallery-module-section .photo-gallery-slick-slider .slick-prev {
    left: auto;
    right: 210px;
}
.photo-gallery-module-section .photo-gallery-slick-slider .slick-next {
    left: auto;
    right: 150px;
}
.photo-gallery-module-section .photo-gallery-slick-slider .slick-list {
    padding: 0 0 54px !important;
}
.photo-gallery-module-section .photo-gallery-slick-slider .slick-track {
    display: flex !important;
    align-items: center;
    transition: all 0.5s;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider {
    margin: 10px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    padding: 0;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box {
    display: inline-block;
    position: relative;
    height: 550px;
    cursor: pointer;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img-caption {
    width: 100%;
    padding: 10px 0;
    display: none;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider.slick-current.slick-active .photo-gallery-img-box .photo-gallery-img-caption {
    display: block;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img-caption p {
    font-size: 16px;
    line-height: 20px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}
.photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img-caption p::after {
    content: '';
    display: block;
    height: 12px;
    width: 12px;
    background: #A90533;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.photo-gallery-module-section .slider-progress-bar {
    position: absolute;
    bottom: 27px;
    left: 0;
    display: block;
    width: calc(100% - 300px);
    height: 2px;
    overflow: hidden;
    background-color: #D7EBF2;
}
.photo-gallery-module-section .slider-progress-bar .slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #A90533;
}
/* Photo Gallery Module Css End */
/* Quote Section Css Start */
.quote-section.pull-quote-section {
    height: 630px;
    display: flex;
    align-items: center;
    margin: 40px 0;
}
.quote-section.pull-quote-section.img-pull-quote-section {
    background-position: center center;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow: hidden;
}
.quote-section.pull-quote-section .quote-bg-img-one {
    width: 170px;
    right: 0;
}
/* Quote Section Css End */
/* Accordion Section Css Start */
.accordion-section .accordion {
    margin: 60px 0 !important;
}
.accordion-section .accordion .accordion-item {
    border: 0;
}
.accordion-section .accordion .accordion-item:not(:last-child) {
    margin-bottom: 0;
}
.accordion-section .accordion .accordion-item .accordion-header {
    border-bottom: 0;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 36px;
    line-height: 40px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    border-bottom: 0;
    padding: 20px 0;
    align-items: center;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    border-top: solid 1px #B19672;
    border-bottom: 0;
    border-radius: 0;
    position: relative;
}
.accordion-section .accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed {
    border-bottom: solid 1px #B19672;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button::after {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    font-family: "Font Awesome 6 Free";
    content: '\f068';
    background-image: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
    color: #A90533;
    background: #FFFFFF;
    border: solid 1px #A90533;
    transform: none;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: '\2b';
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:hover::after,
.accordion-section .accordion .accordion-item .accordion-header .accordion-button.collapsed:hover::after {
    background: #A90533;
    color: #FFFFFF;
    border: solid 1px #A90533;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 0;
    border-top: solid 1px #A90533;
    border-radius: 0;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
}
.accordion-section .accordion .accordion-item .accordion-collapse {
    border-bottom: 0;
    border-radius: 0;
}
.accordion-section .accordion .accordion-item:last-child .accordion-collapse {
    border-bottom: solid 1px #B19672;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 50px 0;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body > :last-child {
    margin-bottom: 0;
}
/* Accordion Section Css End */
/* Image/Text Module Css Start */
.img-txt-module-section {
    padding: 0;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-img-box {
    padding: 0;
    position: relative;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: top;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
    padding: 80px;
    position: relative;
    display: flex;
    align-items: center;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-bg-img-two {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95px;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail {
    max-width: 535px;
    position: relative;
    z-index: 1;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-sub-title {
    font-size: 14px;
    line-height: 24px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-title {
    font-size: 62px;
    line-height: 70px;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(102.2deg, #6EA9C7 10.19%, #0D5167 67.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt {
    font-size: 22px;
    line-height: 35px;
    color: #000000;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 20px;
}
.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt.light-txt {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.03rem;
}
/* Red BG Css Start */
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
    background: linear-gradient(95.02deg, #860026 26.82%, #A90533 59.28%);
}
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-sub-title,
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-title,
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt,
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .red-txt-btn {
    color: #FFFFFF;
}
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-title {
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
}
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .red-txt-btn:hover {
    color: #B19672;
}
.red-bg-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .red-txt-btn::before {
    background: #FFFFFF;
}
.img-txt-module-btn-group .red-txt-btn:not(:last-child) {
    margin-bottom: 15px;
}
/* Red BG Css End */
/* Right Side Image Css Start */
.right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-img-box {
    order: 2;
}
.right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
    left: auto;
    right: 0;
    width: 95px;
}
.right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
    order: 1;
    padding: 80px;
}
.right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-bg-img-two {
    right: auto;
    left: 0;
}
/* Right Side Image Css End */
/* Image/Text Module Css End */
/* Link Tiles Module Css Start */
.link-tiles-section {
    padding: 60px 0;
}
.link-tiles-section .link-tiles-con .grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    --cols: 4;
    --gap: 15px;
    --cell: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
}
.link-tiles-section .link-tiles-con .grid-container .grid-item {
    flex: 0 0 var(--cell);
    height: 350px;
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.grid-item-no-img-bg {
    background: #A90533;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.grid-item-no-img-bg:hover {
    background: #3397B9;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.one-row-one-column {
    flex-basis: var(--cell);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.one-row-two-column {
    flex-basis: calc(2 * var(--cell) + var(--gap));
}
.link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item:hover .link-tiles-img {
    transform: scale(1.2);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.13%, rgba(0, 0, 0, 0.4) 74.92%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 0;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item:hover .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.grid-item-no-img-bg .link-tiles-content-box {
    background: transparent !important;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.medium-overlay-bg-box .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 75%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.medium-overlay-bg-box:hover .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.normal-overlay-bg-box .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 75%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.normal-overlay-bg-box:hover .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.light-overlay-bg-box .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 75%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item.light-overlay-bg-box:hover .link-tiles-content-box {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%);
}
.link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
    font-size: 30px;
    line-height: 34px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 30px;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-module-bg-img {
    display: none;
    width: 100%;
    transition: all 0.5s;
}
.link-tiles-section .link-tiles-con .grid-container .grid-item:hover .link-tiles-content-box .link-tiles-module-bg-img {
    display: block;
}
/* Link Tiles Module Css End */
/* Staff Module Css Start */
.staff-module-section {
    padding: 60px 0;
}
.staff-module-section .staff-module-con .staff-module-box .staff-module-card {
    display: block;
    margin-bottom: 20px;
}
.staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box {
    padding: 10px 0;
    width: 100%;
    text-align: center;
}
.staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-title {
    font-size: 20px;
    line-height: 24px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0 0 5px;
}
.staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-sub-title {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin: 0;
}
/* Staff Module Css End */
/* Staff View Modal Css Start */
.staff-view-modal {
    background: #00000099;
    backdrop-filter: blur(12px);
    overflow: hidden;
}
.staff-view-modal .modal-dialog {
    transform: translateX(100%) !important;
    transition: transform 0.3s ease-in-out !important;
}
.staff-view-modal.show .modal-dialog {
    transform: translateX(0) !important;
}
.staff-view-modal .modal-lg {
    width: 75vw;
    max-width: 75vw;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    margin: 0 0 0 auto;
}
.staff-view-modal .modal-lg .modal-square-bg-img {
    width: auto;
    height: 100%;
}
.staff-view-modal .modal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 100vh;
    position: relative;
}
.staff-view-modal .modal-content .modal-body {
    padding: 0;
    background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
    border-radius: 0;
    height: 100vh;
}
.staff-view-modal .modal-content .modal-body .modal-content-con {
    height: 100%;
    padding: 40px;
    overflow-x: hidden;
    overflow-y: auto;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon {
    display: inline-flex;
    cursor: pointer;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon img {
    width: 56px;
    transition: all 0.5s;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon:hover img.close-white-bg,
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon img.close-red-bg {
    display: none;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon:hover img.close-red-bg {
    display: block;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box {
    width: 100%;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 1px;
    background: #FFFFFF;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box {
    width: 200px;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box .modal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box {
    width: calc(100% - 200px);
    padding-left: 30px;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-title {
    font-size: 32px;
    line-height: 36px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-sub-title {
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.03rem;
    margin-bottom: 0;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box {
    padding: 20px 50px 0 0;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box p,
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box li,
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box a {
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    /* font-family: "Lato", sans-serif; */
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    margin-bottom: 20px;
}
.staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box > :last-child {
    margin-bottom: 0;
}
/* Staff View Modal Css End */
/* Page Module Css End */
/* Latest News Page Css Start */
/* Latest News Button Css Start */
.latest-news-btn-section {
    padding: 40px 20px;
}
.latest-news-btn-section .latest-news-btn-con .latest-news-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.latest-news-btn-section .latest-news-btn-con .latest-news-btn-box .red-txt-btn:not(:last-child) {
    margin-right: 70px;
}
/* Latest News Button Css End */
/* Latest News List Css Start */
.latest-news-list-section {
    padding: 0 20px;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box {
    padding: 20px 12px;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card {
    display: inline-block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box {
    margin: 10px 0 0;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-sub-title {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-title {
    font-size: 28px;
    line-height: 32px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
}
.latest-news-list-section .pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 40px 0;
}
.latest-news-list-section .pagination-container .pagination-btn {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 0;
    transition: 0.3s;
    font-size: 16px;
    line-height: 16px;
    color: #B19672;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
.latest-news-list-section .pagination-container .pagination-btn:hover {
    color: #A90533;
}
.latest-news-list-section .pagination-container .pagination-numbers {
    display: flex;
    gap: 15px;
}
.latest-news-list-section .pagination-container .pagination-numbers .pagination-number {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 0;
    font-size: 16px;
    line-height: 16px;
    color: #B19672;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
}
.latest-news-list-section .pagination-container .pagination-numbers .pagination-number:hover,
.latest-news-list-section .pagination-container .pagination-numbers .pagination-number.active {
    color: #A90533;
    font-weight: 700;
}
/* Latest News List Css End */
/* Latest News Page Css End */
/* Event Calendar Page Css Start */
/* Event Calendar List Css Start */
.event-calendar-section {
    padding: 60px 0;
}
.event-calendar-section .event-month-year-previous-next-btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box {
    margin-right: 50px;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box h4 {
    font-size: 38px;
    line-height: 38px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box p {
    font-size: 22px;
    line-height: 22px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box {
    display: inline-flex;
    align-items: center;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-previous-btn,
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-next-btn {
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: transparent;
    border: solid 1px #A90533;
    outline: 0;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    transition: all 0.5s;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-previous-btn:hover,
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-next-btn:hover {
    border: solid 1px #A90533;
    background: #A90533;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-previous-btn {
    margin-right: 15px;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-previous-btn i,
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-next-btn i {
    font-size: 20px;
    color: #A90533;
    transition: all 0.5s;
}
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-previous-btn:hover i,
.event-calendar-section .event-month-year-previous-next-btn-box .event-previous-next-btn-box .event-next-btn:hover i {
    color: #FFFFFF;
}
.event-calendar-section .event-calendar-list-con {
    padding: 40px 0;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card {
    display: inline-block;
    position: relative;
    height: 400px;
    width: 100%;
    background: #EAEAEA;
    padding: 20px;
    margin: 15px 0;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #B19672;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box .event-calendar-list-card-date-txt {
    width: 60px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box .event-calendar-list-card-date-txt .event-calendar-list-card-date {
    font-size: 48px;
    line-height: 54px;
    color: #A90533;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box .event-calendar-list-card-day-month-txt {
    width: calc(100% - 60px);
    padding-left: 10px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box .event-calendar-list-card-day-month-txt .event-calendar-list-card-day-txt {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-list-card-date-box .event-calendar-list-card-day-month-txt .event-calendar-list-card-month-txt {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-card-list-box .event-calendar-card-list-txt {
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    border-left: solid 3px #3196B9;
    padding-left: 15px;
}
.event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-card-list-box .event-calendar-card-list-txt:not(:last-child) {
    margin-bottom: 20px;
}
/* Event Calendar List Css End */
/* Event Calendar Page Css End */
/* Google Translate Css Start */
#google_translate_element {
    display: none;
    position: fixed !important;
    top: 45px !important;
    right: 220px !important;
    z-index: 999 !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    min-height: 39px !important;
}
/* Google Translate Css End */

/* Responsive Css Start */
@media only screen and (min-width: 1200px) {}
@media only screen and (min-width: 1600px) {}
@media only screen and (min-width: 1700px) {}
@media only screen and (min-width: 1800px) {
    /* Common Css Start */
    .container {
        max-width: 1700px;
    }
    /* Banner Css Start */
    .banner-section .banner-bg-img-one {
        width: 200px;
    }
    /* General Page Banner Css Start */
    .general-page-banner-section.banner-section {
        padding: 30px;
    }
    .general-page-banner-section.banner-section .banner-bg-img-one {
        bottom: -79px;
        width: 200px;
    }
    .general-page-banner-section.banner-section .banner-bg-img-two {
        bottom: -42px;
        right: 150px;
        width: 170px;
    }
    .general-page-banner-section.banner-section .banner-con {
        height: calc(100vh - 60px);
        width: calc(100vw - 60px);
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box {
        padding: 20px 100px 100px 120px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
        padding: 10px 120px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 180px;
    }
    /* General Page Banner Css End */
    /* Banner Css End */
    /* Menu Css Start */
    .menu-nav .menu-box .menu-left-box {
        padding: 70px 120px;
        width: calc(100vw - 700px);
    }
    .other-links-box {
        height: calc(100vh - 353px);
    }
    .menu-nav .menu-box .menu-right-box {
        width: 700px;
    }
    /* Menu Css End */
    /* Footer Css Start */
    .footer-section .footer-con .footer-detail-con .footer-detail-box,
    .footer-section .footer-con .footer-detail-con .footer-social-icon-con,
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box {
        padding: 0 80px;
    }
    /* Footer Css End */
    /* Page Header Section Css Start */
    .page-header-section .page-header-con .page-header-bg-img {
        bottom: -42px;
        width: 170px;
    }
    .page-header-section .page-header-con .page-header-box {
        padding: 70px 0;
    }
    /* Page Header Section Css End */
    /* Common Css End */
    /* Home Page Css Start */
    /* Illuminating Css Start */
    .illumination-section {
        padding: 80px 20px;
    }
    .illumination-section .illuminating-bg-img-one {
        width: 165px;
    }
    .illumination-section .illumination-four-con {
        margin-top: 70px;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card {
        padding: 60px 20px;
    }
    /* Illuminating Css End */
    /* Welcome Message Css Start */
    .welcome-message-section {
        padding: 80px 0 140px;
    }
    .welcome-message-section .welcome-message-box {
        align-items: center;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-bg-img-one {
        bottom: -82px;
        width: 165px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-img {
        max-height: 700px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box {
        padding: 40px 100px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail {
        max-width: 720px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-sub-title,
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-title,
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt {
        margin-bottom: 30px;
    }
    /* Welcome Message Css End */
    /* Image Divider Slider Css Start */
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .img-divider-slider-title-txt {
        padding: 50px 25px 0;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption {
        padding: 200px 20px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-title,
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-txt {
        margin-bottom: 50px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators {
        margin: 0 auto 50px;
        gap: 20px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators [data-bs-target] {
        font-size: 24px;
        line-height: 30px;
    }
    /* Image Divider Slider Css End */
    /* Latest News Slider Css Start */
    .latest-news-slider-section {
        padding: 80px 0 40px;
    }
    .latest-news-slider-section.latest-news-page-slider-section {
        padding: 80px 0;
    }
    .latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .latest-news-slider-img {
        height: 470px;
    }
    /* Latest News Slider Css End */
    /* Event Calendar Slider Css Start */
    .event-calendar-slider-section {
        padding: 40px 0 80px;
    }
    .event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box {
        height: 440px;
    }
    /* Event Calendar Slider Css End */
    /* Quote Section Css Start */
    .quote-section .quote-bg-img-one {
        right: 45px;
        width: 165px;
    }
    /* Quote Section Css End */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section {
        padding: 120px 0;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-bg-img-one {
        left: -40px;
        bottom: -39px;
        width: 80px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-img {
        max-height: 600px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
        padding: 40px 80px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-bg-img-two {
        bottom: -190px;
        width: 170px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-txt {
        margin-bottom: 40px;
    }
    /* Build Brighter Future Css End */
    /* Home Page Css End */
    /* Page Module Css Start */
    /* Photo Gallery Module Css Start */
    .photo-gallery-module-section {
        padding: 30px 0 30px 150px;
    }
    /* Photo Gallery Module Css End */
    /* Quote Section Css Start */
    .quote-section.pull-quote-section {
        height: 750px;
    }
    .quote-section.pull-quote-section .quote-bg-img-one {
        width: 200px;
    }
    /* Quote Section Css End */
    /* Image/Text Module Css Start */
    .img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
        width: 95px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-img {
        min-height: 900px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 100px 150px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-bg-img-two {
        width: 135px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt {
        margin-bottom: 30px;
    }
    /* Right Side Image Css Start */
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
        width: 135px;
    }
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 100px 250px;
    }
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-bg-img-two {
    }
    /* Right Side Image Css End */
    /* Image/Text Module Css End */
    /* Link Tiles Module Css Start */
    .link-tiles-section .link-tiles-con .grid-container .grid-item {
        height: 400px;
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
        font-size: 36px;
        line-height: 40px;
        padding: 40px;
    }
    /* Link Tiles Module Css End */
    /* Staff Module Css Start */
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-img {
        height: 280px;
    }
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-title {
        font-size: 24px;
        line-height: 28px;
    }
    /* Staff Module Css End */
    /* Staff View Modal Css Start */
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box {
        width: 300px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box .modal-img {
        height: 300px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box {
        width: calc(100% - 300px);
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box {
        padding: 20px 80px 0 0;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box p,
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box li,
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box a {
        font-size: 18px;
        line-height: 28px;
    }
    /* Staff View Modal Css End */
    /* Page Module Css End */
    /* Latest News Page Css Start */
    /* Latest News Button Css Start */
    .latest-news-btn-section {
        padding: 60px 20px;
    }
    .latest-news-btn-section .latest-news-btn-con .latest-news-btn-box .red-txt-btn:not(:last-child) {
        margin-right: 100px;
    }
    /* Latest News Button Css End */
    /* Latest News List Css Start */
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-img {
        height: 360px;
    }
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-title {
        font-size: 32px;
        line-height: 36px;
    }
    /* Latest News List Css End */
    /* Latest News Page Css End */
    /* Event Calendar Page Css Start */
    /* Event Calendar List Css Start */
    .event-calendar-section {
        padding: 80px 0;
    }
    .event-calendar-section .event-calendar-list-con {
        padding: 50px 0;
    }
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card {
        height: 440px;
    }
    /* Event Calendar List Css End */
    /* Event Calendar Page Css End */
    /* Google Translate Css Start */
    #google_translate_element {
        right: 410px !important;
    }
    /* Google Translate Css End */
}
@media only screen and (min-width: 1900px) {}
@media only screen and (min-width: 2000px) {}
@media only screen and (min-width: 2100px) {
    /* Common Css Start */
    /* Menu Css Start */
    .menu-nav .menu-box .menu-left-box {
        padding: 100px 150px;
        width: calc(100vw - 810px);
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con {
        padding-bottom: 70px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .search-icon-box .search-icon-img {
        width: 30px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .seqta-btn-box {
        font-size: 16px;
        line-height: 22px;
    }
    .other-links-box {
        height: calc(100vh - 439px);
    }
    .other-links-box .other-link-menu {
        padding-bottom: 30px;
        padding-right: 30px;
    }
    .other-links-box .other-link-menu .parent-menu-text:hover::after,
    .other-links-box .other-link-menu .parent-menu-text.active-menu::after {
        height: 2px;
    }
    .other-links-box .child-menu.active-menu li {
        padding-bottom: 20px;
    }
    .menu-nav .menu-box .menu-right-box {
        width: 810px;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box {
        height: calc(100vh - 340px);
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box {
        padding: 60px 100px;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box .translate-icon img {
        width: 30px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box {
        height: 340px;
        padding: 50px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box {
        grid-auto-rows: 85px;
    }
    /* Menu Css End */
    /* Common Css End */
}
@media only screen and (min-width: 2200px) {}
@media only screen and (min-width: 2300px) {}
@media only screen and (min-width: 2400px) {}
@media only screen and (min-width: 2500px) {}
@media only screen and (min-width: 2600px) {}
@media only screen and (max-width: 1400px) and (min-width: 1199px) {
    /* Common Css Start */
    /* Banner Css Start */
    .banner-iframe-box iframe {
        top: -65%;
        width: 190%;
        height: 230%;
    }
    /* General Page Banner Css Start */
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box .general-page-banner-title {
        font-size: 40px;
        line-height: 50px;
    }
    /* General Page Banner Css End */
    /* Banner Css End */
    /* Menu Css Start */
    .menu-nav .menu-box .menu-left-box {
        padding: 50px;
        width: calc(100vw - 500px);
    }
    .other-links-box .parent-menu-text span {
        font-size: 28px;
        line-height: 38px;
    }
    .other-links-box .child-menu.active-menu a {
        font-size: 22px;
        line-height: 28px;
    }
    .menu-nav .menu-box .menu-right-box {
        width: 500px;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box .menu-close-translate-icon-box {
        padding: 40px 50px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item p {
        font-size: 12px;
        line-height: 16px;
    }
    /* Menu Css End */
    /* Common Css End */
    /* Home Page Css Start */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
        padding: 20px 30px;
    }
    /* Build Brighter Future Css End */
    /* Home Page Css End */
    /* Page Module Css Start */
    /* Image/Text Module Css Start */
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 60px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-title {
        font-size: 58px;
        line-height: 64px;
    }
    /* Image/Text Module Css End */
    /* Right Side Image Css Start */
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 60px;
    }
    /* Right Side Image Css End */
    /* Link Tiles Module Css Start */
    .link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
        font-size: 28px;
        line-height: 32px;
        padding: 20px;
    }
    /* Link Tiles Module Css End */
    /* Staff Module Css Start */
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-img {
        height: 180px;
    }
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-title {
        font-size: 18px;
        line-height: 22px;
    }
    /* Staff Module Css End */
    /* Page Module Css End */
    /* Event Calendar Page Css Start */
    /* Event Calendar List Css Start */
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-card-list-box .event-calendar-card-list-txt {
        font-size: 18px;
        line-height: 22px;
    }
    /* Event Calendar List Css End */
    /* Event Calendar Page Css End */
}
@media only screen and (max-width: 1199px) {
    /* Common Css Start */
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    /* Banner Css Start */
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title,
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title span {
        font-size: 52px;
        line-height: 60px;
    }
    .event-calendar-banner-section.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title {
        font-size: 42px;
        line-height: 50px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 160px;
    }
    /* General Page Banner Css Start */
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box {
        padding: 20px 40px 80px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box .general-page-banner-title {
        font-size: 40px;
        line-height: 50px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
        padding: 10px 40px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 140px;
    }
    /* General Page Banner Css End */
    /* Banner Css End */
    /* Menu Css Start */
    .menu-nav .menu-box {
        flex-direction: column;
    }
    .menu-nav .menu-box .menu-left-box {
        padding: 20px;
        width: 100vw;
        height: calc(100vh - 200px);
    }
    .menu-nav .menu-box .menu-left-box .menu-square-bg-img {
        display: none;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con {
        padding-bottom: 30px;
        justify-content: space-between;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box {
        display: inline-flex;
        align-items: center;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .translate-icon {
        display: inline-block;
        margin-right: 30px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .translate-icon img {
        width: 24px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .close-icon {
        display: inline-flex;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .close-icon img {
        width: 56px;
        transition: all 0.5s;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .close-icon:hover img.close-white-bg,
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .close-icon img.close-red-bg {
        display: none;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon-box .close-icon:hover img.close-red-bg {
        display: block;
    }
    .menu-nav .menu-box .menu-left-box .menu-logo-box {
        position: absolute;
        right: 20px;
        bottom: 20px;
    }
    .menu-nav .menu-box .menu-left-box .menu-logo-box .menu-logo {
        width: 90px;
    }
    .other-links-box {
        height: calc(100vh - 325px);
    }
    .other-links-box .other-link-menu {
        width: 50%;
    }
    .other-links-box .parent-menu-text span {
        font-size: 28px;
        line-height: 34px;
    }
    .other-links-box .child-menu.active-menu {
        width: 40%;
        right: 10%;
    }
    .other-links-box .child-menu.active-menu a {
        font-size: 22px;
        line-height: 28px;
    }
    .menu-nav .menu-box .menu-right-box {
        width: 100vw;
        height: 200px;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box {
        display: none;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box {
        width: 100%;
        height: 200px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box {
        grid-template-columns: repeat(8, 1fr);
        grid-auto-rows: 75px;
        gap: 5px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item p {
        font-size: 12px;
        line-height: 16px;
    }
    /* Menu Css End */
    /* Footer Css Start */
    .footer-section .footer-square-bg-img {
        width: 500px;
    }
    .footer-section .footer-con .footer-logo-con .footer-logo-box .footer-logo {
        width: 330px;
    }
    .footer-section .footer-con .footer-detail-con .footer-detail-box,
    .footer-section .footer-con .footer-detail-con .footer-social-icon-con,
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box {
        padding: 0 40px;
    }
    /* Footer Css End */
    /* Common Css End */
    /* Home Page Css Start */
    .illumination-section .illuminating-bg-img-one {
        display: none;
    }
    /* Illuminating Css Start */
    .illumination-section .illumination-box .illumination-title-box .illumination-title {
        font-size: 48px;
        line-height: 52px;
    }
    .illumination-section .illumination-box .illumination-detail-box .illumination-txt {
        font-size: 16px;
        line-height: 26px;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card {
        padding: 40px 20px;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card .illumination-four-title {
        font-size: 14px;
        line-height: 22px;
    }
    /* Illuminating Css End */
    /* Welcome Message Css Start */
    .welcome-message-section {
        padding: 60px 0;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-bg-img-one {
        bottom: 59px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-img {
        max-height: 350px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box {
        padding: 0 45px 0 40px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-title {
        font-size: 40px;
        line-height: 48px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt {
        font-size: 18px;
        line-height: 26px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt.light-txt {
        font-size: 16px;
        line-height: 24px;
    }
    /* Welcome Message Css End */
    /* Image Divider Slider Css Start */
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-title {
        font-size: 48px;
        line-height: 52px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-txt {
        font-size: 16px;
        line-height: 22px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators [data-bs-target] {
        font-size: 14px;
        line-height: 20px;
    }
    /* Image Divider Slider Css End */
    /* Latest News Slider Css Start */
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-heading-box .latest-news-slider-heading {
        font-size: 48px;
        line-height: 54px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn .red-txt-btn:not(:last-child) {
        margin-right: 40px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn {
        margin-left: 50px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn:not(:last-child) {
        margin-right: 10px;
    }
    /* Latest News Slider Css End */
    /* Event Calendar Slider Css Start */
    .event-calendar-slider-section .event-calendar-slider-heading-btn-box .event-calendar-slider-heading-box .event-calendar-slider-heading {
        font-size: 48px;
        line-height: 54px;
    }
    .event-calendar-slider-section .event-calendar-slider-con .event-calendar-slider-box .event-calendar-slick-slider .event-calendar-slider .event-calendar-slider-content-box .event-calendar-list-box .event-calendar-list-txt {
        font-size: 16px;
        line-height: 20px;
    }
    /* Event Calendar Slider Css End */
    /* Quote Section Css Start */
    .quote-section .quote-bg-img-one {
        right: 0;
    }
    .quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-txt,
    .quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-by-txt {
        font-size: 18px;
        line-height: 30px;
    }
    /* Quote Section Css End */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-bg-img-one {
        left: 0px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
        padding: 20px 40px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-title {
        font-size: 44px;
        line-height: 50px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-txt {
        font-size: 16px;
        line-height: 26px;
    }
    /* Build Brighter Future Css End */
    /* Acknowledge Section Css Start */
    .acknowledge-section .acknowledge-con .acknowledge-detail-box .acknowledge-txt {
        font-size: 18px;
        line-height: 30px;
    }
    /* Acknowledge Section Css End */
    /* Home Page Css End */
    /* General Page Css Start */
    /* Full Text Editor Css Start */
    .full-text-editor-section h1 {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 30px;
    }
    .full-text-editor-section h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .full-text-editor-section h3 {
        font-size: 30px;
        line-height: 30px;
    }
    /* Full Text Editor Css End */
    /* General Page Css End */
    /* Page Module Css Start */
    /* Photo Gallery Module Css Start */
    .photo-gallery-module-section {
        padding: 30px 0 30px 60px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box {
        height: 450px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img {
        height: 400px;
    }
    /* Photo Gallery Module Css End */
    /* Image/Text Module Css Start */
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 60px 20px 60px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-title {
        font-size: 54px;
        line-height: 60px;
        margin-bottom: 20px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt {
        font-size: 18px;
        line-height: 26px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail .img-txt-module-txt.light-txt {
        font-size: 16px;
        line-height: 24px;
    }
    /* Right Side Image Css Start */
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 60px 20px 60px;
    }
    /* Right Side Image Css End */
    /* Image/Text Module Css End */
    /* Link Tiles Module Css Start */
    .link-tiles-section {
        padding: 40px 0;
    }
    .link-tiles-section .link-tiles-con .grid-container {
        --cols: 3;
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
        font-size: 28px;
        line-height: 32px;
    }
    /* Link Tiles Module Css End */
    /* Staff Module Css Start */
    .staff-module-section {
        padding: 40px 0;
    }
    /* Staff Module Css End */
    /* Page Module Css End */
    /* Latest News Page Css Start */
    /* Latest News List Css Start */
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-img {
        height: 280px;
    }
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-title {
        font-size: 26px;
        line-height: 30px;
    }
    /* Latest News List Css End */
    /* Latest News Page Css End */
    /* Event Calendar Page Css Start */
    /* Event Calendar List Css Start */
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card {
        height: 350px;
    }
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card .event-calendar-card-list-box .event-calendar-card-list-txt {
        font-size: 16px;
        line-height: 20px;
    }
    /* Event Calendar List Css End */
    /* Event Calendar Page Css End */
}
@media only screen and (max-width: 992px) {
    /* Common Css Start */
    /* Notification Message Css Start */
    .notification-message-section .notification-message-box .notification-message-detail-box {
        width: calc(100% - 30px);
        padding: 0 10px;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box .notification-message-detail-txt p {
        font-size: 12px;
        line-height: 18px;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt ul li a {
        font-size: 12px;
        line-height: 21px;
    }
    .notification-message-section .notification-message-box .notification-message-close-btn-box {
        width: 15px;
    }
    .notification-message-section .notification-message-box .notification-message-close-btn-box .notification-message-close-btn,
    .notification-message-section .notification-message-box .notification-message-close-btn-box .notification-message-close-btn img {
        width: 15px;
    }
    /* Notification Message Css End */
    /* Header Css Start */
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box {
        width: 265px;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box {
        margin-right: 20px;
    }
    .header-section .header-btn-logo-search-menu-box .header-logo-box,
    .header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img,
    .header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img .header-logo {
        width: 70px;
    }
    .header-section .header-btn-logo-search-menu-box .header-translate-menu-con {
        width: 265px;
    }
    .header-section .header-btn-logo-search-menu-box .header-translate-menu-con > :not(:last-child) {
        margin-right: 20px;
    }
    /* Header Css End */
    /* Banner Css Start */
    .banner-section .banner-bg-img-one {
        width: 150px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box {
        width: 265px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box {
        margin-right: 20px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 135px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con {
        width: 265px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con > :not(:last-child) {
        margin-right: 20px;
    }
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-description-txt {
        font-size: 36px;
        line-height: 46px;
    }
    .banner-iframe-box iframe {
        top: -100%;
        width: 400%;
        height: 300%;
        left: -120%;
    }
    /* General Page Banner Css Start */
    .general-page-banner-section.banner-section .banner-bg-img-one {
        bottom: -60px;
        width: 150px;
    }
    .general-page-banner-section.banner-section .banner-bg-img-two {
        bottom: -29px;
        right: 70px;
        width: 120px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box {
        padding: 20px 40px 60px 20px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box .general-page-banner-title {
        font-size: 32px;
        line-height: 42px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
        padding: 10px 20px;
    }
    /* General Page Banner Css End */
    /* Banner Css End */
    /* Footer Css Start */
    .footer-section .footer-square-bg-img {
        width: 350px;
    }
    .footer-section .footer-con .footer-logo-con .footer-logo-box .footer-logo {
        width: 300px;
    }
    .footer-section .footer-con .footer-detail-con .footer-detail-box,
    .footer-section .footer-con .footer-detail-con .footer-social-icon-con,
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box {
        padding: 0 20px;
    }
    .footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt,
    .footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt span {
        font-size: 28px;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt,
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt span {
        font-size: 10px;
        line-height: 16px;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt .jwam-logo {
        width: 40px;
    }
    /* Footer Css End */
    /* Page Header Section Css Start */
    .page-header-section .page-header-con .page-header-bg-img {
        bottom: -30px;
        width: 120px;
    }
    /* Page Header Section Css End */
    /* Common Css End */
    /* Home Page Css Start */
    /* Illuminating Css Start */
    .illumination-section {
        padding: 40px 20px;
    }
    .illumination-section .illumination-four-con {
        margin-top: 20px;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card {
        padding: 30px 20px;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card .illumination-four-title {
        font-size: 16px;
        line-height: 24px;
    }
    /* Illuminating Css End */
    /* Welcome Message Css Start */
    .welcome-message-section {
        padding: 40px 0;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-bg-img-one {
        bottom: 45px;
        width: 115px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-sub-title {
        font-size: 14px;
        line-height: 22px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-title {
        font-size: 34px;
        line-height: 40px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt {
        font-size: 16px;
        line-height: 24px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt.light-txt {
        font-size: 14px;
        line-height: 22px;
    }
    /* Welcome Message Css End */
    /* Latest News Slider Css Start */
    .latest-news-slider-section {
        padding: 40px 20px 20px;
    }
    .latest-news-slider-section.latest-news-page-slider-section {
        padding: 40px 20px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn .red-txt-btn:not(:last-child) {
        margin-right: 20px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn {
        margin-left: 30px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn:not(:last-child) {
        margin-right: 10px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn {
        height: 40px;
        width: 40px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn .social-btn i {
        font-size: 20px;
    }
    /* Latest News Slider Css End */
    /* Event Calendar Slider Css Start */
    .event-calendar-slider-section {
        padding: 40px 20px 20px;
    }
    /* Event Calendar Slider Css End */
    /* Quote Section Css Start */
    .quote-section .quote-bg-img-one {
        right: 0;
        width: 115px;
    }
    .quote-section .quote-con .quote-icon-box .quote-icon {
        width: 100px;
    }
    /* Quote Section Css End */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-bg-img-one {
        left: 0px;
        bottom: -30px;
        width: 60px;
    }
    .build-brighter-future-section .build-brighter-future-box {
        align-items: normal;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
        padding: 20px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-bg-img-two {
        bottom: -30px;
        width: 120px;
    }
    /* Build Brighter Future Css End */
    /* Home Page Css End */
    /* Page Module Css Start */
    /* Photo Gallery Module Css Start */
    .photo-gallery-module-section {
        padding: 30px 0 30px 40px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box {
        height: 500px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img {
        height: 450px;
    }
    /* Photo Gallery Module Css End */
    /* Quote Section Css Start */
    .quote-section.pull-quote-section .quote-bg-img-one {
        width: 150px;
    }
    /* Quote Section Css End */
    /* Accordion Section Css Start */
    .accordion-section .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 30px;
        line-height: 34px;
    }
    /* Accordion Section Css End */
    /* Image/Text Module Css Start */
    .img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
        width: 65px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-bg-img-two {
        width: 85px;
    }
    /* Right Side Image Css Start */
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-bg-img-one {
        width: 85px;
    }
    /* Right Side Image Css End */
    /* Image/Text Module Css End */
    /* Link Tiles Module Css Start */
    .link-tiles-section .link-tiles-con .grid-container {
        --cols: 2;
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
        font-size: 26px;
        line-height: 30px;
        padding: 20px;
    }
    /* Link Tiles Module Css End */
    /* Staff Module Css Start */
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-img {
        height: 220px;
    }
    /* Staff Module Css End */
    /* Staff View Modal Css Start */
    .staff-view-modal .modal-content .modal-body .modal-content-con {
        padding: 30px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon img {
        width: 46px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box {
        width: 170px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box .modal-img {
        height: 170px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box {
        width: calc(100% - 170px);
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-title {
        font-size: 26px;
        line-height: 32px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-sub-title {
        font-size: 18px;
        line-height: 26px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box {
        padding: 20px 40px 0 0;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box p,
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box li,
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box a {
        font-size: 14px;
        line-height: 24px;
    }
    /* Staff View Modal Css End */
    /* Page Module Css End */
}
@media only screen and (max-width: 767px) {
    /* Common Css Start */
    body {
        width: 100%;
    }
    .desktop-view {
        display: none;
    }
    .mobile-view {
        display: inline-block;
    }
    /* Notification Message Css Start */
    .notification-message-section {
        padding: 10px;
    }
    .notification-message-section .notification-message-box {
        flex-direction: column;
        position: relative;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box {
        width: 100%;
        flex-direction: column;
        padding: 0;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box .notification-message-detail-txt p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt {
        margin-left: 0;
    }
    .notification-message-section .notification-message-box .notification-message-detail-box .notification-message-see-detail-txt ul li a {
        font-size: 14px;
        line-height: 21px;
    }
    .notification-message-section .notification-message-box .notification-message-close-btn-box {
        position: absolute;
        bottom: 0;
        right: 10px;
    }
    /* Notification Message Css End */
    /* Header Css Start */
    .header-section {
        padding: 10px;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box {
        width: 135px;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box {
        margin-right: 20px;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box .translate-icon {
        width: 22px;
        transition: all 1s;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box:hover .translate-icon.white-icon,
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box .translate-icon.gold-icon {
        display: none;
    }
    .header-section .header-btn-logo-search-menu-box .header-search-seqta-box .search-icon-box:hover .translate-icon.gold-icon {
        display: inline-block;
    }
    .header-section .header-btn-logo-search-menu-box .header-logo-box,
    .header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img,
    .header-section .header-btn-logo-search-menu-box .header-logo-box .header-logo-img .header-logo {
        width: 60px;
    }
    .header-section .header-btn-logo-search-menu-box .header-translate-menu-con {
        width: 135px;
    }
    /* Header Css End */
    /* Banner Css Start */
    .banner-section .banner-bg-img-one {
        width: 140px;
    }
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box {
        padding: 10px 10px 100px;
    }
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title,
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title span {
        font-size: 48px;
        line-height: 56px;
    }
    .event-calendar-banner-section.banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-title {
        font-size: 36px;
        line-height: 42px;
    }
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .banner-description-txt {
        font-size: 32px;
        line-height: 40px;
        margin: 10px 0 0;
    }
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box .white-txt-btn {
        margin-top: 20px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
        padding: 10px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box {
        width: 135px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box {
        margin-right: 20px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box .translate-icon {
        width: 22px;
        transition: all 1s;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box:hover .translate-icon.white-icon,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box .translate-icon.gold-icon {
        display: none;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box .search-icon-box:hover .translate-icon.gold-icon {
        display: inline-block;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 120px;
    }
    .banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con {
        width: 135px;
    }
    .banner-iframe-box iframe {
        top: -100%;
        width: 400%;
        height: 300%;
        left: -120%;
    }
    /* General Page Banner Css Start */
    .general-page-banner-section.banner-section {
        height: auto;
        max-height: 100vh;
    }
    .general-page-banner-section.banner-section .banner-bg-img-one {
        bottom: 0;
        width: 140px;
    }
    .general-page-banner-section.banner-section .banner-bg-img-two {
        bottom: 0;
        right: 0;
        width: 110px;
    }
    .general-page-banner-section.banner-section .banner-con {
        height: auto;
        max-height: calc(100vh - 40px);
        overflow: hidden;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box {
        overflow: hidden;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box,
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-img-box {
        height: auto;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .general-page-banner-txt-img-box .general-page-banner-txt-box .general-page-banner-content-box {
        padding: 140px 0 20px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con {
        padding: 0;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box {
        order: 2;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img,
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-logo-box .banner-logo-img .banner-logo {
        width: 120px;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-search-seqta-box {
        order: 1;
    }
    .general-page-banner-section.banner-section .banner-con .banner-box .banner-caption .banner-btn-logo-search-menu-con .banner-btn-logo-search-menu-box .banner-translate-menu-con {
        order: 3;
    }
    /* General Page Banner Css End */
    .event-calendar-banner-section.banner-section {
        height: auto;
    }
    /* Banner Css End */
    /* Menu Css Start */
    .menu-nav .menu-box .menu-left-box {
        display: block;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        position: relative;
    }
    .menu-nav .menu-box.show-right .menu-left-box {
        display: none;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con {
        justify-content: space-between;
        padding-bottom: 30px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .seqta-btn-box {
        margin-left: 30px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-search-sqta-btn,
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon {
        display: inline-flex;
        align-items: center;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .translate-icon {
        display: inline-block;
        margin-right: 30px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .translate-icon img {
        width: 24px;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .close-icon {
        display: inline-flex;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .close-icon img {
        width: 56px;
        transition: all 0.5s;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .close-icon:hover img.close-white-bg,
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .close-icon img.close-red-bg {
        display: none;
    }
    .menu-nav .menu-box .menu-left-box .menu-search-con .menu-close-translate-icon .close-icon:hover img.close-red-bg {
        display: block;
    }
    .other-links-box {
        height: calc(100vh - 190px);
        text-align: center;
    }
    .other-links-box .other-link-menu {
        padding-bottom: 20px;
        width: 100%;
        padding-right: 0;
    }
    .other-links-box .other-link-menu:last-child {
        padding-bottom: 0;
    }
    .other-links-box .parent-menu-text {
        position: relative;
        width: 100%;
        display: inline-block;
    }
    .other-links-box .parent-menu-text span {
        font-size: 28px;
        line-height: 34px;
        background: transparent;
        padding-right: 0;
    }
    .other-links-box .other-link-menu .parent-menu-text:hover::after,
    .other-links-box .other-link-menu .parent-menu-text.active-menu::after {
        display: none;
    }
    .other-links-box .child-menu {
        display: none;
    }
    .other-links-box .child-menu.active-menu {
        display: block;
        position: initial;
        width: 100%;
        transition: all 5s ease-in-out;
    }
    .other-links-box .child-menu.active-menu li {
        padding-bottom: 15px;
    }
    .other-links-box .child-menu.active-menu li:first-child {
        padding-top: 20px;
    }
    .other-links-box .child-menu.active-menu li:last-child {
        padding-bottom: 0;
    }
    .other-links-box .child-menu.active-menu a {
        font-size: 22px;
        line-height: 28px;
    }
    .menu-nav .menu-box .menu-left-box .quick-links-title-box {
        background: #3397B9;
        padding: 15px;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        cursor: pointer;
    }
    .menu-nav .menu-box .menu-left-box .quick-links-title-box .quick-links-title {
        font-size: 24px;
        line-height: 30px;
        color: #FFFFFF;
        font-family: "Reddit Sans", sans-serif;
        font-weight: 700;
        letter-spacing: 0.03rem;
        text-transform: uppercase;
        margin-bottom: 0;
    }
    .menu-nav .menu-box .menu-right-box {
        display: none;
        width: 100vw;
        height: 100vh;
        padding: 20px 0 0;
    }
    .menu-nav .menu-box.show-right .menu-right-box {
        display: block;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 20px;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .menu-back-icon-box {
        display: inline-flex;
        align-items: center;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .menu-back-icon-box .left-arrow-icon {
        width: 35px;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .menu-back-icon-box p {
        font-size: 14px;
        line-height: 20px;
        color: #FFFFFF;
        font-family: "Reddit Sans", sans-serif;
        font-weight: 700;
        letter-spacing: 0.21rem;
        text-transform: uppercase;
        margin: 0 0 0 15px;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .close-icon img {
        width: 56px;
        transition: all 0.5s;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .close-icon:hover img.close-white-bg,
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .close-icon img.close-red-bg {
        display: none;
    }
    .menu-nav .menu-box .menu-right-box .menu-back-close-icon-box .close-icon:hover img.close-red-bg {
        display: block;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box {
        height: calc(100vh - 326px);
        padding: 30px 20px;
        text-align: center;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-title {
        font-size: 28px;
        line-height: 32px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con {
        margin: 30px 0 0;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 60px;
        gap: 20px;
    }
    .menu-nav .menu-box .menu-right-box .quick-links-box .quick-links-item-con .quick-links-item-box .quick-links-item p {
        font-size: 16px;
        line-height: 20px;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box {
        height: 250px;
        display: block;
    }
    .menu-nav .menu-box .menu-right-box .menu-img-box .menu-img {
        object-position: center;
    }
    .menu-nav .menu-box .menu-right-box .menu-square-bg-img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    /* Menu Css End */
    /* Floating Button Css Start */
    .floating-button-section {
        width: 100%;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        rotate: none;
    }
    .floating-button-section .floating-button-box {
        padding: 5px 5px 10px;
    }
    .floating-button-section .floating-button-box .floating-apply-book-btn {
        width: 160px;
    }
    /* Floating Button Css End */
    /* Footer Css Start */
    .footer-section {
        padding: 40px 20px;
    }
    .footer-section .footer-square-bg-img {
        width: 100%;
    }
    .footer-section .top-to-scroll-btn {
        bottom: 15px;
    }
    .footer-section .footer-con .footer-logo-con {
        order: 1;
    }
    .footer-section .footer-con .footer-logo-con .footer-logo-box {
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-section .footer-con .footer-logo-con .footer-logo-box .footer-logo {
        width: 280px;
    }
    .footer-section .footer-con .footer-detail-con {
        order: 2;
    }
    .footer-section .footer-con .footer-detail-con .footer-detail-box {
        padding: 0;
        text-align: center;
    }
    .footer-section .footer-con .footer-detail-con .footer-social-icon-con {
        justify-content: center;
        padding: 0;
    }
    .footer-section .footer-con .footer-building-brighter-futures-box {
        order: 4;
        text-align: center;
    }
    .footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt {
        margin: 0 0 40px;
        font-size: 30px;
    }
    .footer-section .footer-con .footer-building-brighter-futures-box .footer-building-brighter-futures-txt span {
        font-size: 30px;
    }
    .footer-section .footer-con .footer-copyright-con {
        order: 3;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box {
        padding: 30px 0;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt {
        justify-content: center;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt,
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt span {
        font-size: 12px;
        line-height: 18px;
    }
    .footer-section .footer-con .footer-copyright-con .footer-copyright-box .footer-copyright-txt .jwam-logo {
        width: 44px;
    }
    /* Footer Css End */
    /* Also In This Section Css Start */
    .also-in-this-edition-section {
        padding: 40px 20px;
    }
    .also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-title {
        font-size: 20px;
        line-height: 24px;
    }
    .also-in-this-edition-section .also-in-this-edition-con .also-in-this-edition-box .also-in-this-edition-list-con .also-in-this-edition-list-box .also-in-this-edition-list-txt {
        font-size: 14px;
        line-height: 14px;
    }
    /* Also In This Section Css End */
    /* Page Header Section Css Start */
    .page-header-section .page-header-con .page-header-bg-img {
        display: none;
    }
    .page-header-section .page-header-con .page-header-box {
        padding: 20px;
    }
    .page-header-section .page-header-con .page-header-box .page-header-txt {
        font-size: 16px;
        line-height: 26px;
    }
    /* Page Header Section Css End */
    /* Common Css End */
    /* Home Page Css Start */
    /* Illuminating Css Start */
    .illumination-section .illumination-box .illumination-detail-box {
        margin-top: 20px;
    }
    .illumination-section .illumination-four-con {
        margin-top: 0;
    }
    .illumination-section .illumination-four-con .illumination-four-box .illumination-four-card {
        padding: 20px;
    }
    /* Illuminating Css End */
    /* Welcome Message Css Start */
    .welcome-message-section {
        padding: 0 0 20px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-img-box .welcome-message-bg-img-one {
        bottom: -52px;
        width: 105px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box {
        padding: 70px 20px 20px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail {
        max-width: 100%;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-sub-title {
        font-size: 16px;
        line-height: 24px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-title {
        font-size: 48px;
        line-height: 54px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt {
        font-size: 18px;
        line-height: 26px;
    }
    .welcome-message-section .welcome-message-box .welcome-message-detail-box .welcome-message-detail .welcome-message-txt.light-txt {
        font-size: 16px;
        line-height: 24px;
    }
    /* Welcome Message Css End */
    /* Image Divider Slider Css Start */
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .img-divider-slider-title-txt {
        padding: 20px 20px 0;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-inner .carousel-item .carousel-caption {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.68%, rgba(0, 0, 0, 0.6) 67.53%, rgba(0, 0, 0, 0.8) 89.17%);
        padding: 120px 20px;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators {
        margin: 0 auto 20px;
        padding: 0 20px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
    }
    .img-divider-slider-section .img-divider-slider-con .img-divider-slider-box .carousel .carousel-indicators [data-bs-target] {
        font-size: 16px;
        line-height: 22px;
        flex: none;
    }
    /* Image Divider Slider Css End */
    /* Latest News Slider Css Start */
    .latest-news-slider-section {
        padding: 30px 20px 20px;
    }
    .latest-news-slider-section.latest-news-page-slider-section {
        padding: 30px 20px;
    }
    .latest-news-slider-section .latest-news-slider-con .latest-news-slider-box .latest-news-slick-slider .latest-news-slider .latest-news-slider-img-box .latest-news-slider-img {
        height: 460px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box {
        width: 100%;
        display: flex;
        align-items: flex-start;
        margin: 30px 0 0 !important;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box {
        justify-content: flex-start;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn {
        flex-direction: column;
        align-items: flex-start;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-two-btn .red-txt-btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .latest-news-slider-section .latest-news-slider-heading-btn-box .latest-news-slider-btn-box .latest-news-social-btn {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
    /* Latest News Slider Css End */
    /* Event Calendar Slider Css Start */
    .event-calendar-slider-section {
        padding: 30px 20px 20px;
    }
    /* Event Calendar Slider Css End */
    /* Quote Section Css Start */
    .quote-section {
        padding: 40px 20px 180px;
    }
    .quote-section .quote-bg-img-one {
        top: auto;
        bottom: 0;
        right: 0;
        width: 105px;
    }
    .quote-section .quote-con .quote-icon-box {
        text-align: center;
        margin-bottom: 30px;
    }
    .quote-section .quote-con .quote-icon-box .quote-icon {
        width: 75px;
    }
    .quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-txt,
    .quote-section .quote-con .quote-detail-box .quote-detail-txt .quote-by-txt {
        font-size: 16px;
        line-height: 26px;
    }
    /* Quote Section Css End */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section {
        padding: 40px 0;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-img-box .build-brighter-future-bg-img-one {
        left: 0px;
        bottom: -27px;
        width: 55px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box {
        padding: 40px 20px 60px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-bg-img-two {
        bottom: -20px;
        width: 110px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-title {
        font-size: 48px;
        line-height: 54px;
    }
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-detail .build-brighter-future-txt {
        font-size: 18px;
        line-height: 28px;
    }
    /* Build Brighter Future Css End */
    /* Acknowledge Section Css Start */
    .acknowledge-section {
        padding: 60px 20px;
    }
    .acknowledge-section::before {
        width: 100%;
    }
    .acknowledge-section::after {
        display: none;
    }
    /* Acknowledge Section Css End */
    /* Home Page Css End */
    /* General Page Css Start */
    /* Full Text Editor Css Start */
    .full-text-editor-section {
        padding: 20px;
    }
    /* Image and Text Side By Side Css Start */
    .image-style-align-left,
    .image-txt-side-by-side-section .general-page-editor-img-box {
        margin-bottom: 10px;
        float: none;
        margin-right: 0;
        width: 100%;
    }
    .image-style-align-right,
    .image-txt-side-by-side-section.right-side-img-box .general-page-editor-img-box {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    .image-style-align-left img,
    .image-style-align-right img {
        width: 100%;
    }
    .image-txt-side-by-side-section .general-page-editor-img-content-box p {
        text-align: left;
    }
    /* Image and Text Side By Side Css End */
    /* Full Text Editor Css End */
    /* General Page Css End */
    /* Page Module Css Start */
    /* Photo Gallery Module Css Start */
    .photo-gallery-module-section {
        padding: 20px 0 20px 20px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box {
        height: 310px;
    }
    .photo-gallery-module-section .photo-gallery-slick-slider .photo-gallery-slider .photo-gallery-img-box .photo-gallery-img {
        height: 260px;
    }
    .photo-gallery-module-section .slider-progress-bar {
        width: calc(100% - 20px);
    }
    /* Photo Gallery Module Css End */
    /* Quote Section Css Start */
    .quote-section.pull-quote-section {
        height: 630px;
    }
    .quote-section.pull-quote-section .quote-bg-img-one {
        width: 140px;
    }
    /* Quote Section Css End */
    /* Accordion Section Css Start */
    .accordion-section .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 26px;
        line-height: 30px;
    }
    .accordion-section .accordion .accordion-item .accordion-header .accordion-button::after {
        height: 40px;
        width: 40px;
    }
    .accordion-section .accordion .accordion-item .accordion-collapse .accordion-body {
        padding: 30px 0;
    }
    /* Accordion Section Css End */
    /* Image/Text Module Css Start */
    .img-txt-module-section .img-txt-module-box .img-txt-module-img-box .img-txt-module-img {
        min-height: auto;
        max-height: 700px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        padding: 20px 20px 60px;
    }
    .img-txt-module-section .img-txt-module-box .img-txt-module-detail-box .img-txt-module-detail {
        max-width: 100%;
    }
    /* Right Side Image Css Start */
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-img-box {
        order: 1;
    }
    .right-img-txt-module-section.img-txt-module-section .img-txt-module-box .img-txt-module-detail-box {
        order: 2;
        padding: 20px 20px 60px;
    }
    /* Right Side Image Css End */
    /* Image/Text Module Css End */
    /* Link Tiles Module Css Start */
    .link-tiles-section {
        padding: 30px 20px;
    }
    .link-tiles-section .link-tiles-con .grid-container {
        --cols: 1;
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item {
        height: 250px;
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item.one-row-two-column {
        flex-basis: var(--cell);
    }
    .link-tiles-section .link-tiles-con .grid-container .grid-item .link-tiles-content-box .link-tiles-title {
        font-size: 24px;
        line-height: 28px;
    }
    /* Link Tiles Module Css End */
    /* Staff Module Css Start */
    .staff-module-section {
        padding: 30px 20px;
    }
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-title {
        font-size: 18px;
        line-height: 22px;
    }
    .staff-module-section .staff-module-con .staff-module-box .staff-module-card .staff-module-content-box .staff-module-sub-title {
        font-size: 14px;
        line-height: 18px;
    }
    /* Staff Module Css End */
    /* Staff View Modal Css Start */
    .staff-view-modal .modal-lg {
        width: 100vw;
        max-width: 100vw;
    }
    .staff-view-modal .modal-lg .modal-square-bg-img {
        display: none;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con {
        padding: 20px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box {
        top: 10px;
        right: 10px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-close-icon-box .close-icon img {
        width: 40px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box {
        width: 150px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-img-box .modal-img {
        height: 150px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box {
        width: calc(100% - 150px);
        padding-left: 20px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-title {
        font-size: 22px;
        line-height: 28px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-img-title-box .modal-title-box .modal-sub-title {
        font-size: 16px;
        line-height: 24px;
    }
    .staff-view-modal .modal-content .modal-body .modal-content-con .modal-content-box .modal-detail-box {
        padding: 20px 0 0 0;
    }
    /* Staff View Modal Css End */
    /* Page Module Css End */
    /* Latest News Page Css Start */
    /* Latest News Button Css Start */
    .latest-news-btn-section {
        padding: 20px;
    }
    /* Latest News Button Css End */
    /* Latest News List Css Start */
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-img {
        height: 260px;
    }
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-sub-title {
        font-size: 12px;
        line-height: 18px;
    }
    .latest-news-list-section .latest-news-list-con .latest-news-list-box .latest-news-list-card .latest-news-list-detail-box .latest-news-title {
        font-size: 24px;
        line-height: 30px;
    }
    /* Latest News List Css End */
    /* Latest News Page Css End */
    /* Event Calendar Page Css Start */
    /* Event Calendar List Css Start */
    .event-calendar-section {
        padding: 40px 20px;
    }
    .event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box {
        margin-right: 20px;
    }
    .event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box h4 {
        font-size: 30px;
        line-height: 30px;
    }
    .event-calendar-section .event-month-year-previous-next-btn-box .event-month-year-box p {
        font-size: 18px;
        line-height: 18px;
    }
    .event-calendar-section .event-calendar-list-con {
        padding: 20px 0;
    }
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box {
        padding: 0;
    }
    .event-calendar-section .event-calendar-list-con .event-calendar-list-box .event-calendar-list-card {
        height: auto;
    }
    /* Event Calendar List Css End */
    /* Event Calendar Page Css End */
}
@media only screen and (max-width: 575px) {
    /* Home Page Css Start */
    /* Build Brighter Future Css Start */
    .build-brighter-future-section .build-brighter-future-box .build-brighter-future-detail-box .build-brighter-future-bg-img-two {
        right: -27px;
        bottom: 0px;
    }
    /* Build Brighter Future Css End */
    /* Home Page Css End */
    /* Latest News Page Css Start */
    /* Latest News Button Css Start */
    .latest-news-btn-section .latest-news-btn-con .latest-news-btn-box {
        flex-direction: column;
    }
    .latest-news-btn-section .latest-news-btn-con .latest-news-btn-box .red-txt-btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    /* Latest News Button Css End */
    /* Latest News Page Css End */
}
@media only screen and (max-width: 525px) {
    /* Common Css Start */
    /* Footer Css Start */
    .footer-section .top-to-scroll-btn {
        bottom: -5px;
    }
    /* Footer Css End */
    /* Common Css End */
}
@media only screen and (max-width: 480px) {}
@media only screen and (max-width: 400px) {}
/* For Iphone Common Css Start */
@media only screen and (max-width: 430px) and (-webkit-device-pixel-ratio: 3) {
    .banner-section .banner-con .banner-box .carousel-caption .banner-title-box {
        padding: 10px 10px 200px;
    }
    /* Page Module Css Start */
    /* Quote Section Css Start */
    .quote-section.pull-quote-section.img-pull-quote-section {
        background-attachment: initial !important;
    }
    /* Quote Section Css End */
    /* Page Module Css End */
}
/* For Iphone Common Css End */
/* For Iphone Safari Css Start */
.iphone-safari-body .banner-section .banner-con .banner-box .carousel-caption .banner-title-box {
    padding: 10px 10px 200px;
}
/* For Iphone Safari Css End */
/* For Android Css Start */
.android-body .banner-section .banner-con .banner-box .carousel-caption .banner-title-box {
    padding: 10px 10px 220px;
}
/* For Android Css End */
/* Responsive Css End */

/* Animation Css Start */
@keyframes splitCenterToLeftTransition {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes splitCenterToRightTransition {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes wipe-in-right {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInSplashScreen {
    from {
        opacity: 0;
        transform: translateY(10px); /* small slide-up */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animation Css End */