/* Button CSs */
.talkBtnBox {
    margin-top: 2.5rem;
}
.lightPrimaryBtn {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border: 0;
    position: relative;
}
.lightPrimaryBtn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #23915a;
    border-radius: 4px;
}
.lightPrimaryBtn span {
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Firefox */
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}
.oppurtunityBlock {
    font-family: "Inter", sans-serif;
}
.basicPrimaryBtn {
    background-color: #ffffff;
    border: 1px solid #23915a;
    color: #23915a;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}
.basicPrimaryBtn img {
    filter: invert(42%) sepia(78%) saturate(423%) hue-rotate(130deg)
        brightness(92%) contrast(85%);
}
.basicPrimaryBtn:hover {
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    color: #fff;
}
.basicPrimaryBtn:hover img {
    filter: brightness(0) invert(1);
}
/* End Button Css */
.studentLifeSection {
    padding: 30px 0 60px 0;
    width: 100%;
    font-family: "Inter", sans-serif;
}
.studentLifeSection p {
    color: #555555;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
}
/* Accordian Header Start */
.accoStudentLifeHead {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000;
    padding: 1.5rem 4rem 1.5rem 0;
    position: relative;
    border-top: 1px solid #000;
}
.accoStudentLifeHead.first {
    border-top: 0;
}
.accoStudentLifeHead::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    -webkit-mask-image: url("../images/city/plus.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/city/plus.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
.accoStudentLifeHead.active::after {
    -webkit-mask-image: url("../images/city/minus.svg");
    mask-image: url("../images/city/minus.svg");
}
.accoStudentLifeContent {
    padding: 0 0 1rem 0;
    display: none;
}
.overlayBtn {
    transform: translateY(100px);
}
.treeBg {
    height: 400px;
}
.filter-btns .Tabbtn {
    color: #000;
    font-weight: 500;
    border: 1px solid #999;
}
.filter-btns .Tabbtn:hover,
.filter-btns .Tabbtn.active {
    color: #fff;
}
.info-card img {
    filter: invert(19%) sepia(86%) saturate(7096%) hue-rotate(349deg)
        brightness(70%) contrast(120%);
}
.featureCitySection {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 800px;
    padding: 80px 0;
    justify-content: flex-start;
}
.featureCity-1 {
    background-image: url(../images/city/tabBg-1.webp);
}
.featureContainer {
    width: 100%;
}
/* Tab Styles */
.featureCityTab {
    margin-top: 2rem;
}
.featureCityTab,
.oppurtunityTab {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featureCityTab li,
.oppurtunityTab li {
    padding: 1rem 1.5rem;
    background: #ffffff33;
    border: 1px solid #ffffff4d;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s, color 0.3s;
    font-size: 16px;
}
.featureCityTab li.active,
.oppurtunityTab li.active {
    background-color: #fff;
    color: #021e48;
}
/* Content Area */
.featureCityContent {
    display: none;
    animation: bgIn 0.3s ease-in-out;
    color: #fff; height: 300px; overflow-y: auto;
}
.featureCityContent h5 {
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
}
.featureCityContent p {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 0.7rem;
}
.featureCityContent.active {
    display: block;
}
@keyframes bgIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.featureCity-1.bg-overallSafty {
    background: url("../images/city/tabBg-1.webp") center/cover no-repeat;
}
.featureCity-1.bg-campusSupport {
    background: url("../images/city/tabBg-2.webp") center/cover no-repeat;
}
.featureCity-1.bg-womenSafty {
    background: url("../images/city/tabBg-3.webp") center/cover no-repeat;
}
.featureCity-1.bg-emergencyServices {
    background: url("../images/city/tabBg-4.webp") center/cover no-repeat;
}
.zoneContainer {
    padding: 80px 0;
    width: 100%;
}
.zoneBlock {
    padding: 0.5rem;
    border: 1px solid #510800;
    position: relative;
    margin: 2rem 0;
    border-radius: 8px;
}
.zoneBlock .zsI {
    border-radius: 8px;
}
.zoneBlock p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000;
    /* margin-bottom: 2rem; */
    margin-top: 1rem;
    min-height: 60px;
    max-height: 60px;
}
.zoneBlock .basicPrimaryBtn {
    white-space: nowrap;
    display: flex;
    padding: 1rem 2.5rem;
    max-width: 90%;
    gap: 1rem;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    z-index: 99;
    display: none;
}
.zoneBlock:hover .basicPrimaryBtn {
    display: flex;
}
/* oppurtunitySection CSS */
.oppurtunitySection {
    /* background-color: #111111; */
    background: linear-gradient(180deg, #dad7ea 0%, #f4d3da 100%);
    background-image: url("../images/city/opportunitiessecbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}
.oppurtunityContainer {
    width: 100%;
}
.oppurtunityBlock {
    background: #ffffff66;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    min-height: 100%;
}
.oppurtunityBlock img {
    height: 60px;
    margin: 1.5rem 0;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5000%)
        hue-rotate(340deg) brightness(90%) contrast(95%);
}
.oppurtunityBlock h5 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin: 1rem 0;
}
.oppurtunityBlock p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
}
.partenerSection {
    padding: 80px 0;
}
.tbTable {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc9c9; /* Outer blue border */
    max-width: 700px;
    width: 100%;
    font-family: sans-serif;
    font-size: 16px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}
.tbRow {
    display: flex;
    border-top: 1px solid #ccc9c9;
}
.tbRow:first-child {
    border-top: none;
}
.choosebody ul {
    list-style: none;
    padding: 0;
}
.tbCell {
    flex: 1;
    padding: 1rem 1.5rem;
    border-left: 1px solid #ccc9c9;
    background-color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #555;
}
.tbCell:first-child {
    border-left: none;
}
.tbHeader .tbCell {
    font-weight: bold;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
    /* justify-content: center; */
}
.cityBannerMob {
    display: none;
}
.cityBannerWeb {
    width: 100%;
}
.cityHeroContainer {
    position: absolute;
    justify-content: left;
}
.contectBoxHero {
    margin-bottom: 4rem;
    max-width: 700px;
    width: 100%;
}
.wave-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.wave {
    animation: waveMotion 6s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes waveMotion {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* =============== */
.partnerContainer {
    margin: 80px 0;
}
.leftContainer {
    width: 50%;
}
.rightContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.rightContainer .cityPart {
    max-width: 100%;
}
.partnerTable {
    margin-top: 30px;
    max-width: 650px;
}

@media only screen and (min-width: 3501px) {
    .contectBoxHero {
        max-width: 1200px;
        width: 100%;
    }
    .contectBoxHero .titel74 {
        font-size: 110px;
    }
    .studentLifeSection .titel64 {
        font-size: 100px;
        padding: 0 0 40px 50px;
    }
    .studentLifeSection p {
        font-size: 42px;
        padding: 0 0 30px 50px;
    }
    .accoStudentLifeHead {
        font-size: 42px;
        padding: 0 0 20px 50px;
    }
    .accoStudentLifeHead::after {
        width: 55px;
        height: 55px;
    }
    .lightPrimaryBtn span {
        font-size: 28px;
    }
    .chooseContainer .titel64,
    .oppurtunityContainer .titel64 {
        font-size: 100px;
    }
    .zoneBlock p {
        min-height: 100px;
        max-height: 100px;
        font-size: 36px;
    }
    .featureCityTab li,
    .oppurtunityTab li {
        font-size: 42px;
    }
    .oppurtunityBlock h5 {
        font-size: 40px;
    }
    .oppurtunityBlock p {
        font-size: 36px;
    }
    .oppurtunityBlock img {
        height: 100px;
    }
    .chooseImg {
        width: 500px !important;
    }
    .featureCityContent h5 {
        font-size: 44px;
    }
    .featureCityContent p {
        font-size: 38px;
    }
    .talkBtnBox {
        padding: 0 0 0 50px;
    }
    .featureCitySection,
    .oppurtunitySection {
        padding: 120px 0;
    }
}
@media only screen and (min-width: 2701px) and (max-width: 3500px) {
    .contectBoxHero {
        max-width: 1200px;
        width: 100%;
    }
    .contectBoxHero .titel74 {
        font-size: 110px;
    }
    .studentLifeSection .titel64 {
        font-size: 100px;
        padding: 0 0 40px 50px;
    }
    .studentLifeSection p {
        font-size: 42px;
        padding: 0 0 30px 50px;
    }
    .accoStudentLifeHead {
        font-size: 42px;
        padding: 0 0 20px 50px;
    }
    .accoStudentLifeHead::after {
        width: 50px;
        height: 50px;
    }
    .lightPrimaryBtn span {
        font-size: 28px;
    }
    .chooseContainer .titel64,
    .oppurtunityContainer .titel64 {
        font-size: 100px;
    }
    .zoneBlock p {
        min-height: 100px;
        max-height: 100px;
        font-size: 36px;
    }
    .featureCityTab li,
    .oppurtunityTab li {
        font-size: 36px;
    }
    .oppurtunityBlock h5 {
        font-size: 40px;
    }
    .oppurtunityBlock p {
        font-size: 32px;
    }
    .oppurtunityBlock img {
        height: 100px;
    }
    .chooseImg {
        width: 500px !important;
    }
    .featureCityContent h5 {
        font-size: 44px;
    }
    .featureCityContent p {
        font-size: 32px;
    }
    .talkBtnBox {
        padding: 0 0 0 50px;
    }
    .featureCitySection,
    .oppurtunitySection {
        padding: 120px 0;
    }
}
@media only screen and (min-width: 2201px) and (max-width: 2700px) {
    .contectBoxHero {
        max-width: 1200px;
        width: 100%;
    }
    .contectBoxHero .titel74 {
        font-size: 110px;
    }
    .studentLifeSection .titel64 {
        font-size: 100px;
        padding: 0 0 40px 50px;
    }
    .studentLifeSection p {
        font-size: 30px;
        padding: 0 0 30px 50px;
    }
    .accoStudentLifeHead {
        font-size: 40px;
        padding: 0 0 20px 50px;
    }
    .accoStudentLifeHead::after {
        width: 50px;
        height: 50px;
    }
    .lightPrimaryBtn span {
        font-size: 28px;
    }
    .chooseContainer .titel64,
    .oppurtunityContainer .titel64 {
        font-size: 100px;
    }
    .zoneBlock p {
        min-height: 100px;
        max-height: 100px;
        font-size: 30px;
    }
    .featureCityTab li,
    .oppurtunityTab li {
        font-size: 32px;
    }
    .oppurtunityBlock h5 {
        font-size: 40px;
    }
    .oppurtunityBlock p {
        font-size: 30px;
    }
    .oppurtunityBlock img {
        height: 100px;
    }
    .chooseImg {
        width: 500px !important;
    }
    .featureCityContent h5 {
        font-size: 40px;
    }
    .featureCityContent p {
        font-size: 30px;
    }
    .talkBtnBox {
        padding: 0 0 0 50px;
    }
    .featureCitySection,
    .oppurtunitySection {
        padding: 120px 0;
    }
}
@media screen and (max-width: 1440px) {
    .leftContainer h2 {
        font-size: 64px;
    }
    .rightContainer {
        justify-content: flex-end;
    }
    .leftContainer h2 {
        font-size: 54px;
    }
    .partnerContainer {
        margin: 60px 0;
    }
    .rightContainer .cityPart {
        width: 95%;
    }
    .leftContainer h2 {
        font-size: 54px;
    }
    .partnerContainer {
        margin: 60px 0;
    }
    .rightContainer .cityPart {
        width: 95%;
    }
    .leftContainer h2 {
        font-size: 48px;
    }
    .partnerTable th.titel20 {
        font-size: 16px;
    }

    .partnerTable td.titel16 {
        font-size: 16px;
    }
    .partnerTable th.titel20 {
        font-size: 16px;
    }
    .partnerTable td.titel16 {
        font-size: 16px;
    }
}
@media screen and (min-width: 1280px) {
    .reviewBG {
        max-height: max-content;
    }
    .customContainer.flex-column.reviewContainer {
        top: 120px;
    }
}

@media screen and (max-width: 1280px) {
    .contectBoxHero {
        margin-bottom: 6rem;
        max-width: 550px;
    }
    .talkBtnBox {
        margin-top: 1.5rem;
    }
}
@media screen and (max-width: 1140px) {
    .rowoppurtunityBlock .col-lg-3 {
        width: 50%;
        margin-bottom: 20px;
    }
    .oppurtunityBlock {
        min-height: 440px;
        /* margin: 0 1rem; */
    }
}
@media screen and (max-width: 991px) {
    .featureCity-1.bg-overallSafty {
        background: url("../images/city/tabBg-mb-1.webp") bottom center
            no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-campusSupport {
        background: url("../images/city/tabBg-mb-2.webp") bottom center
            no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-womenSafty {
        background: url("../images/city/tabBg-mb-3.webp") bottom center
            no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-emergencyServices {
        background: url("../images/city/tabBg-mb-4.webp") bottom center
            no-repeat;
        background-size: cover;
    }
    .featureCityTab li {
        font-size: 14px;
        padding: 7px 20px;
        width: calc(50% - 8px);
    }
    .featureCitySection {
        padding: 50px 0 0;
        justify-content: flex-start;
    }
    .featureCityContent p {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .cityBannerWeb {
        min-height: 450px;
        object-fit: cover;
        object-position: center;
    }
    .oppurtunityBlock {
        min-height: 500px;
        margin: 0 1rem;
    }
    .treeBg {
        width: auto;
        height: 200px;
    }
    .featureCityTab li,
    .oppurtunityTab li {
        font-size: 14px;
        padding: 0.5rem 1rem;
    }
    .overlayBtn {
        transform: translateY(65px);
    }
    .choosebody ul.title16 {
        font-size: 12px;
    }
    .leftContainer h2 {
        font-size: 38px;
    }
    .partnerTable {
        margin-top: 20px;
    }
    .partnerTable th.titel20 {
        font-size: 14px;
    }
    .partnerTable td.titel16 {
        font-size: 14px;
    }
    .rowoppurtunityBlock .col-lg-3 {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .partnerContainer {
        flex-direction: column;
    }
    .leftContainer {
        width: 100%;
    }
    .cityBannerWeb {
        min-height: 380px;
    }
    .contectBoxHero {
        max-width: 480px;
    }
    .overlayBtn {
        transform: translateY(65px);
    }
    .studentLifeSection {
        padding: 40px 0;
    }
    .lightPrimaryBtn {
        padding: 1rem 0.5rem;
    }
    .choosebody ul {
        /* margin: 0 0 0 1rem; */
        padding: 0;
    }
    .accoStudentLifeHead::after {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 600px) {
    .customSection.cityHeroSec {
        justify-content: flex-start;
    }
    .cityHeroContainer {
        margin-top: 3rem;
        margin-bottom: 0;
    }
    .cityBannerWeb {
        display: none;
    }
    .cityBannerMob {
        display: block;
        width: 100%;
        object-fit: contain;
        object-position: bottom;
    }
    .featureCity-1.bg-overallSafty {
        background: url("../images/city/tabBg-mb-1.webp") top center no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-campusSupport {
        background: url("../images/city/tabBg-mb-2.webp") top center no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-womenSafty {
        background: url("../images/city/tabBg-mb-3.webp") top center no-repeat;
        background-size: cover;
    }
    .featureCity-1.bg-emergencyServices {
        background: url("../images/city/tabBg-mb-4.webp") top center no-repeat;
        background-size: cover;
    }
    .accoStudentLifeHead::after {
        width: 30px;
        height: 30px;
    }
    .partnerContainer {
        margin: 30px 0;
    }
    .rightContainer {
        width: 100%;
    }
    .choosebody ul.mt-3 {
        margin-top: 10px !important;
    }
    .zoneContainer p.titel16.my-3 {
        margin: 0 !important;
    }
    .modifiedFont {
        font-size: 28px;
    }
    .featureCityTab {
        margin-top: 10px;
        gap: 10px;
    }
    .featureCityContent h5 {
        margin-bottom: 10px;
        line-height: 110%;
    }
    .chooseContainer h5.titel16 {
        text-align: center !important;
    }
    .choseCard .choosebody h5.titel16 {
        text-align: left !important;
    }
}

.rowoppurtunityBlock {
    display: flex !important;
    width: 100%;
    z-index: 1;
}
.oppurtunityBlock ul {
    text-align: left;
}

/* Show the carousel below 770px */
@media (max-width: 769px) {
    .owl-carousel {
        display: block !important;
    }
    .lightPrimaryBtn span {
        font-size: 14px;
    }
}
@media screen and (max-width: 600px) {
    .firstSection.cityHeroSec {
        margin-top: 138px !important;
    }
}

/* =====================New Design===================== */
.heroTitel {
    display: flex;
    flex-direction: column;
    line-height: 100%;
}
.citySearchBar {
    background: #ffffffcf;
    margin: 20px 0;
}
.cityAboutContainer {
    margin: 10px 0;
}
.cityAboutLeft {
    width: 50%;
}
.cityAboutRight {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cityMap {
    max-width: 100%;
}
.costSection {
    background-image: url("../images/city/colsbg.svg") !important;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}
.costContainer {
    margin: 80px 0;
}
.study-cost-section {
    width: 730px;
    margin: 40px auto 0 auto;
    background: transparent;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}
.tabs {
    display: flex;
    gap: 16px;
}
.tab-btn {
    width: auto;
    padding: 12px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: transparent;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}
.tab-btn.active {
    font-weight: 600;
    background: linear-gradient(180deg, #a41a1f 0%, #a41a1f 100%);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.tab-content {
    display: none;
    padding: 30px;
    border: 1px solid #a41a1f;
    border-radius: 0 12px 12px 12px;
    background-color: #ffffff;
}
.tab-content.active {
    display: block;
}
.tab-description {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}
.cost-table {
    width: 100%;
    padding: 0 30px;
}
.cost-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
}

.cost-table th,
.cost-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #ccc9c9;
    text-align: left;
}
.cost-table tr td:first-child,
.cost-table tr th:first-child {
    border-right: 1px solid #ccc9c9;
}
.oppurtunityTab2 li {
    background: #ffffff66;
    font-weight: 400;
    border-radius: 4px;
    color: #000;
    border: none;
}
.oppurtunityTab2 li.active {
    background: #fff;
    font-weight: 600;
    color: #000;
}
.partnerTable tr th div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.partnerTable thead tr th,
.partnerTable tbody tr td {
    padding: 10px 14px !important;
}
.faqContainer {
    background: linear-gradient(180deg, #f7d6e0 0%, #d9f7dc 100%);
    border-radius: 12px;
    margin: 40px auto;
    padding: 30px;
    font-family: "Inter", sans-serif;
    flex-direction: column;
}
.faqHeading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.faqAccordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faqAccordion .accordion-item {
    border: 1.5px solid #000;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: blur(95.9000015258789px);
}

.faqAccordion .accordion-button {
    background-color: transparent;
    color: #000;
    font-weight: 500;
    padding: 14px 18px;
    font-family: "Inter", sans-serif !important;
    box-shadow: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.faqAccordion .accordion-button:not(.collapsed) {
    background-color: #fff; /* your theme red */
    color: #000;
    border-bottom: 1.5px solid #000;
}

.faqAccordion .accordion-button::after {
    filter: brightness(0) saturate(100%); /* makes arrow pure black */
}

.faqAccordion .accordion-body {
    background-color: transparent !important;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif !important;
}
.faqAccordion .accordion-body p {
    margin: 0;
}
/* --- */
.sharjahImg {
    transform: rotateY(180deg);
}
@media screen and (min-width: 2000px) and (max-width: 2500px) {
    .cityMap {
        max-width: 650px;
        width: 100%;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 74px;
    }
    .cityAboutLeft p.titel20 {
        font-size: 28px;
    }
    .tab-btn {
        font-size: 28px;
    }
    .costSection h5.titel16 {
        font-size: 28px;
    }
    .tab-description {
        font-size: 28px;
        line-height: 1.3;
    }
    .study-cost-section {
        width: 900px;
    }
    .cost-table th,
    .cost-table td {
        font-size: 24px;
        padding: 18px 24px;
    }
    .chooseContainer h5.titel16 {
        font-size: 28px;
    }
    .zoneContainer p.titel16 {
        font-size: 28px;
    }
    .leftContainer h6.titel20,
    .zoneContainer h6.titel20 {
        font-size: 32px;
    }
    .rightContainer .cityPart {
        max-width: 700px;
        width: 100%;
    }
    .partnerTable {
        max-width: 800px;
    }
    .faqHeading h4.titel28 {
        font-size: 38px;
    }
    .faqIcon {
        height: 38px;
    }
    .faqAccordion .accordion-button {
        font-size: 28px;
        padding: 20px 20px;
    }
    .faqAccordion .accordion-body {
        padding: 20px 22px;
        font-size: 28px;
    }
    .contectBoxHero {
        max-width: 1100px;
        width: 100%;
    }
    .accoStudentLifeHead {
        font-size: 26px;
        padding: 28px 0 28px 50px;
    }
    .lightPrimaryBtn {
        padding: 1.6rem 2rem 1rem 2rem;
    }
}
@media screen and (min-width: 2501px) and (max-width: 3000px) {
    .cityMap {
        max-width: 800px;
        width: 100%;
    }
    .accoStudentLifeHead {
        font-size: 36px;
    }
    .lightPrimaryBtn {
        padding: 1rem 2rem 1rem 2rem;
        font-size: 38px;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 94px;
    }
    .cityAboutLeft p.titel20 {
        font-size: 34px;
    }
    .tab-btn {
        font-size: 32px;
        padding: 18px 22px;
    }
    .costSection h5.titel16 {
        font-size: 34px;
    }
    .tab-description {
        font-size: 28px;
        line-height: 1.3;
    }
    .study-cost-section {
        width: 1200px;
    }
    .cost-table th,
    .cost-table td {
        font-size: 28px;
        padding: 18px 24px;
    }
    .chooseContainer h5.titel16 {
        font-size: 28px;
    }
    .zoneContainer p.titel16 {
        font-size: 28px;
    }
    .leftContainer h6.titel20,
    .zoneContainer h6.titel20 {
        font-size: 38px;
    }
    .rightContainer .cityPart {
        max-width: 900px;
        width: 100%;
    }
    .partnerTable {
        max-width: 800px;
    }
    .faqHeading h4.titel28 {
        font-size: 45px;
    }
    .faqIcon {
        height: 45px;
    }
    .faqAccordion .accordion-button {
        font-size: 32px;
        padding: 20px 20px;
    }
    .faqAccordion .accordion-body {
        padding: 20px 22px;
        font-size: 32px;
    }
    .contectBoxHero {
        max-width: 1100px;
        width: 100%;
    }
    .zoneBlock p {
        min-height: 190px;
        max-height: 190px;
    }
    .partnerTable {
        max-width: 1200px;
    }
    .partnerTable thead tr th,
    .partnerTable tbody tr td {
        padding: 18px 30px !important;
    }
}
@media screen and (min-width: 3001px) and (max-width: 3500px) {
    .cityMap {
        max-width: 1000px;
        width: 100%;
    }
    .accoStudentLifeHead {
        font-size: 48px;
    }
    .lightPrimaryBtn {
        padding: 1rem 2rem 1.5rem 2rem;
        font-size: 48px;
    }
    .jurneyBtn {
        height: 80px;
    }
    .exploreCard {
        padding: 28px;
    }
    .filter-btns .Tabbtn {
        height: 80px;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 94px;
    }
    .cityAboutLeft p.titel20 {
        font-size: 48px;
    }
    .tab-btn {
        font-size: 38px;
        padding: 28px 36px;
    }
    .costSection h5.titel16 {
        font-size: 38px;
    }
    .tab-description {
        font-size: 38px;
        line-height: 1.3;
    }
    .study-cost-section {
        width: 1400px;
    }
    .cost-table th,
    .cost-table td {
        font-size: 38px;
        padding: 28px 28px;
    }
    .chooseContainer h5.titel16 {
        font-size: 36px;
    }
    .zoneContainer p.titel16 {
        font-size: 38px;
    }
    .zoneContainer p.titel16 {
        font-size: 28px;
    }
    .leftContainer h6.titel20,
    .zoneContainer h6.titel20 {
        font-size: 38px;
    }
    .rightContainer .cityPart {
        max-width: 900px;
        width: 100%;
    }
    .partnerTable {
        max-width: 900px;
    }
    .faqHeading h4.titel28 {
        font-size: 45px;
    }
    .faqIcon {
        height: 45px;
    }
    .faqAccordion .accordion-button {
        font-size: 38px;
        padding: 20px 20px;
    }
    .faqAccordion .accordion-body {
        padding: 24px 28px;
        font-size: 38px;
    }
    .contectBoxHero {
        max-width: 1100px;
        width: 100%;
    }
    .zoneBlock p {
        min-height: 190px;
        max-height: 190px;
    }
    .partnerTable {
        max-width: 1200px;
    }
    .partnerTable thead tr th,
    .partnerTable tbody tr td {
        padding: 18px 30px !important;
    }
}
@media screen and (max-width: 1440px) {
    .contectBoxHero {
        max-width: 650px;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 48px;
    }
}
@media screen and (max-width: 1300px) {
    .contectBoxHero {
        margin-bottom: 3rem;
        max-width: 550px;
    }
    .cityAboutRight {
        width: 45%;
    }
    .cityAboutContainer {
        justify-content: space-between;
    }
    .costContainer {
        margin: 70px 0;
    }
    .oppurtunitySection {
        background-size: cover;
    }
    .oppurtunityBlock {
        padding: 1.5rem;
    }
}
@media screen and (max-width: 1280px) {
    .cityBannerWeb {
        width: 100%;
        min-height: 450px;
        object-fit: cover;
    }
    .oppurtunityBlock {
        min-height: 480px;
    }
    .oppurtunitySection {
        margin: 60px 0;
    }
    .zoneContainer {
        padding: 0;
        width: 100%;
    }
    .oppurtunitySection {
        margin: 30px 0;
    }
    .oppurtunitySection {
        padding: 60px 0;
    }
    .partnerTable td.titel16,
    .partnerTable th.titel20 {
        font-size: 14px;
    }
    .partnerTable thead tr th,
    .partnerTable tbody tr td {
        padding: 10px !important;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 38px;
    }
    .faqIcon {
        height: 28px;
    }
    .contectBoxHero {
        margin-bottom: 3rem;
        max-width: 500px;
    }
}
@media screen and (max-width: 1140px) {
    .oppurtunityBlock {
        min-height: 330px;
    }
}
@media screen and (max-width: 1080px) {
    .exploreFilter {
        gap: 1rem;
        margin-top: 1rem;
    }
    .cityAboutRight {
        width: 43%;
    }
    .cityAboutLeft {
        width: 55%;
    }
    .exploreCard {
        margin: 0 6px;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 990px) {
    .contectBoxHero {
        max-width: 450px;
    }
    .cityBannerWeb {
        min-height: 400px;
    }
    .contectBoxHero {
        margin-bottom: 2.5rem;
    }
    .cityAboutRight {
        width: 45%;
    }
    .cityAboutLeft h2.titel48 {
        font-size: 28px;
    }
    .oppurtunityBlock {
        min-height: 370px;
    }
    .faqAccordion .accordion-body {
        font-size: 16px;
    }
    .faqAccordion .accordion-button {
        padding: 14px 18px;
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .study-cost-section {
        width: 100%;
    }
    .cityAboutContainer {
        margin: 30px 0;
        flex-direction: column;
    }
    .cityAboutRight,
    .cityAboutLeft {
        width: 100%;
    }
    .exploreContainer h2.titel64 {
        font-size: 32px;
    }
    .costContainer {
        margin: 50px 0;
    }
    .tab-content {
        padding: 20px;
    }
    .cost-table {
        padding: 0;
    }
    .tab-btn {
        padding: 8px 10px;
        font-size: 16px;
    }
    .oppurtunityBlock {
        min-height: 450px;
    }
}
@media screen and (max-width: 600px) {
    .cityHeroContainer {
        position: absolute;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    .heroTitel {
        align-items: center;
    }
    .contectBoxHero h6 {
        text-align: center;
    }
    .tab-btn {
        font-size: 14px;
    }
    .tabs {
        gap: 0px;
    }
    .tab-content {
        padding: 14px;
    }
    .contectBoxHero h6.titel20 br {
        display: none;
    }
    .oppurtunityBlock {
        min-height: 350px;
    }
}
@media screen and (max-width: 500px) {
    .partnerTable th div {
        flex-direction: column;
        height: 70px;
        align-items: flex-start;
    }
    .d-flex.flex-wrap.justify-content-center.filter-btns {
        justify-content: center !important;
    }
    .faqContainer {
        margin: 30px auto;
        padding: 14px;
    }
    .faqAccordion .accordion-button {
        padding: 11px;
    }
    .costContainer {
        margin: 40px 0 0;
    }
    .faqIcon {
        height: 24px;
    }
    .faqAccordion .accordion-body {
        padding: 10px;
        font-size: 16px;
    }
    .faqAccordion {
        gap: 0px;
    }
    .choosebody {
        min-height: 90px;
    }
    .choosebody h3.titel18 {
        font-size: 16px;
    }
    .choosebody .titel16 {
        font-size: 16px;
    }
    .zoneContainer p.titel16.my-3 {
        margin-bottom: 14px !important;
    }
}
@media screen and (max-width: 500px) {
    .contectBoxHero h3.titel74 {
        font-size: 2rem;
    }
    .treeBg {
        display: block;
    }
    .studentLifeSection {
        padding: 0 0 40px 0;
    }
    .cityAboutContainer {
        margin: 30px 0 0 0 !important;
    }
    .avaratam .titel20.blackColor {
        color: #fff;
        margin-top: 4px;
    }
}
