@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Neue-Montreal";
    src: url("/website/assets/font/NeueMontreal-Regular.otf");
}
:root {
    --primary_color: #006b4f !important;
    --secondary_color: #ee2d43 !important;
    --border_color: #ccc9c9 !important;
    --white_color: #ffffff !important;
    --text_color: #333 !important;
    --red_color: #ce2e28 !important;
    --green_color: #00312d !important;
    --lightGreen_color: #94d227;
    --yellow_color: #daac50;
    --primary_font: "Poppins" !important;
    --secondary_font: "Inter" !important;
    --tarnary_font: "Neue-Montreal" !important;
}

/* ============== start hero section============== */
.hidden {
    display: none;
}
/* Smooth transition for opacity and visibility */
.searchBtnBox,
.navSearchContainer {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.searchBtnBox.hidden,
.navSearchContainer.hidden {
    opacity: 0;
    visibility: hidden;
}
.searchBtnBox:not(.hidden),
.navSearchContainer:not(.hidden) {
    opacity: 1;
    visibility: visible;
}
/* ================================================= */
.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-section-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* ================================================= */
.carousel {
    width: 100%;
    height: 100%;
}
.carousel-inner {
    width: 100%;
    height: 100%;
}
.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}
.carousel-item img {
    width: 100%;
    height: 100%;
}

