.toptobottomfixed {
    display: flex;
    align-items: center;
    justify-content: center;
}
.toptobottom {
    border: 2px solid #faf6f5;
    color: #faf6f5;
}
.toptobottom:before {
    background: #faf6f5;
}
body {
    background: #faf6f5;
}

.banner_main {
    height: auto;
}

.banner_main .bannerslider .item img {
    height: 85vh;
}

.banner_main .bannerslider {
    height: 85vh;
    z-index: unset;
}

.cards-row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 45px 0;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.info-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
}

.blue::after {
    background: var(--blue);
}

.green::after {
    background: var(--green);
}

.orange::after {
    background: var(--yellow);
}

.purple::after {
    background: #7c4ab0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue .icon-circle {
    background: var(--blue);
}

.green .icon-circle {
    background: var(--green);
}

.orange .icon-circle {
    background: var(--yellow);
}

.purple .icon-circle {
    background: #7c4ab0;
}

.icon-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.info-card h3 {
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    margin: 0;
}

.blue h3 {
    color: var(--blue);
}

.green h3 {
    color: var(--green);
}

.orange h3 {
    color: var(--yellow);
}

.purple h3 {
    color: #7c4ab0;
}

.banner_overlay {
    width: 100%;
    height: 85vh;
    background: linear-gradient( to top right, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0.25) 65% );
    position: absolute;
    top: 0;
    left: 0;
}


.banner_overlay_heading a img {
    width: 16px;
    filter: brightness(0) invert(1);
    margin-bottom: -2px;
}

.banner_overlay_heading {
    width: auto;
    height: calc(85vh - 50px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    grid-gap: 24px;
    margin-top: 50px;
}

.banner_overlay_heading span {
    display: block;
    color: var(--textcolorwhite);
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 700;
    letter-spacing: .5px;
}

.banner_overlay_heading span:nth-child(2) {
    color: var(--yellow);
}

.banner_overlay_heading p {
    color: var(--textcolorwhite);
    font-size: 18px;
    letter-spacing: .5px;
    font-weight: 500;
    margin-bottom: 0;
}

.DiscoverMore_botton {
    margin-top: 12px;
}

.DiscoverMore_botton a {
    display: inline-block;
    position: relative;
    background: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    height: 44px;
}

.DiscoverMore_botton a span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 18px;
    position: relative;
    font-weight: 500;
    color: var(--textcolorwhite);
    letter-spacing: .5px;
    line-height: 1.1em;
}

.DiscoverMore_botton a img {
    width: 16px;
    filter: brightness(0) invert(1);
}

.DiscoverMore_botton a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: var(--green);
    transition: 0.4s;
}

/* Bottom Border */
.DiscoverMore_botton a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--green);
    transition: 0.4s;
}

/* Left Border */
.DiscoverMore_botton a span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--green);
    transition: 0.4s;
}

/* Right Border */
.DiscoverMore_botton a span:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background: var(--green);
    transition: 0.4s;
}

/* Hover Animation */
.DiscoverMore_botton a:hover:before,
.DiscoverMore_botton a:hover:after {
    width: 100%;
}

.DiscoverMore_botton a:hover span:before,
.DiscoverMore_botton a:hover span:after {
    height: 100%;
}

/* About Us Section */
section.aboutus_newsection {
    padding: 45px 0;
    background: #fafafa;
}

.aboutus_heading {
    width: 100%;
    margin-bottom: 24px;
}

.aboutus_heading .section_tag {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

section.aboutus_newsection .section_tag {
    font-size: 18px;
}

.aboutus_heading .section_tag::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--yellow);
}

.aboutus_heading h2 {
    margin: 0;
    color: var(--blue);
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 700;
}

.aboutus_heading .bottom_border {
    width: 100px;
    height: 3px;
    background: var(--yellow);
    margin-top: 24px;
}

/*new css*/
.vm-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.vm-card:last-child {
    margin: 0;
}

.vm-icon {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon i {
    font-size: 42px;
}

.vm-icon.vision {
    background: #f2f5fb;
}

.vm-icon.vision i {
    color: var(--blue);
}

.vm-icon.mission {
    background: #fbf5e9;
}

.vm-icon.mission i {
    color: var(--yellow);
}

.vm-content {
    flex: 1;
    margin-left: 28px;
    padding-left: 28px;
    border-left: 2px solid #e5e5e5;
}

.vm-title {
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.vm-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 36px;
    height: 3px;
}

.vm-title.vision {
    color: var(--blue);
}

.vm-title.vision:after {
    background: var(--blue);
}

.vm-title.mission {
    color: var(--yellow);
}

.vm-title.mission:after {
    background: var(--yellow);
}

.vm-content p {
    font-size: 18px;
    letter-spacing: .5px;
    font-weight: 400;
    margin-bottom: 0;
}

.vm-quote {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 100px;
    color: #ececec;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.aboutus_partition {
    display: grid;
    gap: 21px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 35px 0 0;
}

.aboutus_partition_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 12px;
}

