:root {
    --primaryColor: #D5BD20;
    --secondaryColor: #08395e;
    --accentColor: #F9F6B8;
    --textColor: #4D4D4F;
}


* {
    position: relative;
    z-index: 1;
}

body, html {
    font-size: 18px;
    line-height: 1.25;
    color: var(--textColor);
    font-weight: 400;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
}

.headingText {
    font-family: reckless, "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
    color: var(--secondaryColor);
}

.sectionHead {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.siteSection {
    padding: 7rem 1rem;
}

.siteHeader {
    padding: 0 1rem;
}

.siteHeader_logo_left {
    width: 7.89rem;
}

.siteHeader_logo_right {
    width: 8.89rem;
}


/*https://image.connect.isb.edu/lib/fe261174736404747c1478/m/1/d1ff95fa-ae63-4c08-93de-2f29d77f603d.jpg*/


.siteBanner {
    background-color: var(--primaryColor);
    background-image: url(https://image.connect.isb.edu/lib/fe261174736404747c1478/m/1/9572aa02-49f0-455c-81e6-79bdbe6aa541.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 1rem 10rem 1rem;
}

.siteBanner_head {
    font-size: 3.44rem;
 line-height:3.5rem;
}

.siteBanner_text {
    font-size: 1.33rem;
    padding-block: 2rem;
}

.siteBanner_text span::after,
.site_btn span::after,
.sectionHead::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 0.25rem;
    /*background: var(--primaryColor);*/
    z-index: -1;
    transform: translateY(-50%);
}

/* .sectionHead_alt::after {
    background: var(--primaryColor);
} */

.site_btn {
    font-size: 1.167rem;
    line-height: 1;
    background: var(--secondaryColor);
    border-radius: 4rem;
    padding: 0.5em 2em;
    outline: none;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
}

.site_btn:hover {
    border: 1px solid var(--secondaryColor);
    background:#000;
}

.site_btn span img {
    width: 1rem;
}

.site_btn span {
    padding-bottom: 0.2rem;
}

.iconWrap img {
    width: auto;
    height: 3rem;
}

.iconWrap h3 {
    font-size: 1.33rem;
}

.iconWrap p {
    font-size: 0.89rem;
}

.aboutSection {
    background-color: var(--secondaryColor);
    background-image: url(../assets/images/aboutBG_image.png);
    background-size: cover;
    background-position: center center;
    padding-top: 12rem;
}

.aboutSection_content {
    background: var(--primaryColor);
    padding: 3.5rem 3rem;
}

.aboutSection_content hr {
    border-color: var(--accentColor);
    opacity: 1;
}

.siteAdvantage,
.admissionSection,
.footerTop {
    background: #f1f2f2;
}

.videoWrap {
    margin-bottom: 3rem;
}

.videoWrap_info {
    background: var(--secondaryColor);
    padding: 1.5rem;
    display: inline-block;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    cursor: pointer;
}

.videoWrap_thumb {
    width: 3.67rem;
}

.videoWrap h6 {
    font-size: 1.3rem;
    padding-right: 2rem;
    line-height: 1.2;
}

.advWrap_icon {
    width: 3.33rem;
}

.advWrap_head {
    font-size: 1.167rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondaryColor);
}

.learnSection img {
    border: 1px solid var(--textColor);
}

.learnSection h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.learnSection .accordion-item {
    border-inline: none;
    border-radius: 0;
    border-color: var(--textColor);
}

.learnSection .accordion-button {
    outline: none;
    box-shadow: none;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    padding: 2rem 0 1rem; 
    color: var(--textColor);
    transition: all 0.3s ease-in-out;
}

.learnSection .accordion-button::after {
    position: absolute;
    right: 0;
    top: 2.5rem;
    background: var(--textColor);
    width: 1.1rem;
    height: 1px;
    transform-origin: center center;
    transform: rotate(180deg) scale(0);
    transition: all 0.3s ease-in-out;
}

