* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
    text-decoration: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

p::first-letter{
    text-transform: capitalize;
}
h2::first-letter{
    text-transform: capitalize;
}
h3::first-letter{
    text-transform: capitalize;
}
h4::first-letter{
    text-transform: capitalize;
}
ol,
ul {
    list-style: none;
}

del {
    text-decoration: line-through;
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

body {
    font-family: "poppins_regular";
    font-size: 17px;
    color: #000;
    overflow-x: hidden;
    min-width: 320px;
    font-weight: 400;
    text-transform: math-auto;
}

input,
textarea,
select {
    font-family: "poppins_regular";
    font-weight: 500;
    width: 100%;
    font-size: 16px;
}

a {
    color: #000;
    cursor: pointer;
}
body.sweetalert-active {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
img {
    display: block;
    width: 100%;
}

p {
    line-height: 1.5em;
    font-size: 16px;
    font-family: "poppins_regular";
    font-weight: 500;
    color: #888;
}

body::-webkit-scrollbar {
    display: none;
}

.wrapper {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}

.title-box {
    margin-bottom: 20px;
}

.title-box h3 {
    font-size: 32px;
    font-family: "poppins_semibold";
}
/* FONTS */

@font-face {
    font-family: "poppins_bold";
    src: url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins_medium";
    src: url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins_light";
    src: url("../fonts//Poppins-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins_regular";
    src: url("../fonts//Poppins-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins_semibold";
    src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader img {
    width: 50px; /* Adjust the size of the loader spinner */
    animation: zoom-in-zoom-out 2s ease-out
}
@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }

/* Styles to hide the loader once the page has loaded */
body.loaded .loader {
    display: none;
}
/* Header */

header {
    width: 100%;
    padding-top: 10px 0;
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
}
header nav ul {
    display: flex;
}
header nav ul li a {
    color: #fff;
    font-size: 21px;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    width: 90px;
    display: block;
}
header .logo img {
    width: 100%;
    display: block;
}
header nav {
    width: 80%;
}
header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav ul li {
}

header nav ul li i {
    margin-left: 6px;
}

header nav ul li a.active {
    border-bottom: 3px solid var(--Primary, #b7815b);
    margin-top: 5px;
    font-family: 'poppins_medium';
}
header nav ul li a {
    color: #161616;
    font-size: 18px;
}
header nav ul li:last-child {
    margin-right: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    border-radius: 3px;
}
.home-slider {
}

.home-slider .slider-item {
    margin: 0 auto !important;
    background-color: #b7815b;
    display: flex !important;
    padding: 5px;
    align-items: center;
}

.home-slider .slider-item .slider-icon {
    width: 40px;
    margin-right: 10px;
}

.home-slider .slider-item .slider-icon img {
    display: block;
    width: 100%;
}

.home-slider .slider-item p {
    color: #fff;
    font-size: 16px;
    font-family: "poppins_light";
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.home-slider .slider-item p a {
    color: #fff;
    font-size: 16px;
    font-family: "poppins_light";
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
#spotlight {
    height: calc(100vh - 129px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background-blend-mode: darken;
    background-color: #00000073;
}

#spotlight .wrapper {
}

#spotlight .wrapper .spotlight-left {
    width: 53%;
}

#spotlight .wrapper .spotlight-left h2 {
    color: #fff;
    font-size: 48px;
    font-family: "poppins_medium";
    margin-bottom: 20px;
}

#spotlight .wrapper .spotlight-left p {
    color: #fff;
    font-size: 18px;
    font-family: "poppins_light";
    margin-bottom: 30px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#spotlight .wrapper .spotlight-left .button a {
}
#spotlight .wrapper .spotlight-left .learn-button {
    display: block;
    padding: 14px 26px;
    border-radius: 29px;
    background: var(--Primary, #b7815b);
    width: 155px;
    text-align: center;
    cursor: pointer;
}

#spotlight .wrapper .spotlight-left .learn-button .button {
    color: #fff;
}

#spotlight .wrapper .main-spotlight {
    display: flex;
    justify-content: space-between;
}

#spotlight .wrapper .right {
    width: 27%;
    text-align: center;
    padding: 45px;
    border-radius: 16px;
    background: var(--Primary, #b7815b);
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
}

#spotlight .wrapper .right .right-button {
}

#spotlight .wrapper .right .admission-box {
}

#spotlight .wrapper .right .admission-box h3 {
    color: #fff;
    font-size: 25px;
    font-family: "poppins_semibold";
    margin-bottom: 25px;
}

#spotlight .wrapper .right .admission-box h3 br {
}

#spotlight .wrapper .right .admission-box .right-button .download-button {
    margin-bottom: 20px;
    cursor: pointer;
}

#spotlight .wrapper .right .admission-box .right-button .download-button .button {
    padding: 14px 10px;
    border-radius: 29px;
    border: 1px solid #fff;
    display: block;
    color: #ffff;
    font-family: 'poppins_medium';
    margin: 0 auto;
    width: 200px;
}

#spotlight .wrapper .right .admission-box .right-button .chat-button {
    cursor: pointer;
}

#spotlight .wrapper .right .admission-box .right-button .chat-button .chat {
    padding: 14px 26px;
    border-radius: 29px;
    background: #fff;
    display: block;
    width: 200px;
    margin: 0 auto;
    color: #b7815b;
}
#notice {
    padding: 100px 0px;
}

#notice .wrapper {
}

#notice .wrapper .main-notice {
    display: flex;
    justify-content: space-between;
}

#notice .wrapper .main-notice .general-notice {
    width: 45%;
}

#notice .wrapper .main-notice .general-notice .notice::-webkit-scrollbar {
    width: 12px;
}

#notice .wrapper .main-notice .general-notice .notice::-webkit-scrollbar-track {
    background: #f4f4f4;
}

#notice .wrapper .main-notice .general-notice .notice::-webkit-scrollbar-thumb {
    background: #e3e3e3;
    border-radius: 6px;
}
#notice .wrapper .main-notice .important-links .links::-webkit-scrollbar {
    width: 12px;
}

#notice .wrapper .main-notice .important-links .links::-webkit-scrollbar-track {
    background: #f4f4f4;
}