.aboutus_partition_box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
}

.aboutus_partition_box img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 18px;
    opacity: 0.8;
}

.aboutus_partition_box h2 {
    color: var(--blue);
    height: 48px;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.aboutus_partition_box p {
    font-size: 18px;
    letter-spacing: .5px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

/*Our Affiliations*/

section.Our_Affiliations {
    padding: 45px 0;
    background: var(--blue);
}

section.Our_Affiliations .section_tag::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--yellow);
}

section.Our_Affiliations .section_tag {
    justify-content: center;
}

section.Our_Affiliations .aboutus_heading h2 {
    color: var(--textcolorwhite);
    text-align: center;
}

.Our_Affiliations_main {
    padding: 0;
}

.Our_Affiliations_maintop {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.Our_Affiliations_maintop_box {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
}

.Our_Affiliations_mainbottom {
    padding: 24px 0;
    background: #fff;
    border-radius: 12px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.Our_Affiliations_maintop_boxtop {
    display: grid;
    gap: 20px;
    grid-template-columns: 125px 1fr;
}

.Our_Affiliations_maintop_boxtop img {
    width: 100%;
}

section.Our_Affiliations .vm-title.mission {
    color: var(--blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

section.Our_Affiliations .vm-title.mission:after {
    color: var(--blue);
    display: none;
}

.Our_Affiliations_maintop_box {
}

.Our_Affiliations_maintop_box ul {
    padding: 0 0 0 26px;
    margin: 0;
}

.Our_Affiliations_maintop_box ul li {
    list-style: none;
    position: relative;
    margin-bottom:5px;
}
.Our_Affiliations_maintop_box ul li:last-child {
    margin-bottom:0;
}

i.fa-solid.fa-check {
    position: absolute;
    left: -26px;
    font-size: 10px;
    color: var(--yellow);
    width: 18px;
    height: 18px;
    border: 1px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    padding-top: 2px;
}

section.Our_Affiliations .aboutus_partition_box img {
    margin: 0;
    width: 55px;
    height: 55px;
}

section.Our_Affiliations .aboutus_partition_box {
    flex-direction: row;
    grid-gap: 16px;
    padding: 0 24px;
}

section.Our_Affiliations .aboutus_partition_box p {
    text-align: left;
}

section.Our_Affiliations .aboutus_partition_box h2 {
    height: auto;
    font-size: 18px;
    text-align: left;
    margin-bottom: 8px;
}


/*In The News*/

section.inthenews_section {
    padding: 45px 0;
    background: #fafafa;
}

section.inthenews_section h2 {
    text-align: center;
}

.inthemews_slider {
    padding: 0;
}

.SCIS_Career_Events_box1 {
    background: var(--textcolorwhite);
    height: 100%;
    border: 1px solid #ced4da;
    padding: 12px;
    border-radius: 10px;
}

.SCIS_Career_Events_box1 div {
    border-radius: 5px;
}

.SCIS_Career_Events_box1 div a div {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.SCIS_Career_Events_box1 a img {
    border-radius: 7px;
    background: #f1f1f1;
}

.SCIS_Career_Events_box1 .gridbox:hover img {
    transform: scale(1.05);
}

.SCIS_Career_Events_box1 span {
    color: var(--blue);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    display: block;
    letter-spacing: .5px;
    text-align: left;
}

.news_date_button {
    display: inline-block;
    text-align: center;
    background: var(--blue);
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border: 1px solid var(--blue);
    color: var(--textcolorwhite);
    font-size: 12px;
    margin-top: 8px;
    border-radius: 0 !important;
}

.inthenews_carousel {
    position: relative;
}

.inthemews_slider .owl-nav {
    margin: 0;
}

.inthemews_slider button.owl-prev, .inthemews_slider button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    width: 28px;
    height: 36px;
    background: #f1f1f1 !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    border: 1px solid #f1f1f1;
}

.inthemews_slider button.owl-prev:hover, .inthemews_slider button.owl-next:hover {
    border: 1px solid var(--blue);
    background: var(--textcolorwhite) !important;
}

.inthemews_slider button.owl-prev {
    left: -48px;
}

.inthemews_slider button.owl-next {
    right: -48px;
}

.inthemews_slider button.owl-prev i, .inthemews_slider button.owl-next i {
    color: var(--blue);
    transition: .3s;
}

.inthemews_slider button.owl-prev i, .inthemews_slider button.owl-next i {
    color: var(--blue);
}

/*Insfrastructure, Cocurricular and Campus*/
.Insfrastructure_section {
    padding: 45px 0;
    background: var(--yellow);
}

.Insfrastructure_sectionboxs {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    padding:0;
}

.Insfrastructure_sectionbox {
    background: #fff;
    border-radius: 12px;
    position: relative;
    padding: 12px;
}

.Insfrastructure_sectionbox_img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.Insfrastructure_sectionbox_logo {
    width: 80px;
    height: 80px;
    background: var(--blue);
    border: 6px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.Insfrastructure_sectionbox_logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.Insfrastructure_sectionbox h2 {
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
}

.Insfrastructure_sectionbox p {
    font-size: 18px;
    letter-spacing: .5px;
    font-weight: 400;
    text-align: center;
}

.Insfrastructure_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.Insfrastructure_button a {
    background: var(--blue);
    color: var(--textcolorwhite);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all ease 500ms;
    border: 1px solid var(--blue);
    font-weight: 500;
}

.Insfrastructure_button a:hover {
    color: var(--blue);
    transition: all ease 500ms;
    background: transparent;
}

.Insfrastructure_button img {
    width: 16px;
    filter: brightness(0) invert(1);
    transition: all ease 500ms;
}

.Insfrastructure_button a:hover img {
    filter: invert(18%) sepia(96%) saturate(1900%) hue-rotate(205deg) brightness(90%) contrast(95%);
    transition: all ease 500ms;
}

/*Our Success Stories*/
.ourseccessstories_section {
    padding: 45px 0;
    background: #fafafa;
}

section.ourseccessstories_section h2 {
    text-align: center;
}

.SCIS_gallery_box {
    background: var(--textcolorwhite);
    height: 636px;
    border: 1px solid #ced4da;
    padding: 12px;
    border-radius: 10px;
    position: relative;
    margin-right:1px;
}

.SCIS_gallery_bo_image {
    margin-bottom: 15px;
    overflow: hidden;
}

.SCIS_gallery_bo_image img {
    border-radius: 7px;
    width: 100%;
}

.SCIS_gallery_box span {
    color: var(--blue);
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-align: left;
    display: block;
    letter-spacing: .5px;
}

span.SCIS_gallery_box_grade {
    color: var(--textcolorblack);
    font-size: 16px;
    letter-spacing: 1px;
    line-height: normal;
    font-weight: 600;
    margin-top: 10px;
}

.SCIS_gallery_box p {
    margin-top: 10px;
    text-align: left;
    color: var(--innertextcolor);
    font-size: 18px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
    word-wrap: break-word;
}

a.know_morw {
    color: var(--green);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    display: block;
    letter-spacing: .5px;
    transition: .3s;
    position: absolute;
    bottom: 12px;
    left: 12px;
}

a.know_morw svg {
    width: 18px;
}

a.know_morw svg path {
    stroke: var(--green);
    transition: .3s;
}

a.know_morw:hover {
    color: var(--yellow);
    transition: .3s;
}

a.know_morw:hover svg path {
    stroke: var(--yellow);
    transition: .3s;
}

/*supporters*/
section.supporters {
    padding: 45px 0;
    background: var(--yellow);
}

section.supporters h2 {
    color: var(--textcolorwhite);
    text-align: center;
}
.supportersslider .item {
    flex-direction: column;
    height: auto;
    margin-bottom: 12px;
    align-items: flex-end;
    margin-right: 25px;
}
.supportersslider_text {
    color: var(--blue);
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    position: relative;
}
.supportersslider_text:before {
    content: '';
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--green);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.supportersslider_img {
    width: 250px;
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 50%;
    box-shadow: 3px -3px 10px -3px var(--green);
}
.supportersslider .item img {
    width: 100% !important;
}
.supportersslider .owl-stage-outer {
    padding-top: 12px;
}
.supportersslider_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 16px;
}
.supportersslider_line img {
    margin-top: -25px !important;
}
.supportersslider .item .supportersslider_box .supportersslider_line img, .supportersslider .item .supportersslider_box1 img {
    filter: grayscale(0) !important;
}
/*Voices of Our Community*/
.VoicesofOurCommunity_slider {
    padding: 0;
}
section.VoicesofOurCommunity {
    padding: 45px 0;
    background: #fafafa;
}

.supportersslider1 {
    padding: 0;
}

.supportersslider1 .owl-stage {
    display: flex;
    display: -webkit-flex;
}

.supportersslider1 .owl-item {
    display: flex;
    display: -webkit-flex;
    flex: 1 0 auto;
}

.supportersslider1 .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(-135deg, var(--bs-cyan), var(--blue));
    margin-top: 80px;
    border-radius: 12px;
}

.Voices_Community_testimonials {
    padding: 60px 15px 15px;
    display: flex;
    flex-direction: column;
    grid-gap: 25px;
    position: relative;
}

.Voices_Community_testimonials div {
    text-align: center;
}

.Voices_Community_testimonials_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    grid-gap: 8px;
}

.Voices_Community_testimonials_top h2 {
    color: var(--textcolorwhite);
    letter-spacing: 1px;
    font-size: 22px;
    line-height: normal;
    margin-bottom: 0;
    font-weight: 600;
}

.Voices_Community_testimonials_top img {
    width: 100px !important;
}

.Voices_Community_testimonials_paragraph {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.Voices_Community_testimonials p {
    text-align: center;
    font-size: 16px;
    color: var(--textcolorwhite);
    font-weight: 500;
    margin-bottom: 0;
}

.Voices_Community_testimonials span {
    padding: 3px 12px 5px;
    border: 1px solid var(--textcolorwhite);
    border-radius: 5px;
    color: var(--textcolorwhite);
    font-size: 14px;
    margin-top: 12px;
    display: inline-block;
    cursor: pointer;
}

.testimonials_profile_img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--yellow);
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials_profile_img img {
    width: 100%;
}

.testimonials_popup .modal-content {
    background: var(--textcolorwhite);
    border: 2px solid var(--blue);
    border-radius: 12px;
    position: relative;
    padding: 15px 8px 15px 15px;
}

.testimonials_popupclose {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--textcolorwhite);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--yellow);
    cursor: pointer;
}