.carousel-filter {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #013729;
    opacity: 35%;
}
.carousel-control-prev,
.carousel-control-next {
    width: 5% !important;
}
/* =============== */
.home-hero-section-box {
    width: 90%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.home-hero-left {
    width: 53%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.home-hero-left .whiteBox {
    width: 300px;
    height: 34px;
    padding: 5px 10px;
    gap: 10px;
    border-radius: 10px;
    background-color: var(--white_color);
    font-family: var(--primary_font);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-align: center;
}
.home-hero-left .h-h1 {
    margin: 0;
    font-family: var(--tarnary_font);
    font-size: 92px;
    font-weight: 400;
    line-height: 104px;
    text-align: left;
    color: var(--white_color);
}
.hSearchBox {
    display: none;
}
.h-search-box {
    width: 680px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--white_color);
    border-radius: 14px;
    padding: 4px;
    gap: 10px;
}
.h-search-box i {
    font-size: 24px;
    color: var(--text_color);
}
.h-searchInput {
    height: 100%;
    width: calc(100% - 200px);
    border: none;
    font-size: 16px;
    font-weight: 400;
}
.searchBtn {
    width: 120px;
    height: 100%;
    border-radius: 14px;
    background-color: var(--red_color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.searchBtn:hover {
    transform: scale(1.02);
    transition: 0.3s;
}
.searchBtn .s-arrow {
    font-size: 24px;
    color: var(--white_color);
}
.home-hero-right {
    height: 100%;
    width: 47%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.search-sug-box-hero {
    position: relative;
}
#suggestBox {
    display: none;
}
.suggestion {
    margin: 10px 0;
}
#suggestionsBox a {
    color: var(--text_color);
}
.suggestionBoxs {
    position: absolute;
    width: 680px;
    height: 400px;
    overflow-y: auto;
    top: 62px;
    border-radius: 10px;
    background: var(--white_color);
    z-index: 10;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* ============== end hero section============== */

/* ======= start course section ========== */
.collegeCourse-sections {
    width: 100%;
    background-color: var(--white_color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
    z-index: 8 !important;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.collegeCourse-container {
    width: 90%;
    margin: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.crs-header-box {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--primary_font);
}
.crs-header-box h2 {
    margin: 0;
    font-size: 64px;
    font-weight: 300;
    line-height: 76px;
    color: var(--text_color);
}
.crs-header-box h2:nth-child(2) {
    margin: 0;
    font-size: 64px;
    font-weight: 600;
    line-height: 76px;
    text-align: left;
    color: var(--lightGreen_color);
}
.crs-header-box p {
    width: 60%;
    margin: 0;
    font-weight: 400;
    line-height: 31.41px;
    text-align: left;
    color: var(--text_color);
}
.exp-btn-crs {
    border: none;
    background: linear-gradient(267.34deg, #bff102 -39.8%, #1c4734 90.19%);
    width: 263px;
    height: 56px;
    font-size: 20px;
    color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.exp-btn-crs:hover {
    transform: scale(1.02);
    transition: 0.3s;
}
.exp-btn-crs i {
    font-size: 24px;
}
.collegeCourse-list-container {
    width: 67%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start !important;
}
.collegeCourse-item {
    background: rgba(255, 255, 255, 1);
    width: 260px;
    height: 270px;
    border-radius: 16px;
    opacity: 0px;
    display: flex;
    font-family: var(--primary_font);
    flex-direction: column;
    gap: 8px;
    padding: 2rem;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 2px 80px 0px rgba(0, 0, 0, 0.07);
    box-shadow: rgba(58, 58, 58, 0.24) 0px 3px 8px;
    transition: 0.3s;
}
.crs-focus {
    background: linear-gradient(180deg, #bff102 0%, #1c4734 100%);
}
.collegeCourse-item.crs-focus:hover {
    background: linear-gradient(180deg, #8CAD0C 0%, #152E23 100%);
}
.crs-focus .collegeCourse-title,
.crs-focus .collegeCourse-para {
    color: var(--white_color);
}

.collegeCourse-item a {
    margin-top: 1rem;
    text-decoration: none;
}
.collegeCourse-item:hover {
    transform: scale(1.03);
    background: linear-gradient(180deg, #bff102 0%, #1c4734 100%);
    transition: 0.3s;
}
.collegeCourse-item:hover .collegeCourse-title,
.collegeCourse-item:hover .collegeCourse-para {
    color: var(--white_color) !important;
}
.crs-nxt-icon {
    font-size: 24px;
    color: var(--white_color);
}
.collegeCourse-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    border: 10px solid var(--green_color);
}
.collegeCourse-icon img {
    width: 35px;
    height: 35px;
    min-height: 35px;
}
.collegeCourse-title {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    color: var(--green_color);
}
.collegeCourse-para {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text_color);
}
/* ======= end course section ========== */

/* ============= start colleges section =========== */
.colleges-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #141414 13.9%, #053f31 100%);
}

.colleges-container {
    width: 90%;
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--primary_font);
}

.colleges-container h3 {
    margin: 0;
    font-size: 96px;
    font-weight: 300;
    text-align: center;
    color: var(--white_color);
}

.colleges-container p {
    margin: 0;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: var(--white_color);
}

.colleges-listbox {
    margin-top: 4rem;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.college-item-box {
    display: block;
    width: 23%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.0915) 100%
    );
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s;
}
.college-item-box:hover {
    box-shadow: var(--lightGreen_color) 0px 3px 8px;
    transition: 0.3s;
}
.colleges-img-box {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.college-img-new {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}
.collegeImgIconBox {
    position: absolute;
    bottom: 0;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333333af;
    height: 50px;
    width: 100%;
}
.collegeImgIconBox img {
    width: 35px;
    height: 35px;
    border-radius: 4px;
}
.collegeLocationIconBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    font-size: 14px !important;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--white_color);
}
.collegeLocationIconBox i {
    font-size: 18px;
    font-weight: 400;
    color: var(--white_color);
}

.collegesTextBox {
    margin-top: 1rem;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    /* height: 100px; */
    gap: 0.5rem;
    justify-content: space-between;
    font-family: var(--primary_font);
}

.collegesTextBox .clg-title {
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--white_color);
    height: 60px;
    overflow: hidden;
}
.collegesTextBox .rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.collegesTextBox .rating-container p {
    margin: 0;
    font-size: 14px;
    color: var(--white_color) !important;
}
.collegesTextBox .rating-container .rating-star-box i {
    color: var(--lightGreen_color) !important;
}
.li-container {
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.li-container li {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white_color);
    font-size: 14px;
    font-weight: 500;
}
.li-container li i {
    color: var(--lightGreen_color);
    font-size: 20px;
}
.li-container li span {
    font-weight: 600;
    color: var(--lightGreen_color);
    font-size: 14px;
}

/* ============Localities============ */
.localities-sections {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../assets/images/homepage/local_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.localities-container {
    width: 75%;
    margin: 5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.localities-container-left {
    width: 20%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white_color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.localities-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 8px;
    width: 100%;
    border-bottom: 1px solid #ccc9c9;
    cursor: pointer;
    transition: 0.3s;
}

.localities-item i {
    font-size: 24px;
}

.localities-item .locTitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--green_color);
    font-family: var(--secondary_font);
    text-align: left;
}
.localities-item .loccount {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #646464;
}

.active-localities {
    background: linear-gradient(88.08deg, #053f31 30.15%, #bff102 98.37%);
    border-radius: 20px;
    border: none;
}

.active-localities i,
.active-localities .locTitle,
.active-localities .loccount {
    color: var(--white_color);
}

.localities-container-right {
    width: 73%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.localities-right-top-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.localitiesRightTopTitle {
    margin: 0;
    font-family: var(--primary_font);
    font-size: 64px;
    font-weight: 300;
    line-height: 96px;
    text-align: left;
    color: var(--green_color);
}

.localitiesRightTopPara {
    margin: 0;
    font-family: var(--primary_font);
    font-size: 24px;
    text-align: left;
    color: var(--green_color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.localitiesRightbuttom-clgslist {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 2rem;
    justify-content: start;
}

.localitiesRightbuttom-clgitem {
    width: calc(50% - 16px);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ccc9c9;
    border-radius: 10px;
    background-color: var(--white_color);
}

.clgitemDetails {
    display: flex;
    gap: 0.5rem;
}

.clgitemDetails-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.clgitemDetails-textBox {
    display: flex;
    flex-direction: column;
}

.clgitemDetailsTitle {
    color: var(--text_color);
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.clgitemDetails-textBox .rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.clgitemDetails-textBox .rating-container p {
    margin: 0;
    font-size: 14px;
}
.clgItmBtnLG {
    font-size: 12px;
    font-weight: 600;
    width: 125px;
    height: 34px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    font-family: var(--primary_font);
    color: var(--green_color);
    border: 1px solid var(--green_color);
    background-color: var(--lightGreen_color);
    cursor: pointer;
    transition: 0.5s;
}

.clgItmBtnG {
    font-size: 12px;
    font-weight: 600;
    width: 125px;
    height: 34px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    font-family: var(--primary_font);
    color: var(--white_color);
    border: 1px solid var(--green_color);
    background-color: var(--green_color);
    cursor: pointer;
    transition: 0.5s;
}

.clgItmBtnW {
    font-size: 12px;
    font-weight: 600;
    width: 125px;
    height: 34px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    font-family: var(--primary_font);
    color: var(--text_color);
    border: 1px solid var(--border_color);
    background-color: var(--white_color);
    cursor: pointer;
    transition: 0.5s;
}

.clgItmBtnLG:hover,
.clgItmBtnW:hover,
.clgItmBtnG:hover {
    transform: scale(1.05);
    transition: 0.5s;
}
.location-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.location-box .spam-public {
    margin: 0;
    width: 75px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--green_color);
    font-family: var(--primary_font);
    padding: 5px 10px;
    gap: 10px;
    border-radius: 30px;
    background-color: #d0f8f8;
    text-wrap: nowrap;
}
.location-box .location-text {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 500;
    gap: 2px;
    color: var(--text_color);
}
/* ===============Choose Us============== */
.chooseus-section {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #006b4f 30%, #33ff77bd 100%);
}
.chooseus-container {
    width: 70%;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chooseus-left-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.chooseusleftTitle {
    margin: 0;
    font-family: var(--primary_font);
    font-size: 96px;
    font-weight: 400;
    color: var(--white_color);
}
.chooseusleftPara {
    text-align: center;
    width: 60%;
    font-family: var(--primary_font);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white_color);
}
.chooseusItemsBox {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.chooseusItem {
    width: 48%;
    padding: 2rem;
    border-radius: 5px;
    display: flex;
    gap: 0.8rem;
    transition: 0.3s;
    background-color: var(--white_color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
}
.chooseusItem:hover {
    transform: scale(1.03);
    transition: 0.3s;
}
.chooseusItem-icon {
    width: 250px;
    height: 250px;
}
.chooseusItemTextbox {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.chooseusItemTitle {
    margin: 0;
    font-family: var(--primary_font);
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    color: var(--green_color);
}
.chooseusItemPara {
    margin: 0;
    font-family: var(--primary_font);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #595959;
}
.chooseus-right-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.chooseusRightImgBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.chooseusRightImg {
    width: 775px;
}

.chooseusRightItemBox-fastcopy {
    width: 370px;
    height: 240px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 9rem;
    bottom: 6rem;
    border-radius: 25px;
    background: #eeeeee50;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 30px 0px;
    transition: 0.3s;
    cursor: pointer;
}
.chooseusRightItemBox-seccopy {
    width: 370px;
    height: 240px;
    padding: 1rem;
    display: flex;
    top: 17rem;
    left: 4rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 25px;
    background: #eeeeee50;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 30px 0px;
    transition: 0.3s;
    cursor: pointer;
}
.chooseusRightItemBox-thrcopy {
    width: 370px;
    height: 240px;
    padding: 1rem;
    display: flex;
    top: 6rem;
    right: 9rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 25px;
    background: #eeeeee50;
    font-family: var(--primary_font);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 30px 0px;
    transition: 0.3s;
    cursor: pointer;
}
.chooseusRightItemBox-fastcopy:hover,
.chooseusRightItemBox-seccopy:hover,
.chooseusRightItemBox-thrcopy:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

.chooseusRightItemBoxh5 {
    margin: 0;
    font-size: 90px;
    font-weight: 400;
    color: var(--white_color);
    line-height: 100px;
}
.chooseusRightItemBoxp {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: var(--white_color);
}

/* ============start compared section========= */
.h-Compared-sections {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #141414 13.9%, #053f31 100%);
}
.h-Compared-container {
    width: 75%;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    font-family: var(--primary_font);
}
.comTitle {
    margin: 0;
    font-size: 90px;
    font-weight: 500;
    text-align: left;
    color: var(--lightGreen_color);
}
.comTitle span {
    font-weight: 300;
    color: var(--white_color);
}
.comPara {
    margin: 0;
    margin-top: 1rem;
    font-size: 32px;
    font-weight: 300;
    color: var(--white_color);
}
.compCarImg {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 95%;
}
.comBotBox {
    margin-top: 4rem;
    margin-bottom: 9rem;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.comBotBox .iconBtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white_color);
    border: 1px solid var(--text_color);
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
    transition: 0.3s;
}
.comBotBox .iconBtn i {
    font-size: 24px;
    color: var(--text_color);
}
.comBotBox .iconBtn:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.similarCollegesItemContainer {
    width: calc(100% - 100px);
}
.compaireVsCompaire {
    margin: 0 0.8rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: var(--primary_font);
    
}

.compaireVsCompaire .vs-item {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    background-color: var(--secondary_color);
}
.compaireVsCompaire .compairing-item-box {
    padding: 1rem;
    width: 50%;
    height: 200px;
    border-radius: 10px;
    background-color: var(--white_color);
}
.compaireVsCompaire .compairing-item-box .clg-logo {
    width: 50px;
    height: 50px;
}
.compaireVsCompaire .compairing-item-box .compairing-title {
    margin: 0;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: var(--text_color);
    height: 65px;
    overflow: hidden;
}
.compaireVsCompaire .compairing-item-box .location-box {
    margin-top: 8px;
    /* gap: 6px; */
}

/* ============= end compare section ========================  */

/* ==============start review Section=========== */
.review-sections {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../assets/images/homepage/rev-bg.webp");
    background-position: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}
.review-container {
    width: 90%;
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--primary_font);
}

.review-container .review-title {
    margin: 0;
    font-size: 96px;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(90deg, #00312d 0%, #bff102 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    fill: transparent;
}

.review-container .review-para {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: var(--text_color);
}

.reviewBoxContainer {
    width: 100%;
    height: 540px;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.reviewItems-container {
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    background-color: var(--green_color);
    transition: 0.5s;
    cursor: pointer;
}
.reviewItems-container:hover {
    transform: scale(1.03);
    transition: 0.5s;
}

.reviewItems-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviewItems-top .quotes {
    width: 50px;
}

.reviewItems-top .startBox {
    display: flex;
    gap: 8px;
    color: var(--yellow_color);
}

.reviewItems-top .startBox i {
    font-size: 24px;
}

.reviewItems-para {
    margin: 0;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    text-align: left;
    color: var(--white_color);
}

.reviewItems-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviewItemsUserImg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.reviewItems-user {
    width: calc(100% - 62px);
}

.reviewItems-username {
    margin: 0;
    font-size: 16px;
    color: var(--white_color);
    font-weight: 500;
}
.reviewItems-usertag {
    margin: 0;
    font-size: 14px;
    color: var(--white_color);
    font-weight: 400;
}

.reviewsbuttonBox {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* ============= end review section =========== */

@media screen and (max-width: 1900px) {
    .crs-header-box {
        width: 30%;
    }
    .collegeCourse-list-container {
        width: 70%;
    }
    .collegeCourse-item {
        width: 22%;
    }
    .colleges-listbox {
        width: 85%;
    }
    .localities-container-left {
        width: 23%;
    }

    .chooseusleftTitle {
        font-size: 96px;
    }

    .chooseusRightItemBox-fastcopy {
        right: 6rem;
    }
    .chooseusRightItemBox-seccopy {
        left: 3rem;
    }
    .chooseusRightItemBox-thrcopy {
        right: 6rem;
    }
}

@media screen and (max-width: 1660px) {
    .home-hero-left {
        gap: 1.5rem;
    }
    .home-hero-left .h-h1 {
        font-size: 70px;
        line-height: 80px;
    }
    .h-search-box {
        width: 90%;
        height: 60px;
    }
    .suggestionBoxs {
        width: 90%;
    }

    .colleges-container h3 {
        margin: 0;
        font-size: 86px;
    }
    .colleges-listbox {
        width: 90%;
        gap: 1rem;
    }
    .collegeCourse-item {
        padding: 1.5rem;
    }
    .localities-container {
        width: 85%;
    }
    .localities-container-left {
        width: 20%;
    }
    .localities-container-right {
        width: 78%;
    }
    .localitiesRightTopTitle {
        font-size: 48px;
        line-height: 70px;
    }
    .h-Compared-container {
        width: 80%;
    }
    .comBotBox {
        width: 90%;
    }
    .compCarImg {
        right: 0;
    }
    .comTitle {
        font-size: 84px;
    }
    .comPara {
        font-size: 28px;
    }

    .review-container .review-title {
        font-size: 84px;
    }
    .reviewBoxContainer {
        height: 580px;
    }
    .reviewItems-container {
        padding: 1.5rem;
    }
    .chooseus-container {
        width: 80%;
    }
    .chooseusleftTitle {
        font-size: 84px;
    }

    .chooseusRightItemBox-fastcopy {
        right: 6rem;
        width: 350px;
        height: 220px;
    }
    .chooseusRightItemBox-seccopy {
        left: 3rem;
        width: 350px;
        height: 220px;
    }
    .chooseusRightItemBox-thrcopy {
        right: 6rem;
        width: 350px;
        height: 220px;
    }
    .chooseusItem-icon {
        width: 190px;
        height: 190px;
    }
    .chooseusItemTitle {
        font-size: 28px;
    }
    .chooseusItemTextbox {
        width: calc(100% - 190px);
    }
}

@media screen and (max-width: 1440px) {
    .home-hero-left {
        width: 55%;
    }
    .home-hero-right {
        width: 45%;
    }
    .home-hero-left .h-h1 {
        font-size: 64px;
        line-height: 75px;
    }
    .crs-header-box h2 {
        font-size: 48px;
        line-height: 60px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 48px;
        line-height: 60px;
    }
    .exp-btn-crs {
        width: 240px;
    }
    .collegeCourse-item {
        height: 240px;
        padding: 1rem;
    }
    .collegeCourse-icon {
        width: 75px;
        height: 75px;
        border: 8px solid var(--green_color);
    }
    .collegeCourse-icon img {
        width: 30px;
        height: 30px;
    }

    .colleges-container h3 {
        font-size: 70px;
    }
    .colleges-listbox {
        gap: 1rem;
    }

    .collegeCourse-title {
        font-size: 14px;
    }

    .localities-container {
        width: 90%;
    }

    .localitiesRightTopTitle {
        font-size: 54px;
        line-height: 70px;
    }
    .localitiesRightTopPara {
        font-size: 22px;
    }
    .localities-item {
        padding: 0.7rem 1rem;
    }
    .localities-item .locTitle {
        font-size: 18px;
    }
    .active-localities {
        border-radius: 10px;
    }
    .localitiesRightTopTitle {
        font-size: 40px;
        line-height: 50px;
    }
    .localitiesRightTopPara {
        font-size: 18px;
    }
    .clgItmBtnLG,
    .clgItmBtnW,
    .clgItmBtnG {
        width: 30%;
    }
    .comBotBox {
        width: 90%;
    }
    .compaireVsCompaire {
        flex-direction: column;
    }
    .compairing-item-box {
        width: 100% !important;
    }
    .compaireVsCompaire .compairing-item-box {
        height: 180px;
    }
    .compaireVsCompaire .compairing-item-box .compairing-title{
        height: 45px;
    }
    .comTitle {
        font-size: 68px;
    }
    .comPara {
        font-size: 24px;
    }

    .review-container .review-title {
        font-size: 74px;
    }
    .reviewBoxContainer {
        height: 600px;
    }
    .reviewItems-container {
        padding: 1rem;
    }
    .reviewItems-para {
        font-size: 14px;
    }

    .chooseus-container {
        width: 85%;
    }
    .chooseusleftTitle {
        font-size: 74px;
    }
    .chooseusleftPara {
        font-size: 18px;
    }

    .chooseusItem-icon {
        width: 190px;
        height: 190px;
    }
    .chooseusItemTitle {
        font-size: 28px;
    }
    .chooseusItemTextbox {
        width: calc(100% - 190px);
    }
    .chooseusRightItemBoxh5 {
        font-size: 70px;
    }
    .chooseusRightItemBoxp {
        font-size: 34px;
    }

    .chooseusRightImg {
        width: 600px;
    }

    .chooseusRightItemBox-fastcopy {
        right: 3rem;
    }
    .chooseusRightItemBox-seccopy {
        left: 0rem;
    }
    .chooseusRightItemBox-thrcopy {
        right: 3rem;
    }

    .slick-prev,
    .slick-next {
        width: 40px !important;
        height: 40px !important;
    }

    .slick-prev {
        left: -3rem !important;
    }

    .slick-next {
        right: -3rem !important;
    }

    .slick-prev:after,
    .slick-next:after {
        font-size: 24px;
    }
}

@media screen and (max-width: 1280px) {
    .hero-section {
        height: 650px;
    }
    .home-hero-left .h-h1 {
        font-size: 54px;
        line-height: 65px;
    }
    .h-search-box {
        height: 50px;
        border-radius: 10px;
        gap: 6px;
    }
    .suggestionBoxs {
        top: 52px;
    }
    .h-searchInput {
        width: calc(100% - 130px);
    }
    .searchBtn {
        width: 80px;
    }
    .home-hero-right {
        align-items: flex-end;
    }

    .collegeCourse-list-container {
        width: 70%;
        gap: 1.4rem;
    }
    .crs-header-box {
        width: 30%;
    }

    .crs-header-box h2 {
        font-size: 48px;
        line-height: 50px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 48px;
        line-height: 50px;
    }
    .crs-header-box p {
        width: 80%;
    }
    .exp-btn-crs {
        width: 220px;
    }
    .collegeCourse-item {
        height: 220px;
    }
    .collegeCourse-icon {
        width: 68px;
        height: 68px;
    }
    .colleges-container h3 {
        font-size: 64px;
    }
    .colleges-listbox {
        margin-top: 2rem;
        width: 100%;
        justify-content: flex-start;
    }
    .college-item-box {
        width: 32%;
    }
    .collegesTextBox .clg-title {
        font-size: 14px;
        font-weight: 500;
    }
    .colleges-container p {
        font-size: 18px;
    }

    .localitiesRightTopTitle {
        font-size: 40px;
        line-height: 50px;
    }
    .localitiesRightTopPara {
        font-size: 18px;
    }
    .clgItmBtnLG,
    .clgItmBtnW,
    .clgItmBtnG {
        width: 46%;
    }

    .h-Compared-container {
        width: 85%;
    }
    .compaireVsCompaire {
        width: 450px;
    }

    .compCarImg {
        right: 0;
    }
    .comTitle {
        font-size: 58px;
    }
    .comPara {
        font-size: 20px;
    }

    .review-container .review-title {
        font-size: 64px;
    }
    .reviewBoxContainer {
        height: auto;
        gap: 2rem;
    }
    .reviewItems-container {
        height: 380px;
        width: 48%;
        padding: 1rem;
    }

    .chooseus-container {
        width: 90%;
    }
    .chooseusleftTitle {
        font-size: 64px;
    }
    .chooseusItem-icon {
        width: 150px;
        height: 150px;
    }
    .chooseusItemTitle {
        font-size: 24px;
    }
    .chooseusItemTextbox {
        width: calc(100% - 150px);
    }
    .chooseusRightItemBoxh5 {
        font-size: 54px;
    }
    .chooseusRightItemBoxp {
        font-size: 28px;
    }
    .chooseusRightItemBox-fastcopy {
        right: 3rem;
        width: 300px;
        height: 200px;
    }
    .chooseusRightItemBox-seccopy {
        left: 4rem;
        top: 10rem;
        width: 300px;
        height: 200px;
    }
    .chooseusRightItemBox-thrcopy {
        right: 3rem;
        width: 300px;
        height: 200px;
    }

    .slick-prev,
    .slick-next {
        width: 35px !important;
        height: 35px !important;
    }

    .slick-prev:after,
    .slick-next:after {
        font-size: 24px;
    }
}

@media screen and (max-width: 1080px) {
    .hero-section {
        height: 600px;
    }
    .home-hero-left .h-h1 {
        font-size: 48px;
        line-height: 70px;
    }
    .collegeCourse-list-container {
        width: 70%;
        gap: 1.4rem;
    }
    .crs-header-box {
        width: 30%;
    }
    .crs-header-box h2 {
        font-size: 38px;
        line-height: 40px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 38px;
        line-height: 40px;
    }
    .crs-header-box p {
        width: 90%;
    }
    .collegeCourse-item a {
        margin-top: 0rem;
    }
    .exp-btn-crs {
        width: 200px;
    }
    .collegeCourse-item {
        height: 180px;
        padding: 0.5rem;
    }
    .collegeCourse-icon {
        width: 55px;
        height: 55px;
        min-height: 55px;
        border-width: 6px;
    }
    .colleges-container h3 {
        font-size: 48px;
    }
    .colleges-container p {
        font-size: 16px;
    }
    .localities-container-left {
        width: 27%;
    }
    .localities-container-right {
        width: 70%;
    }
    .localitiesRightTopTitle {
        font-size: 34px;
        line-height: 40px;
    }
    .localitiesRightTopPara {
        font-size: 16px;
    }
    .clgItmBtnLG,
    .clgItmBtnW,
    .clgItmBtnG {
        width: 100%;
    }
    .h-Compared-container {
        margin-top: 5rem;
    }
    .comTitle {
        font-size: 48px;
    }
    .comPara {
        font-size: 18px;
    }
    .compCarImg {
        right: 0;
        height: 90%;
    }
    .comBotBox {
        margin-top: 2rem;
        margin-bottom: 5rem;
    }

    .reviewItems-top .quotes {
        width: 40px;
    }
    .reviewItems-top .startBox i {
        font-size: 20px;
    }
    .chooseusleftTitle {
        font-size: 54px;
    }
    .chooseusleftPara {
        width: 80%;
    }
    .chooseusItem {
        padding: 1rem;
    }
    .chooseusItem-icon {
        width: 150px;
        height: 150px;
    }
    .chooseusItemTitle {
        font-size: 20px;
        line-height: 26px;
    }
    .chooseusItemTextbox {
        width: calc(100% - 150px);
    }
    .chooseusRightItemBoxh5 {
        font-size: 40px;
    }
    .chooseusRightItemBoxp {
        font-size: 24px;
    }
    .chooseusRightItemBox-fastcopy {
        width: 250px;
        height: 160px;
        bottom: 8rem;
    }
    .chooseusRightItemBox-seccopy {
        width: 250px;
        height: 160px;
        top: 14rem;
    }
    .chooseusRightItemBox-thrcopy {
        width: 250px;
        height: 160px;
    }
}

@media screen and (max-width: 990px) {
    .hero-section {
        height: 550px;
    }
    .hero-section-container {
        height: 100%;
    }
    .home-hero-left .h-h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .h-searchInput {
        width: calc(100% - 100px);
    }
    .searchBtn {
        width: 60px;
    }
    .home-hero-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .collegeCourse-sections {
        margin-top: -110px;
    }
    .collegeCourse-container {
        flex-direction: column;
        gap: 2rem;
    }
    .collegeCourse-list-container {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
    .crs-header-box {
        width: 100%;
        gap: 0;
    }
    .crs-header-box h2 {
        font-size: 34px;
        line-height: 38px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 34px;
        line-height: 38px;
    }
    .crs-header-box p {
        width: 100%;
    }
    .exp-btn-crs {
        width: 200px;
        font-size: 16px;
        height: 50px;
        border-radius: 10px;
    }
    .collegeCourse-item {
        width: 47%;
        padding: 2rem;
    }
    .colleges-container h3 {
        font-size: 38px;
    }
    .colleges-listbox {
        justify-content: space-between;
        gap: 1rem;
    }
    .college-item-box {
        width: 48%;
    }
    .localities-container {
        flex-direction: column;
        gap: 1rem;
    }
    .localities-container-left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .localities-item {
        width: 25%;
        padding: 0.8rem;
    }
    .localities-item i {
        transform: rotate(90deg);
    }
    .localities-container-right {
        width: 100%;
    }
    .clgitemDetails {
        flex-direction: column;
    }
    .clgitemDetails-logo {
        width: 50px;
        height: 50px;
    }
    .comTitle {
        font-size: 40px;
    }
    .comPara {
        font-size: 16px;
    }

    .chooseusleftTitle {
        font-size: 48px;
    }
    .chooseusleftPara {
        margin-top: 0.5rem;
        width: 90%;
        font-size: 16px;
        line-height: 20px;
    }
    .chooseusItemsBox {
        margin-top: 1rem;
        gap: 1rem;
    }
    .chooseusItem {
        width: 100%;
        padding: 1rem;
    }
    .chooseusItem-icon {
        width: 100px;
        height: 100px;
    }
    .chooseusItemTextbox {
        width: calc(100% - 100px);
    }
    .chooseusRightImg {
        width: 450px;
    }
    .chooseusRightItemBox-fastcopy {
        bottom: 3rem;
        right: 0;
    }
    .chooseusRightItemBox-seccopy {
        top: 10rem;
        left: 0;
    }
    .chooseusRightItemBox-thrcopy {
        right: 0;
    }
    .chooseusRightItemBox-fastcopy,
    .chooseusRightItemBox-seccopy,
    .chooseusRightItemBox-thrcopy {
        width: 200px;
        height: 120px;
    }
    .chooseusRightItemBoxh5 {
        font-size: 38px;
        line-height: 45px;
    }
    .chooseusRightItemBoxp {
        font-size: 22px;
        line-height: 25px;
    }
    .review-container .review-title {
        font-size: 48px;
    }
    .review-container .review-para {
        font-size: 16px;
    }
    .reviewBoxContainer {
        margin-top: 1rem;
    }
    .reviewItems-container {
        width: 47.5%;
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 480px;
        /* border: 1px solid red; */
    }
    .hero-section-container {
        height: 100% !important;
        margin-top: 60px;
    }
    .carousel img {
        height: 100% !important;
    }
    .bgImg-h {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .home-hero-right {
        width: 100%;
        justify-content: center;
        align-items: flex-end;
    }
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-hero-left {
        position: absolute;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        z-index: 10;
    }
    .home-hero-left .whiteBox {
        width: 255px;
        height: 31px;
        font-size: 14px;
        line-height: 20px;
    }
    .home-hero-left .h-h1 {
        width: 70%;
        text-align: center;
        font-size: 44px;
        font-weight: 400;
        line-height: 50px;
    }
    .h-search-box {
        display: none;
    }
    .hSearchBox {
        display: block;
        display: flex;
        align-items: center;
        width: 350px;
        height: 50px;
        padding: 12px 8px;
        border-radius: 10px;
        border: 1px solid var(--border_color);
        background-color: var(--white_color);
    }
    .suggestionBoxs {
        width: 350px;
        top: 52px;
    }
    .hSearchBox .h-searchInput {
        width: calc(100% - 30px);
        height: 100%;
    }
    .hSearchBox i {
        color: var(--secondary_color);
        font-size: 24px;
    }
    .collegeCourse-sections {
        margin-top: -2rem;
        border-radius: 0;
    }
    .collegeCourse-container {
        margin: 4rem 0;
    }
    .crs-header-box {
        align-items: center;
        gap: 4px;
        justify-content: center;
    }
    .crs-header-box h2 {
        font-size: 34px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 34px;
        color: var(--lightGreen_color);
    }
    .crs-header-box p {
        width: 80%;
        text-align: center;
        line-height: 20px;
    }
    .crs-header-box .exp-btn-crs.open768 {
        display: flex !important;
    }
    .crs-header-box.open768 {
        display: flex !important;
    }
    .collegeCourse-list-container {
        gap: 1rem;
    }
    .collegeCourse-item {
        width: 48%;
    }
    .collegeCourse-icon img {
        width: 28px;
        height: 28px;
    }
    .colleges-section h3 {
        font-size: 34px;
    }
    .college-item-box {
        width: 100%;
    }
    .college-item-box:hover {
        transform: scale(1);
    }

    .localities-sections {
        background-color: rgba(233, 244, 252, 0.314);
    }
    .localitiesRightTopTitle {
        width: 100%;
        text-align: center;
        font-size: 34px;
        margin-bottom: 1rem;
    }
    .localities-container-left {
        border-radius: 0;
        padding: 1rem 0;
        margin-top: -1rem;
        box-shadow: none !important;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        gap: 2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        background-color: rgba(233, 244, 252, 0.314);
    }
    .localities-container-left::-webkit-scrollbar {
        display: none;
    }
    .localities-item {
        flex: 0 0 auto;
        padding: 0.7rem;
        width: 200px;
        height: 80px;
        border-radius: 5px;
        background-color: var(--white_color);
        border: none;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    }
    .localities-item i {
        display: none;
    }
    .localitiesRightTopPara {
        margin-top: -0.7rem;
        font-size: 22px;
        color: var(--green_color);
    }
    .localitiesRightbuttom-clgitem {
        width: 100%;
    }
    .clgItmBtnG,
    .clgItmBtnW,
    .clgItmBtnLG {
        width: 31%;
    }
    .comTopBox {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .comTopBox .comTitle,
    .comTopBox .comPara {
        text-align: center;
    }
    .comTopBox .comTitle {
        width: 80%;
        font-size: 34px;
    }
    .comTopBox .comPara br,
    .comTopBox .comTitle br {
        display: none;
    }
    .nxtBtnBoxComp {
        margin-top: 2rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .comBotBox {
        width: 100%;
        flex-direction: column;
    }

    .compCarImg {
        display: none;
    }
    .review-title {
        font-size: 34px !important;
    }
    .reviewBoxContainer {
        height: auto;
    }
    .reviewItems-container {
        /* height: 450px !important; */
        display: flex !important;
        justify-content: space-between !important;
        &:hover {
            transform: scale(1);
        }
    }
    .reviewBoxContainer .slick-dots {
        bottom: -50px !important;
    }
    .reviewBoxContainer .slick-dots li button:before {
        font-size: 13px !important;
        color: var(--border_color) !important;
        opacity: 1;
    }
    .reviewBoxContainer .slick-dots li.slick-active button:before {
        color: var(--lightGreen_color) !important;
    }
    .colleges-listbox .slick-dots {
        bottom: -50px !important;
    }
    .colleges-listbox .slick-dots li button:before {
        font-size: 13px !important;
        color: var(--border_color) !important;
        opacity: 1;
    }
    .colleges-listbox .slick-dots li.slick-active button:before {
        color: var(--lightGreen_color) !important;
    }
    .chooseusleftTitle {
        font-size: 34px;
    }
    .chooseusItem {
        flex-direction: row-reverse;
    }
    .chooseusRightImgBox {
        height: 700px;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .chooseusRightImg {
        width: 500px;
    }
    .chooseusRightItemBox-fastcopy {
        top: 21rem;
        left: 0;
    }
    .chooseusRightItemBox-seccopy {
        top: 3rem;
        left: 0;
    }
    .chooseusRightItemBox-thrcopy {
        left: 0;
        top: 12rem;
    }
}

@media screen and (max-width: 600px) {
    .home-hero-left .h-h1 {
        width: 90%;
        font-size: 38px;
    }

    .reviewItems-container {
        height: 380px !important;
    }
    .chooseusRightImgBox {
        height: 630px;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .chooseusRightImg {
        width: 450px;
        margin-right: -4rem;
    }
    .chooseusRightItemBox-fastcopy {
        top: 19rem;
        left: 0;
        width: 180px;
        height: 100px;
        gap: 0rem;
    }
    .chooseusRightItemBox-seccopy {
        top: 3rem;
        left: 0;
        width: 180px;
        height: 100px;
        gap: 0rem;
    }
    .chooseusRightItemBox-thrcopy {
        left: 0;
        top: 11rem;
        width: 180px;
        height: 100px;
        gap: 0rem;
    }
    .chooseusRightItemBoxh5 {
        font-size: 28px;
    }
    .chooseusRightItemBoxp {
        font-size: 22px;
    }
    .comTopBox .comTitle {
        width: 100%;
        font-size: 30px;
    }
    .compaireVsCompaire {
        width: 380px;
    }
}

@media screen and (max-width: 550px) {
    .collegeCourse-item {
        padding: 1rem;
    }
    .colleges-section h3 {
        font-size: 28px;
    }
    .localitiesRightbuttom-clgitem .flex-wrap-box {
        gap: 0 !important;
        justify-content: space-between !important;
    }
    .clgItmBtnG,
    .clgItmBtnW,
    .clgItmBtnLG {
        padding: 0;
        font-size: 11px;
        width: 100px;
        height: 35px;
        line-height: 15px;
    }

    .comBotBox {
        width: 95% !important;
    }
}

@media screen and (max-width: 500px) {
    .home-hero-left .h-h1 {
        width: 100%;
        font-size: 28px;
        line-height: 34px;
    }
    .crs-header-box {
        gap: 0;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 24px;
        line-height: 30px;
    }
    .crs-header-box h2:nth-child(2) {
        font-size: 24px;
        line-height: 30px;
        color: var(--lightGreen_color);
    }
    .crs-header-box p {
        width: 100%;
    }
    .review-title {
        font-size: 28px !important;
    }
    .review-para {
        line-height: 20px !important;
        font-size: 14px !important;
    }
    .chooseusItemTitle {
        font-size: 16px;
    }
    .chooseusItemPara {
        font-size: 14px;
    }
    .chooseusRightImg {
        margin-right: -6rem;
    }
    .compaireVsCompaire {
        width: 300px;
    }
}

@media screen and (max-width: 450px) {
    .collegeCourse-item {
        width: 47%;
    }
    .collegeCourse-icon{
        width: 45px;
        height: 45px;
        min-height: 45px;
        min-width: 45px;
    }
    .collegeCourse-icon img{
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }
    .colleges-section h3 {
        font-size: 24px;
    }
    .reviewItems-container {
        height: 430px !important;
    }
    .chooseusRightImg {
        margin-right: -9rem;
    }
    .compaireVsCompaire {
        width: 230px;
    }
}

@media screen and (max-width: 400px) {
    .reviewItems-container {
        min-height: 450px !important;
        height: auto;
    }
}