#notice .wrapper .main-notice .important-links .links::-webkit-scrollbar-thumb {
    background: #e3e3e3;
    border-radius: 6px;
}
#notice .wrapper .main-notice .general-notice {
    width: 48%;
}

#notice .wrapper .main-notice .general-notice .notice {
    scrollbar-width: thin;
    scrollbar-color: #e3e3e3 #f4f4f4;
}

#notice .wrapper .main-notice .general-notice .heading-notice {
    background: var(--Primary, #b7815b);
    padding: 24px 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#notice .wrapper .main-notice .general-notice .heading-notice h2 {
    text-align: center;
    font-size: 22px;
    font-family: "poppins_medium";
    color: #fff;
}

#notice .wrapper .main-notice .general-notice .notice {
    background: #f4f4f4;
    padding: 20px;
    height: 450px;
    border-radius: 16px;
    overflow-y: scroll;
}

#notice .wrapper .main-notice .general-notice .notice li {
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

#notice .wrapper .main-notice .general-notice .notice li:last-child {
    margin-bottom: 0px;
}

#notice .wrapper .main-notice .general-notice .notice li a {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
#notice .wrapper .main-notice .general-notice .notice li a .notice-content {
}

#notice .wrapper .main-notice .general-notice .notice li a p {
    color: #000;
    font-size: 18px;
    font-family: "poppins_semibold";
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

#notice .wrapper .main-notice .general-notice .notice li a small {
    color: var(--dark-grey, #888);
}

#notice .wrapper .main-notice .general-notice .notice li a .notice-img {
    width: 20px;
}

#notice .wrapper .main-notice .general-notice .notice li a .notice-img img {
}

#notice .wrapper .main-notice .important-links {
    width: 48%;
}

#notice .wrapper .main-notice .important-links .heading-links {
    background: var(--Primary, #b7815b);
    padding: 24px 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#notice .wrapper .main-notice .important-links .heading-links h2 {
    text-align: center;
    font-size: 22px;
    font-family: "poppins_medium";
    color: #fff;
}

#notice .wrapper .main-notice .important-links .links {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 9px;
    height: 450px;
    overflow-y: scroll;
    border-bottom: 1px sloid #f4f4f4;
}

#notice .wrapper .main-notice .important-links .links li {
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

#notice .wrapper .main-notice .important-links .links li:last-child {
    margin-bottom: 0px;
}

#notice .wrapper .main-notice .important-links .links li a {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

#notice .wrapper .main-notice .important-links .links li a .notice-content {
}

#notice .wrapper .main-notice .important-links .links li a p {
    color: #000;
    font-size: 18px;
    font-family: "poppins_semibold";
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

#notice .wrapper .main-notice .important-links .links li a small {
    color: var(--dark-grey, #888);
}

#notice .wrapper .main-notice .important-links .links li a .notice-img {
    width: 20px;
}

#notice .wrapper .main-notice .important-links .links li a .notice-img img {
}

.about {
    padding: 100px 0px;
    background: #f9f9f9;
}

.about section.wrapper {
}

.about section.wrapper div.about-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.about section.wrapper div.about-top div.about-left {
    width: 45%;
    display: flex;
    justify-content: space-between;
}

.about section.wrapper div.about-top div.about-left div.about-img {
    width: 47%;
}

.about section.wrapper div.about-top div.about-left div.about-img img {
    border-radius: 10px;
    height: 280px;
    object-fit: cover;
}

.about section.wrapper div.about-top div.about-right {
    width: 49%;
}

.about section.wrapper div.about-top div.about-right h2 {
    font-size: 32px;
    font-family: "poppins_semibold";
    margin-bottom: 25px;
}

.about section.wrapper div.about-top div.about-right p {
    font-size: 18px;
}

.about section.wrapper div.about-bottom {
}

.about section.wrapper div.about-bottom div.about-cards {
    display: flex;
    justify-content: space-between;
}

.about section.wrapper div.about-bottom div.about-cards div.about-card {
    padding: 25px;
    width: 23%;
    border-radius: 16px;
    background: #fff;
}
.about section.wrapper div.about-bottom div.about-cards div.about-card {
    transition: transform 0.3s ease-in-out;
}

.about section.wrapper div.about-bottom div.about-cards div.about-card:hover {
    transform: scale(1.05);
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
}

.about section.wrapper div.about-bottom div.about-cards div.about-card div.about-icon {
    width: 30px;
    margin-bottom: 20px;
}

.about section.wrapper div.about-bottom div.about-cards div.about-card div.about-icon img {
}

.about section.wrapper div.about-bottom div.about-cards div.about-card h3 {
    color: var(--Primary, #b7815b);
    font-family: "poppins_semibold";
    font-size: 20px;
    margin-bottom: 20px;
}
.no-scroll{
    overflow: hidden;
}
.about section.wrapper div.about-bottom div.about-cards div.about-card p {
    font-size: 16px;
    color: var(--dark-grey, #888);
}
#Institute {
    padding: 100px 0px;
}

#Institute .wrapper .institute-main {
    display: flex;
    justify-content: space-between;
}

#Institute .wrapper .institute-main .institute-left {
    width: 23%;
}

#Institute .wrapper .institute-main .institute-left p {
    font-size: 18px;
    margin-bottom: 26px;
}

#Institute .wrapper .institute-main .institute-left .slider-arrow {
    display: flex;
    align-items: 
stretch;
    cursor: pointer;
}

#Institute .wrapper .institute-main .institute-left .slider-arrow .left-slider {
    background: var(--Primary, #b7815b);
    width: 45px;
    padding: 10px;
    border-radius: 50px;
    margin-right: 15px;
    transform: rotate(180deg);
}

#Institute .wrapper .institute-main .institute-left .slider-arrow .right-slider {
    width: 45px;
    padding: 10px;
    border-radius: 50px;
    background: #b7815b;
}

#Institute .wrapper .institute-main .institute-right {
    width: 70%;
}

#Institute .wrapper .institute-main .institute-right .institute-image {
    width: 90%;
}

#Institute .wrapper .institute-main .institute-right .institute-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px !important;
}

#Institute .wrapper .institute-main .institute-right .institute-box {
    position: relative;
    width: 33%;
}

#Institute .wrapper .institute-main .institute-right {
    display: flex;
    justify-content: flex-start;
}

