/* General Styles */
.tabsOutterWrapper {
    padding-left: 195px;
    padding-right: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elementor.elementor-21057, .elementor.elementor-21619 {
    width: 100%;
}

.elementor.elementor-21060, .elementor.elementor-21622 {
    width: 100vw;
}

.site-footer {
    padding: 0 !important;
}

/* Header Widget */
.header-widget {
    position: relative;
    /* Ensure the pseudo-element is positioned relative to this container */
    padding: clamp(20px,5.8vw,84px) clamp(20px,5.83vw,80px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Ensure content is above the overlay */
}

.header-widget::before {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 20, 80, 0.8);
    /* Black overlay with 20% opacity */
    z-index: -1;
    /* Place the overlay behind the content */
}

.header-widget .header-widget-title {
    position: relative;
    /* Ensure the title is above the overlay */
    font-family: Karla;
    font-weight: 800;
    font-size: clamp(36px,3.4vw,50px);
    line-height: 56px;
    letter-spacing: -0.5px;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
    border-left: 12px solid #3EDBFE;
    padding-left: 22px;
}

/* Header Widget Ends */

/* Staff Widget */
h2.staffHeading {
    color: #403393 !important;
    font-family: 'Karla', sans-serif !important;
    font-size: 36px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: 40px !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.staff-member {
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

.staff-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Aspect ratio square */
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.email-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #403393;
    padding: 12px 12px;
    border-radius: 50%;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.email-link:hover {}

.staff-member .staff-name {
    color: #1F1450;
    text-align: center;
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;
    text-transform: capitalize;
}

.staff-member .staff-job-title {
    color: #403393;
    text-align: center;
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: capitalize;
}

/* Staff Widget Ends */

/* Calender Widget */

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 120px 0px;
}

.calendar-wrapper {
    max-width: 1200px;
    /* Only for this Codepen */
    width: 100%;
}

.calendarItem {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
    gap: 20px;
}

.calendarItem:nth-child(odd) .calendarDate {
    background-color: var(--Dark-purple, #1f1450);
}

.calendarDate {
    padding: 14px 26px;
    background-color: #403393;
    color: #fff;
    font-family: "Karla", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 120px;
    width: 100%;
    max-height: 100px;
    position: relative;
}

.calendarDate:after {
    content: "";
    width: 20px;
    background-color: #e3e3e3;
    height: 1px;
    position: absolute;
    right: -20px;
}

.calendarDate h1 {
    margin-bottom: 4px;
    margin-top: 0px;
    font-size: 40px !important;
    line-height: 44px !important;
}

.calendarDate p {
    margin-top: 0px;
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 14px;
}

.calendarInfo {
    width: 100%;
    display: flex;
    padding: 25px 32px 26px 32px;
    justify-content: space-between;
    align-items: center;
    gap: 83px;
    border: 1px solid #e3e3e3;
    max-height: 100px;
}

.calendarText {
    max-width: 650px;
    width: 100%;
}

.calendarText .bottomText {
    padding-top: 6px;
    display: flex;
    gap: 20px;
}

.calendarText .bottomText p {
    display: flex;
    justify-content: center;
    margin: 0px;
    color: var(--Dark-purple, #1f1450);
    font-family: "Karla", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 0.5px;
}

.calendarText .bottomText span {
    margin-right: 5px;
    display: flex;
    align-items: center;
}

.calendarText .topText p {
    margin: 0px;
    color: #1f1450;
    font-family: "Karla", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.calendarLink a {
    color: #5c97ff;
    text-align: right;
    font-family: "Karla", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
}

.calendarLink a:hover {
    text-decoration: underline;
}

/* Mobile Styles */

@media (max-width: 1440px) {
    .tabsOutterWrapper {
        padding-left: clamp(10px, 3.4vw, 50px);
        padding-right: clamp(10px, 3.4vw, 50px);
    }

    .calendarItem {
        align-items: center;
    }

    .calendarInfo {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        max-height: unset;
    }

    .calendarText {
        display: flex;
        flex-direction: column;
    }

    .bottomText {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Calender Widget Ends   */

/* Text Accordion Widget */
.dropdown {
    width: 100%;
    margin: 1px auto;
    overflow: hidden;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #1f1450;
    color: #fff;
    cursor: pointer;
}

.dropdown-header:hover .chevron > svg > path {
    fill-opacity: 1;
}

.dropdown > .dropdown-header > h2 {
    margin: 0px;
    color: #fff;
    font-family: "Karla", sans-serif;
    font-size: clamp(24px,2.5vw,36px);
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}


.dropdown-content {
    display: none;
    margin-top: 20px;
    padding: 40px 80px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: "Karla", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.5px;
}

.dropdown-content ul {
    list-style: none;
    padding-top: 20px;
}

.dropdown-content ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

/*
    Add Check Mark Icon to the List Item

  .dropdown-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
    width: 16px; 
    height: 16px; 
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="11" viewBox="0 0 13 11" fill="none"><path d="M11.0986 1.95728L11.9141 2.74731L12.2852 3.10669L11.9141 3.46606L5.84473 9.34302L5.49707 9.67896L5.14941 9.34302L1.88574 6.18286L1.51465 5.82349L1.88574 5.46411L2.70117 4.67407L3.0498 4.33716L3.39746 4.67407L5.49707 6.70728L10.4033 1.95728L10.751 1.62036L11.0986 1.95728Z" fill="%23403393" stroke="%23403393"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
  } */

/* Text Accordion Widget Ends */

/* Link Accordion Widget  */

.dropdown {
    width: 100%;
    margin: 1px auto;
    overflow: hidden;
}

.dropdown.linkList {
    width: calc(100% + 160px);
    margin-left: -80px;
    margin-right: -80px;
}

.linkList .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #403393;
    color: #fff;
    cursor: pointer;
}

.linkList .dropdown-header h2 {
    color: #fff;
    font-family: "Karla", sans-serif;
    font-size: clamp(18px,1.5vw,22px);
    font-style: normal;
    font-weight: 800;
    line-height: 10px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin: 0;
}

.linkList .dropdown-header h2 span {
    margin-right: 10px;
}

.linkList .dropdown-header .chevron {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.linkList .dropdown-header .chevron.up {
    transform: rotate(360deg) !important;
}

.linkList .dropdown-content {
    display: none;
    margin-top: 0px;
    padding: 0px 0px;
    background-color: #fff;
    border: none;
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: "Karla", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.5px;
}

.linkList .dropdown-content ul {
    list-style: none;
    margin: 0px;
    padding-left: 0px;
    padding-top: 0px;
}

.linkList .dropdown-content ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 22px 30px;
    border: 1px solid var(--Light-grey, #e3e3e3);
    background-color: #fff;
}

.linkList .dropdown-content ul li:nth-child(even) {
    background-color: rgba(64, 51, 147, 0.03);
}

.linkList .dropdown-content ul li span {
    margin-right: 16px;
}

.linkList .dropdown-content ul li a {
    display: flex;
    text-decoration: none;
    color: var(--Periwinkle, #5c97ff);
    font-family: "Karla", sans-serif;
    font-size: clamp(16px,1.25vw,18px);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    align-content: center;
    align-items: center;
}

.dropdown[data-open="true"] .dropdown-content {
    display: block;
}

.dropdown .dropdown-header .chevron {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.dropdown .dropdown-header .chevron.up {
    transform: rotate(360deg);
}

/* .dropdown[data-open="true"] .dropdown-header .chevron {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
} */

/* Link Accordion Widget Ends */

/* Text Editor Widget */

.customTextArea {
    width: 100%;
    margin: 1px auto;
    overflow: hidden;
    padding: 40px clamp(10px,5.5vw,80px);
    background: var(--Purple-fade, rgba(64, 51, 147, 0.03));
}

.customTextArea p, .customTextArea li {
    color: #000;
    font-family: 'Karla', sans-serif;
    font-size: clamp(16px,1.25vw,18px);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.customTextAreaWrapper .customTextArea h3 {
    color: #403393;
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.customTextArea ul,
.dropdown-content ul {
    list-style: none;
    padding-top: 20px;
    padding-left: 0px;
}

.customTextArea ul li,
.dropdown-content ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.customTextArea ul li::before,
.dropdown .dropdown-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="11" viewBox="0 0 13 11" fill="none"><path d="M11.0986 1.95728L11.9141 2.74731L12.2852 3.10669L11.9141 3.46606L5.84473 9.34302L5.49707 9.67896L5.14941 9.34302L1.88574 6.18286L1.51465 5.82349L1.88574 5.46411L2.70117 4.67407L3.0498 4.33716L3.39746 4.67407L5.49707 6.70728L10.4033 1.95728L10.751 1.62036L11.0986 1.95728Z" fill="%23403393" stroke="%23403393"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.linkList .dropdown-content ul li:before {
    display: none;
}

/* Text Editor Widget Ends */