.learnSection .accordion-button::before {
    position: absolute;
    content: "";
    right: 0;
    top: 2.5rem;
    background: var(--textColor);
    width: 1.1rem;
    height: 1px;
    transform-origin: center center;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.learnSection .accordion-button.collapsed::after {
    transform: rotate(0deg) scale(1);
}

.learnSection .accordion-button.collapsed::before {
    transform: rotate(-90deg);
}

.learnSection .accordion-button.collapsed {
    padding: 2rem 0;
}

.learnSection .accordion-body {
    padding-inline: 0;
    padding-block: 1rem 2rem;
}

.actionSection {
    background: var(--primaryColor);
}

.actionWrap {
    height: 25rem;
    background: var(--textColor);
    overflow: hidden;
}

.actionWrap_img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.actionWrap::after {
    position: absolute;
    z-index: 2;
    content: "";
    inset: 0;
    background: linear-gradient( #0000 60%, #000E );
    mix-blend-mode: multiply;
}

.actionWrap h3 {
    position: absolute;
    z-index: 3;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-block;
    font-size: 1.167rem;
}

.actionWrap_info {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    padding: 1.75rem;
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
}

.actionWrap:hover .actionWrap_info {
    transform: translateY(0);
}

.actionWrap_info h3 {
    position: static;
}

.actionWrap_info p {
    font-size: 0.95rem;
}

.applySection h4 {
    color: var(--secondaryColor);
    font-size: 1.167rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0.2rem;
}

.applySection img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.optionsWrap {
    gap: 3rem;
}

.admissionWrap {
    background-color: var(--secondaryColor);
    width: 6rem;
    height: 21.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.7s ease-in-out, background-color 0.5s 0.7s ease-in-out ;
}

.admissionWrap.open {
    background-color: white;
    width: calc( 100% - 9rem );
    padding: 0.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: auto;
}

.admissionWrap h5 {
    font-size: 1.16rem;
    color: var(--secondaryColor);
    margin-bottom: 1.25rem;
    font-weight: bold;
}

.admissionWrap .aw_placeholder {
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    left: 3rem;
    top: 50%;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    transform-origin: center center;
    transform: translateY(-50%) translateX(-50%) rotate(-90deg);
    transition: all 0.5s ease-in-out;
}

.admissionWrap.open .aw_placeholder {
    transform: translateY(-50%) translateX(-150%) rotate(-90deg);
}

.admissionWrap .aw_info {
    transform: translateY(10rem);
    opacity: 0;
    pointer-events: none;
    padding-inline: 1rem;
}

.admissionWrap.open .aw_info {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    transition: all 0.7s 0.5s ease-in-out;
}

.scholarSection {
    background-image: url(../assets/images/scholarBG.jpg);
    background-color: var(--textColor);
    background-position: center center;
    background-size: cover;
    padding-top: 20rem;
}

.sw-right {
    background: var(--accentColor);
    height: 100%
}

.sw-left {
    background: var(--secondaryColor);
    height: 100%;
    padding: 2rem;
}

.sw-left h6 {
    font-weight: 700;
}

.sw-left * {
    color: white;
}

.sw-left::after {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-0.75rem, -50%);
    width: 1px;
    height: calc( 100% - 4rem );
    background: var(--accentColor);
    content: "";
}

.sw-right h2 {
    font-family: reckless, "Inter", sans-serif;
    font-size: 4.44rem;
    font-weight: 400;
    color: var(--secondaryColor);
}

.sw-right h4 {
    font-family:reckless, "Inter", sans-serif;
    font-size: 2.11rem;
    font-weight: 400;
    color: var(--secondaryColor);
}

.footerTop {
    padding-block: 4rem;
}

.footerTop img {
    width: auto;
    height: 3rem;
}

.footerTop h6 {
    border-bottom: 1px dotted black;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    line-height: 1;
    font-size: 1rem;
}

.siteFoter_l1 {
    background: var(--primaryColor);
    padding-block: 4rem;
}

.footerLogo {
    width: 6.66rem;
    margin-bottom: 1.5rem;
}

.siteFooter h6 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.siteFooter h2 {
    font-size: 1.16rem;
    line-height: 1;
    color: white;
}

.social_icons {
    gap: 4rem;
}

.social_icon {
    width: 1.78rem;
}

.siteFooter_l2 p {
    font-size: 0.55rem;
}

.site_fab {
    position: fixed;
    left: 0;
    top: 65%;
    background: var(--secondaryColor);
    z-index: 99;
    padding: 1rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transform: translateX(-150%);
    box-shadow: rgba(3, 35, 139, 0.35) 0px 5px 15px;
    transition: transform 0.5s ease-in-out;
}

.site_fab.show {
    transform: translateX(0);
}

.site+fab h6 {
    line-height: 1.1rem;
    font-size: 1rem;
}

.site_fab img {
    width: 1.3rem;
}

.modal-dialog {
    max-width: 90%;
    width: 1150px;
}

.modal-content {
    background: #F1F2F2;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.modal-title {
    font-size: 1.6rem;
}

.form-image {
    object-fit: cover;
    object-position: center center;
    border: 1px solid var(--secondaryColor);
}

.form-control {
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--primaryColor);
    border-radius: 0;
    padding-inline: 0;
    font-size: 0.75rem;
    appearance: none;
    background: transparent !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
    appearance: textfield;
  -moz-appearance: textfield;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
    border-color: var(--textColor);
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--textColor);
    opacity: 1;
}
  
.form-control::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--textColor);
}

select.form-control {
    background-color: transparent;
    background-image: url(../assets/icons/select.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 12px auto;
}

.modal-backdrop {
    background: #fff;
}

.modal-backdrop.show {
    opacity: 0.85;
}

.form-check-label {
    font-size: 0.7rem;
}

.form-check-input {
    border: 1px solid var(--textColor);
}

.modal-body,
.modal-header {
    border: none;
}

.modal-body {
    padding-top: 0;
}

.modal-header {
    padding-bottom: 0;
}

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

  .siteBanner_text{ width: 100% !important; }
  .siteBanner_head{ font-size: 1.44rem;line-height: 2.0rem; }
  .timeline{ padding:0px;}
  .siteBanner{padding: 3rem 0rem 10rem 0rem;}
  
}