#Institute .wrapper .institute-main .institute-right .institute-box .institute-card {
    width: 30%;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-image {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    background: #b7815b;
    display: none;
    opacity: 0;
    transition: opacity 0s ease;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box:hover
    .institute-image
    + .institute-card
    .institute-content {
    display: block;
    opacity: 1;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    h3 {
    color: #fff;
    font-size: 22px;
    font-family: "poppins_medium";
    margin-bottom: 10px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .institute-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .institute-location
    .location-icon {
    width: 15px;
    margin-right: 5px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .institute-location
    .location-icon
    img {
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .institute-location
    small {
    color: #fff;
    font-size: 16px;
    font-family: "poppins_light";
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    p {
    color: #fff;
    line-height: 25px;
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .view-more {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 19px;
    border-radius: 29px;
    border: 1px solid var(--Primary, #b7815b);
    background: #fff;
    width: 78%;
    position: absolute;
    bottom: 15px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .view-more
    .button {
    cursor: pointer;
    font-size: 17px;
    color: #b7815b;
    font-family: "poppins_medium";
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .view-more
    .view-img {
    width: 20px;
    margin-left: 15px;
}

#Institute
    .wrapper
    .institute-main
    .institute-right
    .institute-box
    .institute-card
    .institute-content
    .view-more
    .view-img
    img {
}

#study {
    padding: 70px 0px;
    background: #f9f9f9;
}

#study .wrapper {
}

#study .wrapper .main-study {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#study .wrapper .main-study .study-left {
    width: 37%;
}

#study .wrapper .main-study .study-left .title-box {
}

#study .wrapper .main-study .study-left .title-box h3 {
}

#study .wrapper .main-study .study-left p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 27px;
}

#study .wrapper .main-study .study-left .learn-more {
    padding: 14px 26px;
    width: 150px;
    border-radius: 29px;
    background: var(--Primary, #b7815b);
    cursor: pointer;
    text-align: center;
}

#study .wrapper .main-study .study-left .learn-more .button {
    color: #fff;
}

#study .wrapper .main-study .study-right {
    width: 57%;
}

#study .wrapper .main-study .study-right .study-options {
}

#study .wrapper .main-study .study-right .study-options ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

#study .wrapper .main-study .study-right .study-options ul li {
    width: 47%;
    padding: 15px;
    border-radius: 16px;
    background: var(--Primary, #b7815b);
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "poppins_medium";
}

#study .wrapper .main-study .study-right .study-options ul li .study-icons {
    width: 35px;
    margin-right: 20px;
}

#study .wrapper .main-study .study-right .study-options ul li .study-icons img {
}

#study .wrapper .main-study .study-right .study-options ul li h3 {
}

#platform {
    padding: 120px 0px;
}

#platform .wrapper {
}

#platform .wrapper .top-platform {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#platform .wrapper .top-platform .title-box {
}

#platform .wrapper .top-platform .title-box h3 {
}

#platform .wrapper .top-platform .main-more {
    display: flex;
    align-items: center;
}

#platform .wrapper .top-platform .main-more .button {
    margin-right: 10px;
    color: #b7815b;
}

#platform .wrapper .top-platform .main-more .main-more-img {
    width: 25px;
}

#platform .wrapper .top-platform .main-more .main-more-img img {
}

#platform .wrapper .main-platform {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
#platform .wrapper .main-platform .bottom-platform {
    position: relative;
    width: 30%;
    overflow: hidden;
}

#platform .wrapper .main-platform .bottom-platform .platform-image {
    z-index: 1;
}
#platform .wrapper .main-platform .bottom-platform .platform-image img {
    height: 270px;
    border-radius: 8px;
    object-fit: cover;
}
#platform .wrapper .main-platform .bottom-platform .hidden-platform {
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    height: 0;
    width: 100%;
    overflow: w;
    transition: height 0.5s ease;
    z-index: 2;
    position: absolute;
    bottom: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    pointer-events: none;
}

#platform .wrapper .main-platform .bottom-platform .platform-image:hover + .hidden-platform {
    height: 85px;
}

#platform .wrapper .main-platform .bottom-platform .hidden-platform .hidden-content h2 {
    font-size: 18px;
    text-align: center;
    padding: 15px;
    font-family: "poppins_medium";
}

#testimonial {
    padding: 120px 0px;
    background: url(../images/testimonial-bg.png);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #b7815b;
}

#testimonial .wrapper .top-testimonaial .testimonial {
}

#testimonial .wrapper .top-testimonaial .testimonial-arrow {
    display: flex;
    cursor: pointer;
    align-items: center;
}

#testimonial .wrapper .top-testimonaial .testimonial-arrow .testi-left-slider {
    transform: rotate(180deg);
    width: 45px;
    background: var(--Primary, #b7815b);
    margin-right: 20px;
    padding: 10px;
    border-radius: 50px;
}

#testimonial .wrapper .top-testimonaial .testimonial-arrow .testi-left-slider img {
    width: 25px;
}

#testimonial .wrapper .top-testimonaial .testimonial-arrow .testi-right-slider {
    width: 45px;
    background: var(--Primary, #b7815b);
    margin-right: 20px;
    padding: 10px;
    border-radius: 50px;
}

#testimonial .wrapper .top-testimonaial .testimonial-arrow .testi-right-slider img {
}

#testimonial section.wrapper {
}

#testimonial section.wrapper div.top-testimonaial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

#testimonial section.wrapper div.top-testimonaial div.title-box {
    margin-bottom: 0;
}

#testimonial section.wrapper div.top-testimonaial div.title-box h4 {
    color: #ffffff;
}

#testimonial section.wrapper ul {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

#testimonial section.wrapper ul li {
    /* margin-right: 22px; */
    width: 31%;
}
#testimonial section.wrapper ul li div.top {
    width: 100%;
    padding: 60px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
#testimonial section.wrapper ul li div.bottom {
    min-height: 300px;
    position: relative;
    background-color: #fafffa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 60px 15px 15px;
}

#testimonial section.wrapper ul li div.quote-img {
    margin: 20px auto;
    text-align: center;
    width: 18px;
}

#testimonial section.wrapper ul li div.quote-img img {
}