.testimonials_popupclose i {
    color: var(--yellow);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Voices_Community_testimonials_popup1 {
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0 7px 0 0;
    border-radius: 12px;
}

.Voices_Community_testimonials_popup1 .Voices_Community_testimonials {
    margin-top: 80px;
    background-image: linear-gradient(-135deg, var(--bs-cyan), var(--blue));
    border-radius: 12px;
}

.Voices_Community_testimonials_popup1::-webkit-scrollbar {
    width: 5px;
}

.Voices_Community_testimonials_popup1::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.Voices_Community_testimonials_popup1::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--bs-cyan), var(--blue));
    border-radius: 10px;
}

.Voices_Community_testimonials_popup p {
    margin-bottom: 12px;
}

.Voices_Community_testimonials_popup p:last-child {
    margin: 0;
}

.supportersslider1 button.owl-prev {
    position: absolute;
    top: 50%;
    left: -48px;
    transform: translateY(-50%);
    background: linear-gradient(-135deg, var(--bs-cyan), var(--blue)) !important;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.supportersslider1 button.owl-prev i {
    color: var(--textcolorwhite);
    font-size: 20px;
}

.supportersslider1 button.owl-next {
    position: absolute;
    top: 50%;
    right: -48px;
    transform: translateY(-50%);
    background: linear-gradient(-135deg, var(--bs-cyan), var(--blue)) !important;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.supportersslider1 button.owl-next i {
    color: var(--textcolorwhite);
    font-size: 20px;
}

.supportersslider1 .owl-dots {
    margin-top: 20px !important;
}

.supportersslider1 button.owl-dot.active span, .inthenews_carousel button.owl-dot.active span, .inthenews_carousel1 button.owl-dot.active span {
    background: linear-gradient(-135deg, #0dcaf0, var(--blue)) !important;
    margin: 0;
}

.supportersslider1 button.owl-dot span, .inthenews_carousel button.owl-dot span, .inthenews_carousel1 button.owl-dot span {
    background: rgb(0 0 0 / 25%) !important;
    margin: 0 !important;
}

.supportersslider1 .owl-dots, .inthenews_carousel .owl-dots, .inthenews_carousel1 .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}

.allboxes_section p a, .allboxes_section li a {
    color: var(--blue);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    transition: all ease 500ms;
}

.allboxes_section p a:hover, .allboxes_section li a:hover {
    color: var(--yellow);
    transition: all ease 500ms;
}
@media screen and (max-width:1390px) {    
    .auto-container {
        max-width: 1260px;
    }
}
@media screen and (max-width:1290px) {
    section, .cards-row {
        padding: 45px 15px !important;
    }
    section.banner_main {
        padding: 0 !important;
    }
    .SCIS_gallery_box {
        height: 815px;
    }
    .cards-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }
    section.Our_Affiliations .aboutus_partition_box p br {
        display: none;
    }
    .Our_Affiliations_mainbottom {
        padding: 24px 8px;
    }
    section.Our_Affiliations .aboutus_partition_box {
        padding: 0 16px;
    }
    .Our_Affiliations_mainbottom {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }
    .aboutus_partition_box:nth-child(2):after {
        content: unset !important;
    }
}
@media screen and (max-width:1180px) {
    
    .SCIS_gallery_box {
        height: 710px;
    }
}
@media screen and (max-width:1091px) {
    section.aboutus_newsection .col-md-6 {
        width: 100%;
    }
    .aboutus_partition {
        margin-bottom: 24px;
    }
    .Our_Affiliations_maintop {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }
    section.Our_Affiliations .aboutus_partition_box {
        padding: 0 16px;
        align-items: flex-start;
    }
    .SCIS_gallery_box {
        height: 630px;
    }
}
@media screen and (max-width:767px) {
   
    section.Our_Affiliations .aboutus_partition_box {
        align-items: flex-start;
    }
    .Insfrastructure_sectionboxs {
        grid-template-columns: 1fr;
    }
    .SCIS_gallery_box {
        height: auto;
        padding-bottom: 30px;
    }

    .supportersslider_img {
        width: 180px;
        height: 180px;
        padding: 16px;
    }

    .supportersslider_line {
        display: none;
    }
}
@media screen and (max-width:645px) {
    section.Our_Affiliations .aboutus_partition_box {
        padding: 0 4px;
    }
    .Our_Affiliations_maintop_box {
        padding: 12px;
    }
    .Our_Affiliations_mainbottom {
        padding: 12px 8px;
    }
    .banner_overlay {
        width: 100%;
        height: 400px;
        background: linear-gradient(to top right, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0.25) 65%);
        position: absolute;
        top: 0;
        left: 0;
    }
    .banner_main .bannerslider .item img {
        height: 400px;
    }
    .banner_overlay_heading {
        grid-gap: 16px;
        height: calc(450px - 50px);
    }
    .banner_main .bannerslider {
        height: 400px;
    }
    .banner_overlay_heading span {
        font-size: 28px;
        line-height: 36px;
    }
    .banner_overlay_heading p {
        font-weight: 400;
        line-height: 24px;
    }
    .aboutus_heading h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .aboutus_heading .section_tag {
        margin-bottom: 12px;
    }
    .aboutus_heading .bottom_border {
        margin-top: 12px;
    }
    .cards-row {
        grid-template-columns: 1fr;
    }
    .aboutus_partition {
        grid-template-columns: 1fr 1fr;
    }
    .aboutus_partition_box:nth-child(1) h2, .aboutus_partition_box:nth-child(2) h2 {
        height:auto;
    }
    .aboutus_partition_box:nth-child(2)::after {
        content: unset;
    }
    .vm-content {
        margin: 0;
        padding: 0;
        border: 0;
    }
    .vm-card {
        flex-direction: column;
        box-shadow:unset;
    }
    .vm-title.vision, .vm-title.mission {
        text-align: center;
        margin-top: 16px;
    }
    .vm-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .vm-content p {
        text-align: center;
    }
    .Our_Affiliations_maintop_boxtop {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
        .Our_Affiliations_maintop_boxtop img {
            width: 125px;
        }
        .Our_Affiliations_maintop_boxtop .vm-title.mission {
            text-align: left;
        }
        .Our_Affiliations_maintop_boxtop div {
            width: 100%;
        }
    .Our_Affiliations_mainbottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .aboutus_partition_box:not(:last-child)::after {
        top: unset;
        right: unset;
        left: 50%;
        bottom: -16px;
        transform: translateX(-50%);
        width: 90%;
        height: 1px;
    }
    .aboutus_partition_box:nth-child(2):after {
        content: '' !important;
    }
    .aboutus_partition_box:nth-child(3)::after {
        content: unset;
    }
    .aboutus_partition {
        gap: 32px;
    }
    .vm-card { 
        padding:12px;
    }
    .Voices_Community_testimonials {
        padding: 60px 12px 12px;
        display: flex;
        flex-direction: column;
        grid-gap: 25px;
        position: relative;
    }
    .info-card {
        padding: 12px;
    }
    .toptobottomfixed {
        display: none;
    }
}