#testimonial section.wrapper ul li p {
    margin: 21px auto;
    font-family: "poppins_regular";
    font-size: 18px;
    width: 80%;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#testimonial section.wrapper ul li h6 {
    margin-bottom: 15px;
    font-family: "poppins_medium";
    font-size: 17px;
    text-align: center;
}

#testimonial section.wrapper ul li div.avatar-icon {
    position: absolute;
    width: 126px; /* Set a fixed width */
    height: 126px; /* Set a fixed height */
    top: -26%;
    left: 31%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonial section.wrapper ul li div.avatar-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the entire container */
}


#newsfeed {
    padding: 120px 0;
}

#newsfeed .wrapper {
}

#newsfeed .wrapper .news-top {
    display: flex;
    justify-content: space-between;
}

#newsfeed .wrapper .news-top .title-box {
}

#newsfeed .wrapper .news-top .title-box h3 {
}

#newsfeed .wrapper .news-top .main-more {
    display: flex;
}

#newsfeed .wrapper .news-top .main-more .button {
    margin-right: 10px;
    color: #b7815b;
}

#newsfeed .wrapper .news-top .main-more .main-more-img {
    width: 25px;
}

#newsfeed .wrapper .news-top .main-more .main-more-img img {
}

#newsfeed .wrapper .news-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

#newsfeed .wrapper .news-bottom .news-card {
    width: 24%;
    padding: 15px;
    border: 1px solid #E1E1E1;
    border-radius: 24px;
    background: #fff;
    transition: box-shadow ease-in-out 0.5s, border ease-in-out 0.5s; 
}
#newsfeed .wrapper .news-bottom .news-card:hover {
    border: #fff;
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
}

#newsfeed .wrapper .news-bottom .news-card .news-card-top {
}

#newsfeed .wrapper .news-bottom .news-card .news-card-top img {height: 195px;object-fit: cover;border-radius: 12px;}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom {
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom h3 {
    color: #232323;
    font-family: "poppins_semibold";
    margin-top: 15px;
    font-size: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom p {
    font-size: 17px;
    min-height: 86px;
    margin-top: 12px;
    line-height: 27px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 10px;
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content .news-calendar {
    display: flex;
}

#newsfeed
    .wrapper
    .news-bottom
    .news-card
    .news-card-bottom
    .news-bottom-content
    .news-calendar
    .calendar-img {
    width: 18px;
    margin-right: 10px;
}

#newsfeed
    .wrapper
    .news-bottom
    .news-card
    .news-card-bottom
    .news-bottom-content
    .news-calendar
    .calendar-img
    img {
}

#newsfeed
    .wrapper
    .news-bottom
    .news-card
    .news-card-bottom
    .news-bottom-content
    .news-calendar
    small {
    color: #b7815b;
    font-size: 15px;
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content .news-read {
    display: block;
    display: flex;
}

#newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content .news-read small {
    color: #b7815b;
    font-size: 16px;
    margin-right: 10px;
}

#newsfeed
    .wrapper
    .news-bottom
    .news-card
    .news-card-bottom
    .news-bottom-content
    .news-read
    .news-icon {
}

#newsfeed
    .wrapper
    .news-bottom
    .news-card
    .news-card-bottom
    .news-bottom-content
    .news-read
    .news-icon
    img {
}

#contact {
    padding: 120px 0px;
    background: #f9f9f9;
}

#contact {
}

#contact .main-contact {
    border-radius: 32px;
    background: #fff;
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 70px 90px;
    display: flex;
    justify-content: space-between;
}

#contact .main-contact .left-contact {
    width: 43%;
    border-right: 1px solid #EAEAEA;
}

#contact .main-contact .left-contact .logo-box {
    width: 38%;
    margin-bottom: 40px;
}

#contact .main-contact .left-contact .logo-box img {
}

#contact .main-contact .left-contact .contact-detail {
}

#contact .main-contact .left-contact .contact-detail .mail {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#contact .main-contact .left-contact .contact-detail .mail .mail-img {
    width: 23px;
    margin-right: 15px;
}

#contact .main-contact .left-contact .contact-detail .mail .mail-img img {
}

#contact .main-contact .left-contact .contact-detail .mail p {
    color: #000;
    font-size: 17px;
}

#contact .main-contact .left-contact .contact-detail .call {
    display: flex;
    margin-bottom: 30px;
}

#contact .main-contact .left-contact .contact-detail .call .call-img {
    margin-right: 12px;
}

#contact .main-contact .left-contact .contact-detail .call .call-img img {
}

#contact .main-contact .left-contact .contact-detail .call p {
    color: #000;
    font-size: 17px;
}

#contact .main-contact .left-contact .contact-detail .location {
    display: flex;
    width: 90%;
}

#contact .main-contact .left-contact .contact-detail .location .location-img {
    margin-right: 12px;
}

#contact .main-contact .left-contact .contact-detail .location .location-img img {
}

#contact .main-contact .left-contact .contact-detail .location p {
    color: #000;
    font-size: 17px;
}

#contact .main-contact .right {
    width: 50%;
}

#contact .main-contact .right .title-box {
}

#contact .main-contact .right .title-box h3 {
}

#contact .main-contact .right form {
}

#contact .main-contact .right form p {
}

#contact .main-contact .right form p input {
    width: 100%;
    padding: 25px 18px;
    border-bottom: 1px solid #ddd;
}

#contact .main-contact .right form p input::placeholder {
    font-size: 17px;
}

#contact .main-contact .right .submit {
    border-radius: 29px;
    padding: 18px 20px;
    color: #ffff;
    width: 100%;
    cursor: pointer;
    margin-top: 50px;
    text-align: center;
    background: var(--Primary, #b7815b);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
}

#contact .main-contact .right .submit .button {
    color: #ffff;
}
footer {
    background: #161616;
    padding: 45px 0px 20px 0px;
}

footer section.wrapper {
}

footer section.wrapper section.content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

footer section.wrapper section.content div.contact-news {
    width: 24%;
}

footer section.wrapper section.content div.contact-news h5 {
    color: #fff;
    font-family: "poppins_medium";
    font-size: 18px;
    margin-bottom: 20px;
}

footer section.wrapper section.content div.contact-news p {
    color: #ececec;
    margin-bottom: 10px;
    font-size: 18px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

footer section.wrapper section.content div.contact-news div.time {
    display: flex;
    align-items: center;
}

footer section.wrapper section.content div.contact-news div.time div.clock-container {
    width: 15px;
    margin-right: 15px;
}
footer section.wrapper section.content div.contact-news div.time div.clock-container img {
}

footer section.wrapper section.content div.contact-news div.time p {
    color: #ececec;
    margin-bottom: 0;
}



footer section.wrapper section.content div.contact-menu {
}

footer section.wrapper section.content div.contact-menu h5 {
    color: #fff;
    font-family: "poppins_medium";
    font-size: 18px;
    margin-bottom: 15px;
}

footer section.wrapper section.content div.contact-menu p {
    color: #ececec;
    margin-bottom: 10px;
    font-size: 16px;
}

footer section.wrapper section.content div.contact-menu p a {
    color: #ececec;
    color: #fff;
}

footer section.wrapper section.content div.contact-info {
}

footer section.wrapper section.content div.contact-info h5 {
    color: #fff;
    font-family: "poppins_medium";
    font-size: 18px;
    margin-bottom: 15px;
}

footer section.wrapper section.content div.contact-info p {
    color: #ececec;
    margin-bottom: 10px;
    font-size: 16px;
}

footer section.wrapper section.content div.contact-info p a {
 color: #fff;
}


footer section.wrapper section.content div.contact-about {
    width: 24%;
}

footer section.wrapper section.content div.contact-about h5 {
    color: #fff;
    font-family: "poppins_medium";
    font-size: 18px;
    margin-bottom: 15px;
}

footer section.wrapper section.content div.contact-about p {
    color: #ececec;
    font-size: 15px;
    margin-bottom: 20px;
}

footer section.wrapper section.content div.contact-about div.icons {
    cursor: pointer;
    display: flex;
    gap: 10px;
    width: 70%;
}

footer section.wrapper section.content div.contact-about div.icons div.icon {
    width: 38px;
}

footer section.wrapper section.content div.contact-about div.icons div.icon img {
}

footer div.bottom-line {
    padding: 10px;
    border-top: 1px solid #fff;
}

footer div.bottom-line div.details {
}

footer div.bottom-line div.details p {
    margin-top: 20px;
    text-align: center;
    color: #ffff;
}

footer div.bottom-line div.details p a {
    color: #04A5FF;
}

footer div.bottom-line div.details p span {
    color: #04a5ff;
}
.about section.wrapper div.about-top div.about-left div.about-img:last-child {
    margin: 0 auto 0px;
}

@media all and (max-width: 1380px) {
    #study .wrapper .main-study .study-right .study-options ul li h3 {
        font-size: 18px;
    }
    #study .wrapper .main-study .study-right {
        width: 57%;
    }
    #platform .wrapper .main-platform {
        gap: 50px;
    }
    #newsfeed
        .wrapper
        .news-bottom
        .news-card
        .news-card-bottom
        .news-bottom-content
        .news-calendar {
        margin-bottom: 10px;
    }
    #newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content {
        flex-wrap: wrap;
    }
    #contact .main-contact {
        padding: 70px 60px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        h3 {
        font-size: 18px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        p {
        font-size: 16px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more {
        padding: 10px 10px;
        text-align: center;
    }
    #study .wrapper .main-study .study-right .study-options ul li {
        padding: 10px;
    }

    #study .wrapper .main-study .study-right .study-options ul li h3 {
        font-size: 14px;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 23%;
    }
}
@media all and (max-width: 1280px) {
    header nav {
        width: 85%;
    }
    header nav ul li a {
        font-size: 19px;
    }
    #spotlight .wrapper .right {
        width: 32%;
    }
    #spotlight .wrapper .spotlight-left p {
        font-size: 17px;
    }
    #notice .wrapper .main-notice .important-links {
        width: 47%;
    }
    #notice .wrapper .main-notice .general-notice {
        width: 47%;
    }
    #notice .wrapper .main-notice .general-notice .notice li a p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 330px;
        font-size: 15px;
    }
    #notice .wrapper .main-notice .important-links .links li a p {
        max-width: 330px;
        font-size: 15px;
    }
    .about section.wrapper div.about-bottom div.about-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 32%;
    }
    .about section.wrapper div.about-top div.about-right p {
        font-size: 17px;
    }

    #about section.wrapper div.about-top div.about-left {
        width: 44%;
    }
    #Institute .wrapper .institute-main .institute-left p {
        font-size: 17px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        h3 {
        font-size: 17px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .institute-location {
        margin-bottom: 10px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more
        .button {
        font-size: 15px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more {
        padding: 9px 10px;
        text-align: center;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more
        .button {
        margin: 0 auto;
    }
    #Institute .wrapper .institute-main .institute-right .institute-image {
        width: 93%;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content {
        width: 93%;
        padding: 12px;
    }

    #platform .wrapper .main-platform {
        gap: 33px;
    }
    #newsfeed .wrapper .news-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 32%;
    }
    #contact {
        padding: 120px 60px;
        background: #f9f9f9;
    }
    #contact .main-contact .left-contact {
        width: 45%;
    }
    footer section.wrapper section.content {
        margin-bottom: 14px;
    }
    footer section.wrapper section.content div.contact-about div.icons {
        display: flex;
        justify-content: space-between;
        width: 80%;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content p {
        font-size: 14px;
    }
}
@media all and (max-width: 1080px) {
   
    #spotlight .wrapper .spotlight-left h2 {
        font-size: 44px;
    }
    #spotlight .wrapper .right {
        padding: 32px;
    }
    #spotlight .wrapper .spotlight-left .learn-button {
        padding: 11px 26px;
    }
    #spotlight .wrapper .spotlight-left p {
        font-size: 16px;
    }
    #spotlight .wrapper .right .admission-box .download-button .button {
        padding: 14px 10px;
        width: 191px;
        font-size: 15px;
    }
    #spotlight .wrapper .right .admission-box .chat-button .chat {
        padding: 14px 10px;
        width: 191px;
        font-size: 15px;
    }
    #spotlight .wrapper .main-spotlight {
        flex-wrap: wrap;
    }
    #notice .wrapper .main-notice .general-notice .notice {
        padding: 10px;
    }
    #notice .wrapper .main-notice .important-links .links {
        padding: 10px;
    }
    #title-box h3 {
        font-size: 30px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 39%;
    }

    #Institute .wrapper .institute-main .institute-right .institute-image {
        width: 93%;
        margin: 0 auto;
    }
    .title-box {
        margin-bottom: 20px;
    }
    #Institute .wrapper .institute-main .institute-left .slider-arrow {
        width: 45%;
    }
    .title-box h3 {
        font-size: 29px;
    }

    #platform .wrapper .main-platform .bottom-platform {
        width: 47%;
    }
    #Institute .wrapper .institute-main {
        flex-wrap: wrap;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content {
        width: 100%;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        h3 {
        font-size: 23px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        p {
        font-size: 16px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more
        .button {
        font-size: 18px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content
        .view-more {
        padding: 12px 25px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content {
        padding: 15px;
    }
    #study .wrapper .main-study {
        flex-wrap: wrap;
    }

    #study .wrapper .main-study .study-left .learn-more {
        margin: 0 auto;
    }

    #study .wrapper .main-study .study-left {
        width: 80%;
        margin: 0 auto 50px;
        text-align: center;
    }

    #study .wrapper .main-study .study-right .study-options ul li h3 {
        font-size: 18px;
    }

    #study .wrapper .main-study .study-right .study-options ul li {
        padding: 15px;
    }
    #study .wrapper .main-study .study-right {
        width: 80%;
        margin: 0 auto;
    }
    #study .wrapper .main-study .study-right {
        width: 97%;
    }
    #testimonial section.wrapper ul li div.bottom {
        padding: 15px 15px 15px;
    }
    #newsfeed .wrapper .news-bottom {
        gap: 40px;
    }
    #newsfeed .wrapper .news-bottom .news-card .news-card-bottom .news-bottom-content {
        align-items: flex-start;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 40%;
    }
    #contact .main-contact {
        padding: 70px 30px;
    }
    footer section.wrapper section.content div.contact-about {
        width: 26%;
    }
}
@media all and (max-width: 980px) {

    header nav ul {
        display: none;
    }
    header nav ul li a {
        color: #fff;
        font-size: 21px;
    }
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 25px;
    }
    nav ul.show-menu {
        display: flex;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.884);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        z-index: 2;
        padding: 20px 0;
        height: calc(100vh - 72px);
        justify-content: flex-start;
    }
    nav ul.show-menu li {
        margin: 20px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
    header .logo {
        width: 73px;
    }
    #spotlight {
        height: calc(100vh - 104px);
    }
    
    #spotlight .wrapper .spotlight-left {
        width: 90%;
        margin: 0 auto 50px;
    }
    #spotlight .wrapper .right .right-button {
        display: flex;
        justify-content: space-between;
    }
    #spotlight .wrapper .right {
        width: 78%;
        margin: 0 auto;
    }
    #contact .main-contact .left-contact {
        border-right: none;
    }
    #spotlight {
        padding: 50px 0px;
    }
    #spotlight .wrapper .right .admission-box .right-button .download-button {
        margin-bottom: 0px;
    }
    br {
        display: none;
    }
    #spotlight .wrapper .right .admission-box h3 {
        font-size: 22px;
    }
    #spotlight .wrapper .right {
        padding: 20px;
    }
    #spotlight .wrapper .right .admission-box .download-button .button {
        padding: 10px 10px;
    }
    #spotlight .wrapper .right .admission-box .chat-button .chat {
        padding: 10px 10px;
    }
    #notice .wrapper .main-notice {
        flex-wrap: wrap;
    }
    #notice .wrapper .main-notice .general-notice {
        width: 70%;
        margin: 0 auto 50px;
    }
    #notice .wrapper .main-notice .important-links {
        width: 70%;
        margin: 0 auto;
    }
    #notice .wrapper .main-notice .general-notice .notice {
        height: 300px;
    }
    #notice .wrapper .main-notice .important-links .links {
        height: 300px;
    }
    #notice .wrapper .main-notice .general-notice .heading-notice {
        padding: 16px 40px;
    }
    #notice .wrapper .main-notice .important-links .heading-links {
        padding: 16px 40px;
    }
    #notice .wrapper .main-notice .general-notice {
        width: 80%;
    }
    #notice .wrapper .main-notice .important-links {
        width: 80%;
    }
    .about section.wrapper div.about-top {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .about section.wrapper div.about-top div.about-right {
        width: 80%;
        margin: 0 auto 40px;
        text-align: center;
    }
    .about section.wrapper div.about-top div.about-left {
        width: 60%;
        margin: 0 auto;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 45%;
    }
    .about section.wrapper div.about-top div.about-right {
        width: 90%;
    }
    .about section.wrapper div.about-top div.about-left {
        width: 75%;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 46%;
    }
    #Institute .wrapper .institute-main .institute-left {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    #Institute .wrapper .institute-main .institute-right {
        width: 85%;
        margin: 0 auto;
    }
    #Institute .wrapper .institute-main .institute-left .slider-arrow {
        display: none;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content h3 {
        font-size: 20px;
    }
    #Institute
        .wrapper
        .institute-main
        .institute-right
        .institute-box
        .institute-card
        .institute-content {
        width: 100%;
    }
    #platform .wrapper .main-platform .bottom-platform {
        width: 46%;
        margin: 0 auto;
    }
    #testimonial section.wrapper ul li div.bottom {
        padding: 35px 15px 15px;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 46%;
    }
    #contact .main-contact {
        padding: 70px 30px;
        flex-wrap: wrap;
    }
    #contact .main-contact .left-contact {
        width: 70%;
        margin-bottom: 40px;
    }
    #contact .main-contact {
        padding: 70px 61px;
    }
    #contact .main-contact .right {
        width: 100%;
    }
    .title-box h3 {
        font-size: 26px;
    }
    footer section.wrapper section.content {
        flex-wrap: wrap;
    }
    footer section.wrapper section.content div.contact-news {
        width: 90%;
        margin-bottom: 60px;
    }
    footer section.wrapper section.content div.contact-about {
        width: 39%;
    }
    footer section.wrapper section.content {
        margin-bottom: 30px;
    }
    #Institute {
        padding: 70px 0px;
    }
}
@media all and (max-width: 768px) {
    .about section.wrapper div.about-top div.about-left {
        width: 70%;
    }
    .about {
        padding: 70px 0px;
    }
    #testimonial {
        padding: 70px 0px;
    }
    #notice {
        padding: 70px 0px;
    }
   
    .about section.wrapper div.about-top div.about-right {
        width: 95%;
    }
   
    #study .wrapper .main-study .study-right .study-options ul li h3 {
        font-size: 14px;
    }

    #platform .wrapper .main-platform .bottom-platform .platform-image:hover + .hidden-platform {
        height: 79px;
    }
    #platform .wrapper .main-platform .bottom-platform .hidden-platform .hidden-content h2 {
        font-size: 18px;
        padding: 19px;
    }
    #testimonial section.wrapper ul li div.bottom {
        padding: 15px 15px 15px;
    }
    #testimonial section.wrapper ul li p {
        width: 100%;
    }
    #testimonial section.wrapper ul li div.top {
        padding: 60px 0;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 70%;
    }
    #contact .main-contact .left-contact {
        width: 100%;
        margin-bottom: 40px;
    }
    #contact .main-contact .left-contact .logo-box {
        width: 30%;
        margin-bottom: 40px;
    }
    #contact .main-contact {
        padding: 45px 61px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content p {
        font-size: 16px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content .view-more {
        padding: 10px 16px;
        width: 81%;
    }
}
@media all and (max-width: 640px) {
    #platform .wrapper .main-platform .bottom-platform .hidden-platform .hidden-content h2 {
        font-size: 16px;
    }
    footer section.wrapper section.content div.contact-news {
        width: 90%;
        margin-bottom: 30px;
    }
    footer section.wrapper section.content div.contact-about {
        margin-top: 30px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content p {
        font-size: 16px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    #newsfeed .wrapper .news-bottom .news-card .news-card-bottom p {
        font-size: 16px;
    }
    #spotlight .wrapper .spotlight-left h2 {
        font-size: 35px;
    }
    #spotlight .wrapper .right {
        padding: 20px;
        flex: auto;
    }
    #spotlight .wrapper .spotlight-left p {
        font-size: 15px;
    }
    #spotlight .wrapper .right .admission-box .right-button .download-button .button {
        width: 172px;
    }
    #spotlight .wrapper .right .admission-box .right-button .chat-button .chat {
        width: 172px;
    }
    #notice .wrapper .main-notice .general-notice {
        width: 95%;
    }
    #notice .wrapper .main-notice .important-links {
        width: 95%;
    }
    #notice .wrapper .main-notice .general-notice .heading-notice h2 {
        font-size: 20px;
    }
    #notice .wrapper .main-notice .important-links .heading-links h2 {
        font-size: 20px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 72%;
    }
    .about section.wrapper div.about-top div.about-left {
        width: 70%;
    }
    .title-box h3 {
        font-size: 24px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 80%;
    }
    .about section.wrapper div.about-top div.about-right p {
        font-size: 15px;
    }
    .about section.wrapper div.about-top div.about-left {
        width: 95%;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 90%;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card h3 {
        font-size: 18px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card {
        width: 95%;
    }
    #study .wrapper .main-study .study-right .study-options ul li {
        width: 95%;
        margin: 0 auto;
    }
    #study .wrapper .main-study .study-left {
        width: 96%;
    }
    #platform .wrapper .main-platform .bottom-platform {
        width: 80%;
    }
    #platform {
        padding: 70px 0px;
    }
    #testimonial section.wrapper ul li div.bottom {
        padding: 60px 15px 15px;
    }
    #newsfeed {
        padding: 70px 0;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 80%;
    }
    #contact {
        padding: 120px 25px;
    }
    #contact .main-contact .left-contact .contact-detail .mail p {
        font-size: 15px;
    }
    #contact .main-contact {
        padding: 45px 35px;
    }
    #contact {
        padding: 70px 25px;
    }
    #contact .main-contact .right .submit {
        padding: 11px 18px;
    }
    footer section.wrapper section.content div.contact-about {
        width: 100%;
        margin-top: 30px;
    }
    footer section.wrapper section.content div.contact-about div.icons {
        width: 40%;
        margin: 0 auto;
    }
    footer div.bottom-line div.details p {
        font-size: 14px;
    }
    footer section.wrapper section.content div.contact-info h5 {
        margin-bottom: 18px;
    }
    footer section.wrapper section.content div.contact-about h5 {
        margin-bottom: 18px;
    }
    footer section.wrapper section.content div.contact-about div.icons {
        width: 53%;
    }
    footer section.wrapper section.content div.contact-about div.icons {
        width: 70%;
    }
    #Institute .wrapper .institute-main .institute-right .institute-image {
        width: 80%;
        margin: 0 auto;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content {
        width: 85%;
        left: 32px;
    }
}
@media all and (max-width: 480px) {
    #Institute .wrapper .institute-main .institute-right .institute-image img {
        aspect-ratio: 5/5;
        width: 100%;
    }
    footer section.wrapper section.content div.contact-news p {     
        font-size: 15px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box {
        margin-right: 0;
    }
    #testimonial section.wrapper ul li {
        margin-right: 0px;
    }
    #newsfeed .wrapper .news-top .title-box {
        margin-bottom: 0;
    }
    #newsfeed .wrapper .news-top {
        margin-bottom: 20px;
    }
    .about section.wrapper div.about-bottom div.about-cards div.about-card p {
        font-size: 15px;
    }
    #newsfeed .wrapper .news-bottom .news-card .news-card-bottom h3 {
        font-size: 17px;
    }
    #newsfeed .wrapper .news-bottom .news-card .news-card-bottom p {
        font-size: 14px;
        line-height: normal;
    }

    #platform .wrapper .top-platform .title-box {
        margin-bottom: 0px;
    }
    #newsfeed .wrapper .news-top .title-box h3 {
        margin-bottom: 0px;
    }
    #events {
        padding: 50px 0px;
    }
   
    #contact {
        padding: 50px 0px;
    }
    #events {
        padding: 50px 0px;
    }
    #testimonial {
        padding: 50px 0px;
    }
    #platform {
        padding: 50px 0px;
    }
    #newsfeed {
        padding: 50px 0;
    }
    #notice {
        padding: 50px 0px;
    }
    #contact .main-contact .left-contact .contact-detail .mail p {
        font-size: 14px;
    }
    #contact .main-contact .left-contact .logo-box {
        width: 30%;
    }
    #contact .main-contact .left-contact .contact-detail .call p {
        font-size: 14px;
    }
    #contact .main-contact .left-contact .contact-detail .location p {
        font-size: 14px;
    }
    #contact .main-contact {
        border-radius: 15px;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        padding: 8px;
    }
    #spotlight .wrapper .right .right-button {
        display: block;
    }
    #spotlight .wrapper .right .admission-box .right-button .download-button .button {
        margin-bottom: 20px;
    }
    #spotlight .wrapper .spotlight-left {
        width: 95%;
        margin: 0 auto 30px;
    }
    #spotlight .wrapper .spotlight-left h2 {
        font-size: 30px;
    }
    #spotlight .wrapper .spotlight-left p {
        margin-bottom: 20px;
    }
    #spotlight .wrapper .right .admission-box h3 {
        font-size: 20px;
    }
    #spotlight .wrapper .right .admission-box .right-button .download-button .button {
        margin-bottom: 15px;
    }
    #notice .wrapper .main-notice .general-notice .notice li a p {
        max-width: 217px;
    }
    #notice .wrapper .main-notice .important-links .links li a p {
        max-width: 217px;
    }
    #Institute .wrapper .institute-main .institute-left {
        width: 95%;
    }
    #Institute .wrapper .institute-main .institute-left p {
        font-size: 14px;
    }
    .about {
        padding: 50px 0px;
    }
    #Institute {
        padding: 50px 0px;
    }
    #study .wrapper .main-study .study-left p {
        font-size: 16px;
    }
    #platform .wrapper .main-platform .bottom-platform {
        width: 100%;
    }
    #testimonial section.wrapper ul li div.bottom {
        padding: 35px 15px 15px;
    }
    #testimonial section.wrapper ul li div.avatar-icon {
        width: 35%;
    }
    #testimonial section.wrapper div.top-testimonaial {
        display: flex;
        flex-wrap: wrap;
    }
    #testimonial section.wrapper div.top-testimonaial div.title-box {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    #testimonial .wrapper .top-testimonaial .testimonial-arrow {
        margin: 0 auto;
    }
    #newsfeed .wrapper .news-bottom .news-card {
        width: 97%;
    }
    #contact .main-contact .left-contact .contact-detail .mail {
        display: block;
    }
    #contact .main-contact .left-contact .contact-detail .mail .mail-img {
        margin-bottom: 10px;
        width: 20px;
    }
    #contact .main-contact .left-contact .contact-detail .call {
        display: block;
    }
    #contact .main-contact .left-contact .contact-detail .call .call-img {
        margin-bottom: 10px;
        width: 20px;
    }

    #contact .main-contact .left-contact .contact-detail .location .location-img {
        margin-bottom: 10px;
        width: 20px;
    }
    #contact .main-contact .left-contact .contact-detail .location {
        display: block;
        width: 100%;
    }
    #contact .main-contact {
        padding: 25px 15px;
    }
    footer section.wrapper section.content div.contact-.about div.icons {
        width: 52%;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content h3 {
    font-size: 17px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content p {
        font-size: 15px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content {
        width: 86%;
        left: 24px;
    }
    #spotlight .wrapper .right .admission-box .right-button .download-button .button {
        width: 200px;
    }
    #spotlight .wrapper .right .admission-box .right-button .chat-button .chat {
        width: 200px;
    }

}
@media all and (max-width: 400px) {
    #Institute .wrapper .institute-main .institute-right .institute-image {
        width: 94%;
        margin: 0 auto;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content {
        width: 95%;
        left: 6px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content .view-more .button {
        font-size: 15px;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content h3 {
        font-size: 19px;
    }




}
@media all and (max-width: 360px) {
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content h3 {
        font-size: 16px;
    }
    #platform .wrapper .main-platform .bottom-platform {
        width: 100%;
    }
    #Institute .wrapper .institute-main .institute-right .institute-box .institute-card .institute-content p {
        font-size: 14px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    #spotlight .wrapper .right .admission-box h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }
    #spotlight .wrapper .spotlight-left h2 {
        font-size: 26px;
    }
    #spotlight .wrapper .spotlight-left .learn-button {
        padding: 9px;
        width: 135px;
    }
    #spotlight .wrapper .spotlight-left .learn-button .button {
        color: #fff;
        font-size: 15px;
    }
    #notice .wrapper .main-notice .general-notice .notice li a p {
        max-width: 190px;
        font-size: 14px;
    }
    #notice .wrapper .main-notice .important-links .links li a p {
        max-width: 198px;
        font-size: 14px;
    }
    #study .wrapper .main-study .study-left p {
        font-size: 14px;
        line-height: 21px;
    }
    #platform .wrapper .main-platform .bottom-platform {
        width: 95%;
    }

    #platform .wrapper .top-platform .title-box {
        margin-bottom: 0px;
    }
    .title-box h3 {
        font-size: 26px;
    }
    contact .main-contact .left-contact .logo-box {
        width: 41%;
        margin-bottom: 40px;
    }
    #contact .main-contact .left-contact .contact-detail .location p {
        font-size: 14px;
    }
    #contact .main-contact .left-contact .contact-detail .call p {
        font-size: 14px;
    }
    #contact .main-contact .left-contact .logo-box {
        width: 41%;
    }
}
@media all and (max-width: 320px) {
}



.dropdown {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
}

.dropdown_content{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 60px;
    left: -60px;
    overflow-y: scroll;
    height: 200px;
    border-radius: 5px;
}

.dropdown_content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 240px;
    font-size: 18px;
    border-bottom: 1px solid #999;
}

.dropdown_content a{
    background-color: #f1f1f1;
}

/* .dropdown:hover .dropdown_content {
    display: block;
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
    transform-origin: top center;
    animation: rotateX 300ms ease-in-out forwards; */


.slider_img{
    display: block;
    width: 12px;
    margin-left: 5px;
}
.active_dropdown{
    display: block;
    border-bottom: 1px solid #999;
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
    transform-origin: top center;
    animation: rotateX 300ms ease-in-out forwards;
}