@import url('https://fonts.googleapis.com/css2?family=Kanit: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');

body {
  padding: 0px;
  margin: 0px;
  font-family: "Kanit", sans-serif !important;
  overflow-x: hidden;
}
.underlineclass{
  text-decoration: line-through !important;
}
a {
  text-decoration: none !important;
}
ul li{
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 300 !important;
}

/* Dark mode area */
/* Switch Style */
.switch {
  position: fixed;
  display: inline-block;
  width: 60px;
  height: 34px;
  z-index: 99999;
  right: 30px;
  top: 50%;
  rotate: 90deg;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.overview-box  ul li {
  font-weight: 300;
  font-size: 15px;
  line-height: 213%;
  color: rgba(255, 255, 255, 0.79);
  text-align: justify;
}

/* Slider background */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262932;
  border-radius: 34px;
  transition: background-color 0.4s;
}

/* Slider toggle circle */
.slider::before {
  position: absolute;
  content: "🌙";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  transition: transform 0.4s ease;
}

.slider::after {
  position: absolute;
  content: "☀️";
  height: 26px;
  width: 26px;
  left: 30px;
  bottom: 4px;
  background-color: none;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  transition: transform 0.4s ease;
}

/* Checked state (move circle right, change icon to sun) */
input:checked+.slider::before {
  transform: translateX(26px);
  content: "☀️";
}

input:checked+.slider::after {
  content: "🌙";
  left: 2px;

}


/* Dark mode styles (default) */
body.dark-mode {
  background-color: #18191C;
}

/* Light mode styles */
body.light-mode {
  background-color: #fff;
}

body.light-mode p {
  color: #666;
  font-weight: 300;
}

body.light-mode h2 {
  color: #18191C;
}

body.light-mode .qte-div {
  background-color: #f5f5f5;
}

body.light-mode .nws-evnts {
  background-color: #f5f5f5;
}

body.light-mode .sub-div {
  background-color: #2A63BF;
}

body.light-mode .custom-nav-wrapper button {
  color: #666;
}

body.light-mode .custom-nav-wrapper button:hover {
  color: #59ba89;
}

body.light-mode .dtyl-btn {
  color: #000;
  border: 1px solid #000;
}

body.light-mode .ace-semih1 {
  color: #666;
}

body.light-mode .hr1 {
  border: 1px solid rgba(0, 0, 0, 0.6);
}

body.light-mode .vctr-h1 {
  color: #18191C;
}

body.light-mode .vi-p span {
  color: #18191C;
}

body.light-mode .ns-pera svg {
  background-color: #000;
  border-radius: 30px;
}

body.light-mode .tab-for-program {
  border: 1px solid #ebebeb !important;
  color: #666 !important;
  background-color: #f5f5f5;
}

body.light-mode .bottom-line {
  border: 1px solid #ebebeb !important;
}

body.light-mode .left-quoteh1 {
  font-weight: 500;
}

body.light-mode .institute-overview-sec h2 {
  font-weight: 500;
}

body.light-mode .cnct-cntrl {
  background: #f5f5f5 !important;
  border: 1px solid #ebebeb !important;
  color: #666;
}

body.light-mode .cnct-cntrl::placeholder {
  color: #666 !important;
}

body.light-mode .cnct-cntrl {
  color: #666 !important;
}

body.light-mode .cntct-sec {
  background-color: #f5f5f5;
}

body.light-mode .location-div {
  background-color: #f5f5f5;
  border: 1px solid #ebebeb !important;
}

body.light-mode .line-dash {
  border-top: 1.5px dashed rgba(0, 0, 0, 0.2) !important;
}

body.light-mode .view-pera1 span {
  color: #000;
}

body.light-mode .quote-h6 {
  color: #666;
}

body.light-mode .partners {
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
}
body.light-mode .cndtion-li{
  color: #666;
}

body.light-mode ul li{
  color: #666 !important;
}

/* Dark mode area close */

.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #18191C;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loading-wrapper img {
  width: 240px;
}



/* back to top arrow */
/* Scroll to top button styles */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: #5EA655;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s;
}

/* Progress ring */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke: #ebebeb;
  stroke-width: 6;
  stroke-linecap: round;
}

.progress-ring circle.progress {
  stroke: #5EA655 !important;
}

/* back to top arrow close */

body.loaded .loading-wrapper {
  display: none;
}

.navbar-collapse {
  justify-content: end !important;
}

.logo-image {
  width: 210px;
}

:root {
  --primary-color: #fff;
  --secondary-color: #000;
  --black-color: #282a39;
  --ash-color: #666;

}

.navbar {
  padding: 25px 0px !important;
  position: absolute;
}

.nav-list a {
  font-weight: 400;
  font-size: 17px;
  color: var(--primary-color);
  padding: 0px 12px !important;
}

.dropdown-menu a {
  color: var(--primary-color);
}

.dropdown-menu.show {
  background: #262932;
}

.dropdown-menu a:hover {
  background: transparent;
}

.nav-link:focus,
.nav-link:hover {
  color: #5EA655 !important;
}

.nav-list .nav-item .active {
  color: #5EA655 !important;
}

.nav-list a:hover {
  color: #5EA655 !important;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0px !important;
  transition: 1s;
  z-index: 99999;
}

.language-btn {
  border-radius: 66px;
  width: 50px;
  height: 50px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  background-color: #5EA655;
  margin-left: 20px;
  transition: 0.5s;
  border: none;
}

.main-hd {
  font-weight: 800;
  font-size: 70px;
  line-height: 80px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrow-img {
  width: 14px;
}

.main-pagebtn {
  border-radius: 66px;
  padding: 10px 25px;
  background-color: #5EA655;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
}

.main-pagebtn svg {
  width: 28px;
  height: 28px;
  margin-left: 7px;
}


.main-pagebtn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}


.instiute-pagebtn {
  border-radius: 66px;
  padding: 10px 25px;
  background-color: #5EA655;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
  z-index: 9999;
}

.instiute-pagebtn svg {
  width: 28px;
  height: 28px;
  margin-left: 7px;
}

.instiute-pagebtn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.view-morebtn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.prprtydetyl-btn:hover svg {
  rotate: 45deg;
  transition: 1s;
}

.dtyl-btn:hover svg {
  rotate: 45deg;
  transition: 1s;
}

.main-pagebtn:hover svg {
  rotate: 28deg;
  transition: 1s;
}

.view-morebtn:hover svg {
  rotate: 45deg;
  transition: 1s;
}


.premium-prprtybtn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.dtyl-btn:hover {
  color: #fff !important;
  background-color: #5EA655;
  transform: translateY(-2px);
  border: none !important;
}

.nav-btn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: none;
}

/* search seaction */
.search-btn {
  background: none;
  border: none;
}

.search-btn svg {
  font-size: 25px;
}

/* search seaction close */

.prprtydetyl-btn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.team-h1 {
  margin-top: 60px;
}

.career-btn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.careercnttc-btn:hover {
  color: #59ba89;
  background-color: transparent;
  transform: translateY(-2px);
  border: 1px solid #59ba89;
}

.cnttc-btn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transform: translateY(-2px);
  border: 1px solid var(--secondary-color);
}

.home-content {
  position: absolute;
  transform: translate(-0%, -50%);
  top: 50%;
  left: 11%;
}


.home-img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.banner-area {
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background-image: linear-gradient(#18191C, rgba(0, 0, 0, 0.0)) !important;
}

.banner-overlay2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.0), #18191C) !important;
}

/* home about  */
.view-hd {
  font-weight: 500;
  font-size: 48px;
  line-height: 118%;
  color: var(--primary-color);
}

.view-morebtn {
  border-radius: 66px;
  width: 186px;
  height: 44px;
  background: var(--secondary-color);
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 25px;
  transition: 0.5s;
  border: none;
}

.view-pera1 {
  font-weight: 300;
  font-size: 15px;
  line-height: 213%;
  color: rgba(255, 255, 255, 0.79);
  text-align: justify;
}

.view-pera2 {
  font-weight: 300;
  font-size: 15px;
  line-height: 213%;
  color: rgba(255, 255, 255, 0.79);
  text-align: justify;
}

.prprtydtyl-div {
  margin-top: 100px;
}

.peaple-img {
  width: 100%;
  height: 363px;
  object-fit: cover;
  border-radius: 20px;

}

.prprty-img {
  width: 100%;

}

.prprty-img3 {
  width: 100%;
}

.nuber-h1 {
  font-weight: 400;
  font-size: 40px;
  color: var(--primary-color);
  margin: 0px !important;
}

.dtyl-h1 {
  font-weight: 300;
  font-size: 30px;
  color: var(--primary-color);
}

.dtyl-pera {
  font-weight: 300;
  font-size: 15px;
  line-height: 200%;
  color: #adadad;
  padding-top: 5px;
}

.dtyl-btn {
  border: 0.97px solid #fff;
  border-radius: 66px;
  width: 176px;
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  background-color: transparent;
  transition: 0.5s;
  margin-top: 8px;
}

.details-div {
  text-align: center;
  padding-top: 25px;
}

.common-space {
  margin-top: 100px;
}

.anouncment-box {
  min-width: 221px;
  min-height: 55px;
  background-color: #5EA655;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.anouncment-box::after {

  position: absolute;
  content: "";
  rotate: 45deg;
  width: 39px;
  height: 39px;
  background-color: #5EA655;
  right: -20px;
  z-index: 999;
}

.anouncment-box h5 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0px;
}

.text-box p {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}



.hero-section {
  background: url('/images/abt-bg.jpg') no-repeat center center;
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: top;
  color: white;
  position: relative;
  margin-top: 150px;
}

.hero-overlay {
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(24, 25, 29, 0.9));
  width: 100%;
  height: 700px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero-text h1 {
  line-height: 109.00000000000001%;
  font-weight: 500;
  font-size: 60px;
  padding-bottom: 10px;
}

.hero-text h5 {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #F0F0F0;
  padding-bottom: 30px;

}

.play-img {
  width: 280px;
  height: 280px;
}


.custom-box {
  background-color: rgba(42, 99, 191, 1);
  border-radius: 20px;
  padding: 50px 20px;
  position: relative;
  width: 100%;
  height: 232px;
  text-align: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-box4 {
  background-color: #C55B25;
  border-radius: 20px;
  padding: 50px 20px;
  position: relative;
  width: 100%;
  height: 232px;
  text-align: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.custom-box5 {
  background-color: #D7A547;
  border-radius: 20px;
  padding: 50px 20px;
  position: relative;
  width: 100%;
  height: 232px;
  text-align: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


.custom-box3 {
  background-color: #5EA655;
  border-radius: 20px;
  padding: 50px 20px;
  position: relative;
  width: 100%;
  height: 232px;
  text-align: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.icon-img {
  width: 58px;
  height: 58px;

}

.custom-box2 {
  background-color: #5C5BB6;
  border-radius: 20px;
  padding: 20px 20px;
  position: relative;
  width: 100%;
  height: 232px;
  text-align: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-box .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background-color: #2b2d30;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #1b1d22;
  /* match background to "cut" into card */
}
.custom-box5 .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background-color: #2b2d30;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #1b1d22;
  /* match background to "cut" into card */
}

.custom-box4 .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background-color: #2b2d30;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #1b1d22;
  /* match background to "cut" into card */
}

.custom-box2 .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background-color: #2b2d30;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #1b1d22;
  /* match background to "cut" into card */
}

.custom-box3 .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background-color: #2b2d30;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #1b1d22;
  /* match background to "cut" into card */
}

.custom-box .icon {
  margin-bottom: 15px;
}

.custom-box2 .icon {
  margin-bottom: 15px;
}

.custom-box3 .icon {
  margin-bottom: 15px;
}

.label {
  font-size: 22px;
  line-height: 125%;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 12px;

}







.hero1-section {
  position: relative;
  background: url('/images/hero-bg.jpg') no-repeat center center/cover;
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: top;
  margin-top: 150px;
}

.hero1-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  padding: 0 2rem;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
}

.hero1-content {
  max-width: 600px;
}

.hero-text {
  font-size: 45px;
  font-weight: medium;
  color: var(--primary-color);
}

.hero1-content h3 {
  font-size: 55px;
  font-weight: medium;
  line-height: 108.7%;
  color: #fff;
}

.hero1-content h5 {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #ccc;
}

.institut-h1 {
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  color: #5ea655;
}

.institute-div {
  border-radius: 38px;
  width: 100%;
  min-height: 430px;
  background-image: url(/images/bluafter.png);
  align-content: center;
  position: relative;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #2A63BF;
  padding: 50px;
  position: relative;
}


.instit-logoimg {
     width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 100%;
}

.instite-h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 139%;
  color: var(--primary-color);
}

.btn-institute {
  border-radius: 66px;
  padding: 8px 25px;
  background: #18191c;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
}

.btn-institute:hover {
  background-color: #fff;
  color: #000;
}

.institute-div1 {
  border-radius: 38px;
  width: 100%;
  min-height: 430px;
  background-image: url(/images/pinkafter.png);
  align-content: center;
  position: relative;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #5C5BB6;
  padding: 50px;
}

.sction-instediv {
  margin-top: 130px;
}

.grp-pera {
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.79);
  padding-top: 5px;
  padding-left: 10px;

}

.grp-img {
  width: 90px;
  height: 38px;
  object-fit: cover;
}

.trnding-crs {
  margin-top: 130px;
}

.why-choose-section {
  margin-top: 130px;
}

.course-box {
  position: relative;
}

.course-box img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.course-overlay {
  position: absolute;
  background: linear-gradient(180deg, rgba(24, 25, 28, 0) 0%, rgba(10, 10, 11, 0.9) 46.63%, #0a0a0b 100%);
  bottom: 0;
  opacity: 1;
  width: 100%;
  border-radius: 15px;
  justify-content: end;
  padding: 30px 30px;

}

.course-h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: var(--primary-color);
}

.course-pera {
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
  padding-right: 15px;
  margin-top: 5px;
}

.dtyls-btn {
  border-radius: 66px;
  padding: 7px 18px;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.5s;
  border: 1px solid #5ea655;
}
.dtyls-btn:hover{
  background-color: #fff;
  color: #000;
  border:1px solid #fff;
}

.dtyls-btn img {
  width: 25px !important;
  height: 25px !important;
  margin-left: 5px !important;
}

.dtyls1-btn {
  border-radius: 66px;
  padding: 7px 20px;
  background-color: #5ea655;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
}
.dtyls1-btn:hover{
  background-color: #fff;
  color: #000;
}

.dtyls1-btn img {
  width: 25px !important;
  height: 25px !important;
  margin-left: 5px !important;
}

.image-wrapper {
  display: flex;
  width: 100%;

}

.image-wrapper .user-image {
  position: relative;
  margin: 0 10px;
  height: 400px;
  width: 21%;
  flex-grow: 1;
  overflow: hidden;
  transition: all 0.7s ease;
  border-radius: 15px;
}

.image-wrapper .user-image img {
  height: 115%;
  width: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.image-wrapper .user-image.active {
  width: 58%;
}

.image-wrapper .user-image:hover {
  width: 58%;
}

.image-wrapper .user-image.active img {
  height: 100%;
}

/* Text overlay styles */
.image-text {
  position: absolute;
  inset: 0;
  /* full area */
  display: flex;
  align-items: end;
  color: #fff;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.4);
  padding: 0px 35px 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  border-radius: 15px;
  transition: 2s;
}

.user-image.active .image-text {
  opacity: 1;
}

.left-quoteh1 {
  font-weight: 400;
  font-size: 45px;
  line-height: 129%;
  color: var(--primary-color);
  padding-top: 38px;
}

.qte-div {
  background: #262932;
  border-radius: 11px;
  padding: 40px 50px 30px;
}

.quoteimg {
  width: 49px !important;

}

.qt-pera {
  font-weight: 400;
  font-size: 15px;
  line-height: 185%;
  color: var(--primary-color);
  padding-top: 10px;
  text-align: justify;
}

.quote-h2 {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 15px;
}

.quote-h6 {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.qt-athrimg {
  border-radius: 100%;
  width: 83px !important;
  height: 83px !important;
  object-fit: cover;
}

.nws-evnts {
  background: #262932;
  border-radius: 11px;
  padding: 15px 15px 20px;
  position: relative;
}

.ns-img {
  height: 305px;
  border-radius: 11px;
  width: 100%;
  object-fit: cover;
}

.ns-h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  color: var(--primary-color);
  padding-top: 20px;
  margin-bottom: 0px;
}

.ns-pera {
  font-weight: 300;
  font-size: 15px;
  line-height: 186%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.ns-link {
  font-weight: 300;
  font-size: 14px;
  line-height: 186%;
  color: #5ea655;
  text-decoration: none;
}

.news-evenets {
  margin-top: 130px;
}

.patnrs-div {
  margin-top: 90px;
}

.feb-image {
  width: 83px !important;
  height: 106px !important;
  position: absolute;
  top: 0px;
  left: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: #5EA655;
  align-content: center;

}

.feb-h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 88%;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.partners {
  background: #262932;
  border-radius: 9px;
  height: 105px;
  justify-items: center;
  align-content: center;
}

.partner-image {
width: 100px !important;
    height: 92px !important;
    object-fit: contain;
}

.sub-div {
  border-radius: 8px;
  background-color: #262932;
  height: auto;
  width: 100%;
  padding: 20px 50px;
  margin-top: 130px;
}

.sub-h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 151%;
  color: var(--primary-color);
}

.sub-cntrl {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50px !important;
  background-color: transparent !important;
  padding: 7px 20px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.sub-cntrl::placeholder {
  font-weight: 275 !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.sub-btn {
  border-radius: 66px;
  padding: 5px 25px;
  background-color: #5ea655;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
}

.sub-img {
  width: 392px;
  float: right;
  margin-top: -85px;
}

.footer {
  background: #262932;
  margin-top: 150px;
}

.ft-row {
  padding: 50px 0px 30px;
}

.ft-logo {
  width: 230px;
}

.ft-pera {
  font-weight: 275;
  font-size: 30px;
  line-height: 138%;
  color: var(--primary-color);
  padding-top: 37px;
}

.ft-h1 {
  font-weight: 400;
  font-size: 21px;
  color: var(--primary-color);
  padding-top: 5px;

}

.ft-h6 {
  font-weight: 275;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.ft-link {
  font-weight: 300;
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: none;
}

.footer-ul {
  list-style-type: none;
  padding-left: 0px;
  padding-top: 6px;
}

.footer-li {
  padding: 1px 0px;
}

.hr {
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  height: 0px;
}

.ft-botton {
 min-height: 95px;
    margin-top: 30px;
}

.ft-bttmpr {
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.ft-bttmul {
  list-style-type: none;
  padding: 0px;
  margin-bottom: 0px;
  margin-top: 15px;
  text-align: center;

}

.ft-btn {
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 7px 16px;
  background-color: transparent;
}

.ft-btttmli {
  display: inline-block;
  padding-right: 7px;
}


.abt-main {
  background-image: url(/images/young-man.png);
  background-size: cover;
  width: 100% !important;
  height: 500px !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: top center;

}

.institute-main {
  background-image: url(/images/institute1.jpg);
  background-size: cover;
  width: 100% !important;
  height: 400px !important;
  position: relative;
  background-position: top center;
  z-index: -1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.institute-main2 {
  background-image: url(/images/institute-sadara.jpg);
  background-size: cover;
  width: 100% !important;
  height: 400px !important;
  position: relative;
  background-position: top center;
  z-index: -1;
}

.qt-sction {
  background-image: url(/images/map.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 600px;
  padding: 130px 0px 0px;
}


.abtus-h1 {
  font-weight: 500;
  font-size: 50px;
  color: var(--primary-color);
  padding-top: 15px;
  text-align: center;
  z-index: 999;
}

.abt-overlay {
  background: linear-gradient(180deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.68) 63.49%, rgba(24, 25, 28, 0.8) 100%);
  width: 100% !important;
  min-height: 60vh !important;
  align-content: center;
  justify-items: center;
}

.ace-semih1 {
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.hr1 {
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 45px;
  height: 0px;
  margin-left: 12px;
  margin-top: 16px;
}

.abtus-peragraph {
  margin-top: 130px;
}

.abt-img {
  width: 100%;
  border-radius: 11px;
  height: 400px;
  object-fit: cover;
}

.abtus-imagesection {
  margin-top: 100px;
}

.abt-colomn {
  position: relative;
}

.abt-colomn:hover .abtimg-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, #000 100%);
}

.abtimg-overlay {
  position: absolute;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 400px;
  width: 100%;
  border-radius: 11px;
  padding: 30px 15px !important;
  align-content: end;
}

.abt-ovrlyh1 {
  font-weight: 400;
  font-size: 18px !important;
  line-height: 130%;
  color: var(--primary-color);
}

.abtus-elements {
  margin-top: 120px;
}

.mivi-sction {
  margin-top: 130px;
}

.about-sections {
  margin-top: 80px !important;
}

.abtus-vctrimg1 {
  width: 69px;
  height: 69px;
  object-fit: cover;
  margin-left: 10px;
}

.abtus-vctrimg2 {
  width: 69px;
  height: 69px;
  object-fit: cover;
  margin-left: 38px;
}

.vctr-pera {
  padding-left: 30px;
}

.vctr-h1 {
  font-weight: 500;
  font-size: 45px;
  color: var(--primary-color);
  margin: 0px;
  margin-top: -8px;
}

.vctr-pr {
  font-weight: 300;
  font-size: 19px;
  color: var(--primary-color);

}

.hr-elmnts {
  border: 2px solid rgba(255, 255, 255, 0.2);
  height: 75px;
  width: 0px;
  margin-left: auto;

}

.mi-img {
  width: 100%;
}

.vi-h1 {
  font-weight: 500;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.vi-p {
  font-weight: 300;
  font-size: 14px;
  line-height: 193%;
  color: rgba(255, 255, 255, 0.79);
  margin-bottom: 0px;
  padding-top: 13px;
  text-align: justify;
}

.tick-img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  margin-top: 24px;
}

.vi-p span {
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
}

.mi-colomn {
  position: relative;
}

.play-btn {
  width: 140px;
  position: absolute;
  left: 225px;
  top: 34%;
}

.our-team {
  margin-top: 120px;
}

.ourteamimg {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.ourteam-h1 {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.79);
  text-align: center;
  padding-top: 22px;
  margin: 0px;
}

.ourteam-pr {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding-top: 5px;
}

.nsevnts-row {
  margin-top: 130px;
}

.nsevnt-innr {
  margin-top: 130px;
}

.inner-h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 105%;
  color: #5ea655;
}

.inner-h1 {
  font-weight: 400;
  font-size: 52px;
  line-height: 68%;
  color: var(--primary-color);
}

.inner-img {
  width: 100%;
}

.inner-pera {
  font-weight: 300;
  font-size: 16px;
  line-height: 215%;
  color: rgba(255, 255, 255, 0.79);
  text-align: justify;
}

.rcnt-h1 {
  font-weight: 600;
  font-size: 25px;
  color: var(--primary-color);
}


/* custom navigation */

.custom-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin: 0px 0;
}

.custom-nav-wrapper button {
  background: none;
  color: #ccc;
  border: none;
  border-radius: 50%;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;

}

.custom-nav-wrapper button:hover {
  background: none;
  color: #fff;
}

.custom-nav-wrapper .text {
  margin: 0 8px;
  font-weight: 400;
}

.custom-nav-wrapper .divider {
  color: #777;
  font-size: 20px;
}

.arrow img {
  width: 50px;
}

.green-blurr::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: #5ea655;
  filter: blur(814px);
  z-index: -1;
}

.green-blurr2::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: #5ea655;
  filter: blur(814px);
  right: 0px;
  z-index: -1;
}

.intitute-info {
  margin-top: -100px;
}

.intitute-info img {
  width: 160px;
}

.intitute-info h2 {
  font-weight: 500;
  font-size: 48px;
  text-align: center;
  color: #fff;
  padding-top: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #5EA655 !important;
  font-weight: 400;
  font-size: 18px;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 25px;
  border: none !important;
}

.tab-for-program {
  background-color: none;
  font-weight: 300 !important;
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.69) !important;
  border-radius: 30px !important;
  padding: 8px 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.69) !important;
  margin: 40px 10px 0px;
}

.institute-overview-sec h2 {
  font-weight: 400;
  font-size: 27px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.institute-overview-sec p {
  font-weight: 200;
  font-size: 17px;
  line-height: 2.152;
  color: rgba(255, 255, 255, 0.79);
  text-align: center;
}



.verticleline {
  width: 2px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  margin-right: 15px;
  margin-top: 10px;
}

.btn-contents img {
  display: inline !important;
}

.gallery-head {
  font-size: 45px;
  font-weight: medium;
  line-height: 110.9%;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 10px;
}

.gallery-section {
  margin-top: 130px;
}



.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close-cls,
.nav-cls {
  position: absolute;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.close-cls {
  top: 20px;
  right: 30px;
}

.nav-cls.prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-cls.next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.instituteinfo-box1 {
  background-image: url(/images/yello.png);
  width: 100%;
  min-height: 230px;
  border-radius: 15px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #DA8B3A;
  padding: 30px;
  margin-top: 100px;
}

.instituteinfo-box1 img {
  width: 65px;
}

.instituteinfo-box1 h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 13px;
}

.instituteinfo-box1 h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 0px;
}


.instituteinfo-box2 {
  background-image: url(/images/blue.png);
  width: 100%;
  min-height: 230px;
  border-radius: 15px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #2A63BF;
  padding: 30px;
  margin-top: 100px;
}

.instituteinfo-box2 img {
  width: 65px;
}

.instituteinfo-box2 h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 13px;
}

.instituteinfo-box2 h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 0px;
}


.instituteinfo-box3 {
  background-image: url(/images/purple.png);
  width: 100%;
  min-height: 230px;
  border-radius: 15px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #5C5BB6;
  padding: 30px;
  margin-top: 100px;
}

.instituteinfo-box3 img {
  width: 65px;
}

.instituteinfo-box3 h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 13px;
}

.instituteinfo-box3 h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 0px;
}


.instituteinfo-box4 {
  background-image: url(/images/green.png);
  width: 100%;
  min-height: 230px;
  border-radius: 15px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #5EA655;
  padding: 30px;
  margin-top: 100px;
}

.instituteinfo-box4 img {
  width: 65px;
}

.instituteinfo-box4 h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 13px;
}

.instituteinfo-box4 h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 0px;
}

.nav-institute-details {
  display: flex;
  justify-content: center;
}

.grnaftr-div {
  border-radius: 25px;
  width: 100%;
  min-height: 283px;
  align-content: center;
  background-image: url(/images/green-after.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  background-color: #5EA655;
  padding: 0px 40px;
}

.grnaftr-div1 {
  border-radius: 25px;
  width: 100%;
  min-height: 283px;
  background-image: url(/images/bluafter.png);
  align-content: center;
  position: relative;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #2A63BF;
  padding: 0px 40px;

}

.grnaftr-div2 {
  border-radius: 25px;
  width: 100%;
  min-height: 283px;
  background-image: url(/images/pinkafter.png);
  align-content: center;
  position: relative;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #5C5BB6;
  padding: 0px 40px;

}

.wtsapp-img {
  width: 90px;
}

.whrsap-pera {
  font-weight: 400;
  font-size: 22px;
  line-height: 149%;
  color: var(--primary-color);
  margin-bottom: 0px;
  padding-top: 15px;
}

.wtsap-h1 {
  font-weight: 400;
  font-size: 35px;
  line-height: 90%;
  color: var(--primary-color);
  margin-bottom: 0px;
  padding-top: 12px;
}

.cntct-sec {
  background: #1f232c;
}

.cntct-secdiv {
  padding: 70px 0px 90px;
}

.lction-div {
  padding: 90px 0px 0px;
}

.lctn-h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 136%;
  color: var(--primary-color);
}

.cnct-cntrl {
  background: #262932 !important;
  padding: 12px 20px !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.79) !important;
}

.cnct-cntrl::placeholder {
  font-weight: 300;
  font-size: 17px;
  line-height: 68%;
  color: rgba(255, 255, 255, 0.79) !important;
}

.cnttc-btn {
  border-radius: 87px;
  width: 178px;
  height: 50px;
  background: #5ea655;
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-color);
  float: right;
  border: none;
}

.location-div {
  border-radius: 15px;
  width: 100%;
  /* height: 516px; */
  background: #262932;
  padding: 40px;
}

.lc-img {
  width: 50px;
  height: 60px;
  object-fit: cover;
}

.lc-h1 {
  font-weight: 400;
  font-size: 28px;
  line-height: 75%;
  color: var(--primary-color);
}

.lc-pera {
  font-weight: 300;
  font-size: 25px;
  line-height: 86%;
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.79);
}

.map {
  border-radius: 11px;
  width: 100%;
  height: 280px;
}

.abtus-peragraph {
  padding-bottom: 80px;
}

.cntct-semih5 {
  font-weight: 500;
  font-size: 26px;
  color: var(--primary-color);
}

.column {
  flex: 0 0 calc(20% - 10px);
  box-sizing: border-box;
}

.succsptnr-img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}

.succs-h1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary-color);
}

.column-image {
  flex: 0 0 calc(14.28% - 10px);
  box-shadow: 0 0 10px 0 rgba(94, 166, 85, 0.15);
  background: var(--primary-color);
  justify-content: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 91px;
}

.logo-partnrs {
  width: 100px;
}

.patners-div {
  padding: 100px 0px;
}

.partner-row {
  gap: 10px;
}

.view-pera1 span {
  font-size: 15px;
  line-height: 213%;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 30px;
}

.overview-box {
  margin-top: 40px;
}

.overview-box p {
  font-weight: 300;
  font-size: 15px;
  line-height: 213%;
  color: rgba(255, 255, 255, 0.79);
  text-align: justify;
}

.outcome-lis {
  padding: 0px !important;
  margin: 0px;

}

.outcome-list li {
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  list-style-type: circle;
  padding-bottom: 10px;
  padding: 10px 20px;
  background-color: #262932;
  margin: 10px 5px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #51555f;
}

.number-box {
  border-radius: 8px;
  width: 49px !important;
  height: 40px !important;
  background-color: #5ea655;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.number-box h5 {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 0px;
}

.details-plan h2 {
  font-weight: 500;
  font-size: 27px;
  color: #fff;
}

.details-plan p {
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.79);
  list-style-type: circle;
  line-height: 30px;
  margin-top: 10px;
}

.bottom-line {
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100% !important;
  height: 1px;
  margin-top: 20px !important;
}

.career-head {
  margin-top: 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.login-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.login-div {
  width: 370px;
  margin: auto;
}

.login-h1 {
  font-weight: 600;
  font-size: 30px;
  color: var(--primary-color);
  text-align: center;
}

.login-cntrl {
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  padding: 15px !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #a5aab4 !important;
}

.login-cntrl::placeholder {
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #a5aab4 !important;
}

.login-btn {
  border-radius: 50px;
  width: 100%;
  height: 52px;
  background: #5ea655;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  transition: 1s;
}

.login-pera {
  font-weight: 400;
  font-size: 16px;
  color: #a5aab4;
}

.login-link {
  font-weight: 400;
  font-size: 16px;
  color: #5ea655;
  padding: 10px;
  border: 1px solid #5EA655;
  width: 100%;
  border-radius: 40px;
  text-align: center;
}

.reg-div {
  padding: 0px 60px;
}

.reg-btn {
  border-radius: 66px;
  padding: 8px 45px;
  background-color: #5EA655;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  transition: 0.5s;
  border: none;
  margin: auto;
  display: block;
}

.search-ovraly {
  position: fixed;
  z-index: 99999;
  background: rgba(24, 25, 28, 0.9);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.open-video-area{
  display: none;
}
.video-overlay{
  position: fixed;
  z-index: 99999;
  background: rgba(24, 25, 28, 0.9);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video-overlay iframe{
  width:700px;
  height:470px;
}

.search-group {
  width: 50%;
  margin: auto;
  position: relative;
  margin-top: 200px;
}

.input-search {
  width: 100%;
  height: 47px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 26px;
  outline: none;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.11);
  background: #464749;
  color: #000;
  transition: 0.3s ease;
}

.input-search::placeholder {
  color: #9e9ea7;
}

.input-search:focus,
input:hover {
  outline: none;
  border-color: #5ea655;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgb(247 127 0 / 10%);
}

.icon-search {
  position: absolute;
  left: 12px;
  fill: #9e9ea7;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 11px;
}

.close-icon-serach {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.headerlogin-btn {
  border: 1px solid #fff3f3;
  border-radius: 66px;
  width: 114px;
  height: 43px;
  background: none !important;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  margin-left: 20px;
}

.headerlogin-btn:hover {
  background: #5ea655 !important;
  border-color: #5ea655 !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #fff !important;
  color: #5ea655 !important;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: contents !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #59BA89 !important;
}

.owl-theme .owl-dots .owl-dot span {
  margin: 5px 4px !important;
}

#exampleModal {
  --bs-modal-width: 70% !important;
}

.btn-close {
  float: right;
  width: 26px !important;
  height: 26px !important;
  padding: 25px !important;
  --bs-btn-close-focus-shadow: none !important;
  fill: rgba(255, 255, 255, 0.49) !important;

}

#exampleModal-vedio {
  --bs-modal-width: 70% !important;

}

.mdl-img {
  width: 100%;
  height: 542px;
  object-fit: cover;
}

.mdl-overlayh1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 110%;
  color: #fff;
}

.mdl-overlaypr {
  font-weight: 300;
  font-size: 15px;
  line-height: 162%;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 0px;
}

.overlay-modal {
  position: absolute;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(38, 41, 50, 0) 0%, #262932 87.98%);
  width: 100%;
  height: 542px;
  align-content: end;
  padding: 40px
}


#enquirypopup {
  --bs-modal-width: 70% !important;
}

.rest-mdbody {
  background: #252831 !important;
  padding: 0px !important;
}

.mdl-leftcol {
  position: relative;
}

.modal-hd {
  font-weight: 500;
  font-size: 30px;
  line-height: 155%;
  color: #fff;
}

.mdl-cntnt {
  padding: 35px 50px 40px 30px;
}

.modal-cntrl {
  border-radius: 7px;
  background: #404451 !important;
  border: none !important;
  padding: 10px 15px !important;
  color: #fff !important;
   font-weight: 300 !important;
  font-size: 13px !important;
}

.modal-cntrl::placeholder {
  font-weight: 300 !important;
  font-size: 13px !important;
  color: var(--primary-color) !important;
}

.enquirymodal-btn {
  border-radius: 70px;
  width: 181px;
  height: 39px;
  background: #5ea655;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  float: right;
  margin-bottom: 50px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none !important;
}
.box-ofprofile-bg{
  background-color: #262932;
  width: 100%;
  padding: 15px 20px;
  margin-top: 30px;
  border-radius: 13px;
}
.box-ofprofile-bg p{
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.box-ofprofile-bg input{
  background: none !important;
  border: none;
  color:#fff;
  font-size: 20px;
  width: 100%;
  outline: none;
  font-weight: 300;
}
.pading-extra {
  padding: 12px 50px;

}
.btn-profile-info{
  background: none !important;
  border: none !important;
  color: #fff;
  padding: 0px !important;
  margin: 0px 15px;
}
.btn-profile-info .dropdown-item:focus, .dropdown-item:hover{
  color: #5ea655 !important;
}
.img-profile-icon{
  width: 35px;
  height: 35px;
  border-radius: 100%;
  margin-right: 6px;
}
.label-color-reg{
  color: #fff;
  font-weight: 300;
}
.label-color-reg a{
  color: #5ea655;
}
.video-pop iframe{
width: 100%;
height: 400px;
}
.lctn-map iframe{
width: 100%;
height: 200px;
border-radius: 10px;
}

@media only screen and (min-width: 100px) and (max-width: 766px) {

  .btn-profile-info{
    margin: 10px 0px;
  }

  body.light-mode .abtus-elementsdiv {
    border: 1px solid #ebebeb;
    background-color: #f5f5f5;
  }
.prfl-div{
  width: 100% !important;
}
.box-ofprofile-bg p{
  font-size: 13px;
}
.box-ofprofile-bg input {
  font-size: 15px;
}

  br {
    display: none !important;
  }

  .logo-image {
    width: 150px;
  }

  .main-hd {
    font-size: 30px;
    line-height: 45px;
  }

  .main-pagebtn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .anouncment-box::after {
    width: 28px;
    height: 28px;
    right: -14px;
    z-index: 99;
  }

  .anouncment-box {
    min-width: 126px;
    min-height: 41px;
  }

  .anouncment-box h5 {
    font-size: 12px;
    z-index: 999;
  }


  .grp-img {
    width: 75px;
    height: 29px;
  }

  .grp-pera {
    font-size: 16px;
    padding-top: 2px;
  }

  .view-hd {
    font-size: 30px;
    line-height: 38px;
  }

  .view-pera1 {
    font-size: 13px;
    line-height: 145%;
  }

  .view-pera2 {
    font-size: 13px;
    line-height: 145%;
  }

  .peaple-img {
    height: 296px;
  }

  .nuber-h1 {
    font-size: 30px;
  }

  .dtyl-h1 {
    font-size: 23px;
  }

  .dtyl-pera {
    font-size: 11px;
    line-height: 180%;
    padding-top: 2px;
  }

  .dtyl-btn {
    width: 146px;
    height: 40px;
    font-size: 14px;
    margin-top: 2px;

  }

  .prprty-img3 {
    height: 296px;
    object-fit: cover;
  }

  .institut-h1 {
    font-size: 20px;
  }

  .hero-text {
    font-size: 25px;
    text-align: center;
  }

  .instit-logoimg {
    width: 100px;
  }

  .instite-h1 {
    font-size: 20px;
    line-height: 130%;
  }

  .btn-institute {
    padding: 6px 16px;
    font-size: 13px;
  }

  .institute-div {
    min-height: 304px;
    padding: 34px;
  }

  .institute-div1 {
    min-height: 304px;
    padding: 34px;
  }

  .hero-text h1 {
    font-size: 32px;
    padding-bottom: 5px;
  }

  .hero-text h5 {
    font-size: 14px;
    padding-bottom: 14px;
  }
.open-video-btn{
  cursor: pointer !important;
}
  .play-img {
    width: 100px;
    margin: auto;
    display: block;
  }

  .arrow img {
    width: 42px;
  }

  .custom-nav-wrapper .text {
    margin: 0 5px;
  }

  .custom-nav-wrapper .divider {
    font-size: 13px;
  }

  .custom-nav-wrapper {
    justify-content: center;
    margin-top: 15px;
  }

  .course-h1 {
    font-size: 20px;
    line-height: 120%;
  }

  .course-pera {
    font-size: 13px;
    padding-right: 10px;
    margin-top: 2px;
  }

  .verticleline {
    height: 10px;
    margin-right: 10px;
    margin-top: 7px;
  }

  .dtyls-btn {
    padding: 5px 14px;
    font-size: 13px;
  }

  .dtyls1-btn {
    padding: 5px 13px;
    font-size: 13px;
  }

  .left-quoteh1 {
    font-size: 27px;
    line-height: 119%;
    padding-top: 13px;
  }

  .qte-div {
    padding: 25px;
  }

  .quoteimg {
    width: 35px !important;
  }

  .qt-pera {
    font-size: 12px;
    line-height: 175%;
    padding-top: 5px;
  }

  .quote-h2 {
    font-size: 13px;
    padding-top: 5px;
  }

  .quote-h6 {
    font-size: 10px;
  }

  .qt-athrimg {
    width: 76px !important;
    height: 76px !important;
  }

  .icon-img {
    width: 40px;
    height: 40px;
  }

  .label {
    font-size: 22px;
    margin-top: 3px;
  }

  .custom-box {
    padding: 20px 20px;
    height: 160px;
  }

  .custom-box2 {
    height: 160px;
  }

  .custom-box3 {
    padding: 20px 20px;
    height: 160px;
  }

  .custom-box4 {
    padding: 20px 20px;
    height: 160px;
  }
    .custom-box5 {
    padding: 20px 20px !important;
    height: 160px !important;
  }

  .course-box img {
    height: 440px;
  }

  .hero1-overlay {
    padding: 0 1rem;
    height: 400px;
  }

  .hero1-content h3 {
    font-size: 38px;
    line-height: 103.7%;
  }

  .hero1-content h3 br {
    display: none;
  }

  .hero1-content p {
    margin-bottom: 1rem;
    font-size: 13px;
  }

  .ns-img {
    height: 265px;
  }

  .feb-h1 {
    font-size: 16px;
  }

  .feb-h1 br {
    display: block;
  }

  .feb-image {
    width: 72px !important;
    height: 86px !important;
  }

  .ns-h1 {
    font-size: 16px;
    padding-top: 15px;
  }

  .ns-pera {
    font-size: 13px;
    padding-bottom: 5px;
  }

  .ns-link {
    font-size: 13px;
  }

  .partner-image {
    width: 92px !important;
    height: 46px !important;
    display: block !important;
        margin: auto;
  }

  .sub-h1 {
    font-size: 22px;
    line-height: 132%;
    text-align: center;
    padding-bottom: 15px;
  }

  .sub-div {
    padding: 10px 20px 40px;
    margin-top: 60px;
  }

  .sub-img {
    display: none;
  }

  .sub-btn {
    padding: 5px 20px;
    font-size: 13px;
    margin-top: 12px;
  }


  .ft-logo {
    width: 178px;
  }

  .ft-pera {
    font-size: 20px;
    line-height: 128%;
    padding-top: 25px;
  }

  .ft-h1 {
    font-size: 18px;
    padding-top: 15px;
  }

  .ft-h6 {
    font-size: 14px;
  }

  .ft-link {
    font-size: 15px;
  }

  .footer-ul {
    padding-top: 0px;
  }

  .footer {
    margin-top: 70px;
  }

  .ft-bttmpr {
    font-size: 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .ft-btn {
    font-size: 10px;
    padding: 5px 6px;
  }

  .ft-btttmli {
    padding-left: 2px;
  }

  .ft-botton {
    min-height: 115px;
  }

  .hero1-section {
    height: 400px;
    margin-top: 90px;
  }

  .hero-section {
    height: 450px;
    margin-top: 65px;
  }

  .hero-overlay {
    height: 450px;
  }

  .home-img {
    height: 65vh !important;
  }

  .home-content {
    top: 58%;

  }

  .qt-sction {
    padding: 60px 0px 0px;
    min-height: 560px;
  }

  .navbar {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 13px 0px !important;
  }

  .navbar-toggler {
    background-color: var(--primary-color) !important;
    font-size: 15px !important;
    padding: 2px 12px !important;
  }

  .switch {
    right: 2px;
  }

  .nav-list a {
    font-size: 15px;
    padding: 7px 0px !important;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    padding: 10px;
  }

  .headerlogin-btn {
    margin-left: 0px;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
  }

  .text-box {
    width: 100%;
    overflow: hidden;
  }

  .language-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
    margin-right: 20px;
    margin-left: 10px;

  }

  .abt-main {
    height: 280px !important;
  }

  .abtus-h1 {
    font-size: 35px;
    margin-top: 51px;
  }

  .mivi-sction {
    margin-top: 90px;
  }

  .ace-semih1 {
    font-weight: 400;
    font-size: 15px;
  }

  .hr1 {
    width: 30px;
    margin-top: 11px;
  }

  .abtus-peragraph {
    padding-bottom: 0px;
    margin-top: 60px;

  }

  .abt-img {
    height: 365px;
  }

  .abt-ovrlyh1 {
    font-size: 18px;
  }

  .abtimg-overlay {
    height: 365px;

  }

  .abtus-imagesection {
    margin-top: 60px;
  }

  .abtus-elements {
    margin-top: 60px;
  }

  .abtus-elementsdiv {
    justify-items: center;
    border: 0.95px solid #fff;
    margin-top: 10px;
    padding: 40px 20px 20px;
    border-radius: 10px;
  }

  .hr-elmnts {
    display: none;
  }

  .abtus-vctrimg1 {
    width: 66px;
    height: 66px;
    margin-left: 0px;
    margin: auto;
    display: block;
  }

  .abtus-vctrimg2 {
    width: 66px;
    height: 66px;
    margin: auto;
    display: block;
  }

  .vctr-h1 {
    font-size: 36px;
    margin-top: 0px;
    text-align: center;
    margin-top: 7px;
  }

  .vctr-pr {
    font-size: 17px;
    text-align: center;

  }

  .vctr-pera {
    padding-left: 0px;
  }

  .vi-h1 {
    font-size: 22px;
  }

  .vi-p {
    font-size: 13px;
    line-height: 145%;
    padding-top: 7px;
  }

  .about-sections {
    margin-top: 40px !important;
  }

  .vi-p span {
    font-size: 13px;
  }

  .tick-img {
    width: 22px;
    height: 22px;
    margin-top: 16px;
  }

  .play-btn {
    width: 100px;
    left: 150px;
  }

  .our-team {
    margin-top: 65px;
  }

  .ourteamimg {
    height: 390px;
  }

  .ourteam-h1 {
    font-size: 16px;
  }

  .nsevnts-row {
    margin-top: 60px;
  }

  .nsevnt-innr {
    margin-top: 60px;
  }

  .inner-h6 {
    font-size: 16px;
  }

  .inner-h1 {
    font-size: 30px;
    line-height: 106%;
  }

  .inner-pera {
    font-size: 13px;
    line-height: 130%;
  }

  .rcnt-h1 {
    font-size: 20px;
  }

  .intitute-info img {
    width: 100px;
  }

  .intitute-info h2 {
    font-size: 26px;
  }

  .tab-for-program {
    font-size: 13px !important;
    padding: 6px 16px !important;
    margin: 20px 10px 0px;
  }

  .institute-overview-sec h2 {
    font-size: 22px;
    line-height: 106%;

  }

  .institute-overview-sec p {
    font-size: 13px;
    line-height: 145%;
  }

  .course-overlay {
    padding: 30px 20px;
  }

  .gallery-head {
    font-size: 30px;
  }

  .gallery img {
    height: 260px;
  }

  .gallery-section {
    margin-top: 70px;
  }

  .cntct-semih5 {
    font-size: 18px;
  }

  .column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .succs-h1 {
    font-size: 15px;
    line-height: 135%;
  }

  .succsptnr-img {

    height: 220px;
  }

  .patners-div {
    padding: 60px 0px;
  }

  .search-group {
    width: 80%;
  }

  .column-image {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(33.33% - 10px);
  }

  .lctn-h1 {
    font-size: 22px;
    line-height: 130%;
  }

  .view-pera1 span {
    font-size: 13px;
    line-height: 145%;
  }

  .wtsapp-img {
    width: 60px;
  }

  .whrsap-pera {
    font-size: 16px;
    padding-top: 8px;
  }

  .wtsap-h1 {
    font-size: 24px;
    padding-top: 8px;
  }

  .grnaftr-div {
    min-height: 182px;
  }

  .grnaftr-div1 {
    min-height: 182px;

  }

  .grnaftr-div2 {
    min-height: 182px;

  }

  .lction-div {
    padding: 45px 0px 0px;
  }

  .cnct-cntrl {
    padding: 10px 10px !important;
  }

  .cnct-cntrl::placeholder {
    font-size: 13px;
  }

  .cnttc-btn {
    width: 148px;
    height: 46px;
    font-size: 15px;
  }

  .lc-h1 {
    font-size: 16px;
  }

  .lc-pera {
    font-size: 15px;
  }

  .lc-img {
    width: 34px;
    height: 40px;
  }

  .location-div {
    /* height: 516px; */
    padding: 30px 20px;
  }

  .map {

    height: 180px;
  }

  .login-image {
    display: none;
  }

  .login-div {
    width: 316px;
  }

  .login-h1 {
    font-size: 25px;
    margin-top: 40px;
  }

  .login-cntrl {
    padding: 12px !important;
  }

  .login-btn {
    height: 48px;
    font-size: 14px;
  }

  .login-pera {
    font-size: 14px;
  }

  .login-link {
    font-size: 14px;
  }

  .reg-div {
    padding: 0px 15px;
  }

  .reg-btn {
    padding: 6px 32px;
    font-size: 14px;
    margin-bottom: 40px;
  }

  .image-wrapper {
    display: block;
  }

  .image-wrapper .user-image {
    margin: 0 4px;
    height: 84px;
    border-radius: 5px;
    margin-bottom: 12px;
  }

  .image-wrapper .user-image {
    width: 100%;
  }

  .image-wrapper .user-image.active {
    width: 100%;
    height: 300px;
  }

  .image-text {
    font-size: 14px;
    padding: 0px 25px 30px;
  }

  .common-space {
    margin-top: 62px;
  }

  .sction-instediv {
    margin-top: 65px;
  }

  .prprtydtyl-div {
    margin-top: 55px;
  }

  .trnding-crs {
    margin-top: 70px;
  }

  .why-choose-section {
    margin-top: 70px;
  }

  .news-evenets {
    margin-top: 65px;
  }

  .patnrs-div {
    margin-top: 60px;
  }

  .text-box p {
    font-size: 14px;
  }

  .prprty-img {
    height: 296px;

  }

  .banner-overlay2 {
    display: none;
  }

  .institute-main {
    height: 251px !important;
  }

  .institute-main2 {
    height: 251px !important;
  }

  .intitute-info {
    margin-top: -53px;
  }

  .line-dash {
    width: 100% !important;
    display: none;
  }

  .search-h1 {
    font-size: 15px !important;
  }

  .search-pera {
    font-size: 13px !important;
    line-height: 146% !important;
  }

  .search-list {
    min-height: 145px !important;
    padding: 0px 20px !important;
  }

  .cntct-secdiv {
    padding: 50px 0px 90px;
  }

  .instituteinfo-box1 img {
    width: 50px;
  }

  .instituteinfo-box1 h4 {
    font-size: 18px;
    margin-top: 6px;
  }

  .instituteinfo-box1 h5 {
    font-size: 13px;
  }

  .instituteinfo-box1 {
    min-height: 165px;
    padding: 23px;
    margin-top: 65px;
  }

  .instituteinfo-box2 img {
    width: 50px;
  }

  .instituteinfo-box2 h4 {
    font-size: 18px;
    margin-top: 6px;
  }

  .instituteinfo-box2 h5 {
    font-size: 13px;

  }

  .instituteinfo-box2 {
    min-height: 165px;
    padding: 23px;
    margin-top: 20px;
  }

  .instituteinfo-box3 img {
    width: 50px;
  }

  .instituteinfo-box3 h4 {
    font-size: 18px;
    margin-top: 6px;
  }

  .instituteinfo-box3 h5 {
    font-size: 13px;

  }

  .instituteinfo-box3 {
    min-height: 165px;
    padding: 23px;
    margin-top: 20px;
  }

  .instituteinfo-box4 img {
    width: 50px;
  }

  .instituteinfo-box4 h4 {
    font-size: 18px;
    margin-top: 6px;
  }

  .instituteinfo-box4 h5 {
    font-size: 13px;

  }

  .instituteinfo-box4 {
    min-height: 165px;
    padding: 23px;
    margin-top: 20px;
  }

  .nav-institute-details {
    display: block !important;
    justify-content: start;
  }

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    font-size: 13px !important;
    padding: 6px 14px !important;
  }

  .tab-for-program {
    font-size: 13px !important;
    padding: 6px 14px !important;
    margin: 15px 4px 0px;
  }

  .overview-box p {
    font-size: 13px;
    line-height: 160%;
  }

  .outcome-list li {
    font-size: 13px;
    padding: 10px 10px;
    width: 100%;
    text-align: center;
  }

  .number-box {
    margin-bottom: 15px;
  }

  .number-box h5 {
    font-size: 12px;
  }

  .details-plan h2 {
    font-size: 16px;
  }

  .details-plan p {
    font-size: 13px;
    line-height: 20px;
    margin-top: 7px;
  }

  .career-head {
    font-size: 15px;
    line-height: 24px;
  }

  .outcome-list {
    padding-left: 0px;
  }

  .loading-wrapper img {
    width: 171px;
  }

  .nav-pills {
    white-space: nowrap;
    overflow-x: scroll;
  }

  .nav-pills::-webkit-scrollbar {
    display: none;
  }

  .nav-pills li {
    display: inline-block !important;
  }
    .mdl-leftcol {
      display: none;
    }

    .mdl-cntnt {
      padding: 35px 20px 75px 20px !important;
    }

    .modal-hd {
      font-size: 22px;
    }

    .modal-cntrl {
      padding: 7px 10px !important;
    }

    .modal-cntrl::placeholder {
      font-size: 10px !important;
    }

    .enquirymodal-btn {
      width: 106px;
      height: 34px;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .subscription-pera {
      font-size: 12px !important;
      padding-top: 5px !important;
    }

    .subscription-pera span {
      font-size: 12px !important;
      padding-top: 5px !important;
    }

    .subscription-btn {
      height: 42px !important;
      font-size: 13px !important;
      margin-top: 18px !important;
    }

    .subscription-div {
      padding-top: 66px !important;
    }

    .scroll-top {
      bottom: 20px;
      right: 20px;
    }
    .box-number{
      margin-top: 20px !important;
    }


    .trmscndtion-head {
    font-size: 18px !important;
}
.trmscndtion-pera br{
  display: none !important;
}
.cndtion-li br{
    display: none !important;
}
.trmscndtion-pera {
    font-size: 13px !important;
    line-height: 190% !important;
}
.cndtion-li {
       font-size: 13px !important;
    line-height: 190% !important;
}
.condtions-cntct-list{
      font-size: 13px !important;
    line-height: 190% !important;
}
.backtoreg-btn {
    width: 210px !important;
    height: 46px !important;
    font-size: 15px !important;
}
.footer-hrline{
  display: none;
}

  }


@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .nav-list a {
    font-size: 14px;
    padding: 0px 7px !important;
  }

  .view-hd br {
    display: none;
  }

  .view-pera1 br {
    display: none;
  }

  .view-pera2 br {
    display: none;
  }

  .peaple-img {
    height: 252px;
  }

  .dtyl-pera br {
    display: none;

  }

  .instite-h1 {
    font-size: 30px;
  }

  .course-box img {
    height: 418px;
  }

  .course-overlay {
    padding: 30px 18px;
  }

  .course-h1 br {
    display: none;
  }

  .course-h1 {
    font-size: 18px;
  }

  .dtyls-btn {
    padding: 5px 7px;
    font-size: 13px;
  }

  .dtyls1-btn {
    padding: 5px 6px;
    font-size: 13px;
  }

  .left-quoteh1 br {
    display: none;
  }

  .qt-pera br {
    display: none;

  }

  .qt-athrimg {
    width: 52px !important;
    height: 55px !important;
  }

  .label {
    font-size: 20px;
  }

  .hero1-content h1 br {
    display: none;
  }

  .ns-img {
    height: 210px;
  }

  .ns-h1 br {
    display: none;
  }

  .sub-h1 {
    font-size: 28px;
    line-height: 144%;
  }

  .sub-btn {
    padding: 5px 10px;
  }

  .ft-pera br {
    display: none;
  }

  .ft-pera {
    font-size: 24px;
  }

  .ft-btttmli {
    padding-left: 2px;
  }

  .ft-bttmpr {
    font-size: 13px;
  }

  .ft-btn {
    padding: 7px 13px;
  }

  .abtimg-overlay {
    padding: 30px 10px !important;
        height: 290px;
  }

  .abt-ovrlyh1 br {
    display: none;
  }

  .abt-ovrlyh1 {
    font-size: 13px !important;
  }
  .abt-img {
    height: 290px;
}

  .vctr-h1 {
    font-size: 38px;
  }

  .vctr-pr {
    font-size: 14px;
  }

  .vctr-pera {
    padding-left: 15px;
  }

  .abtus-vctrimg2 {
    width: 60px;
    height: 58px;
    margin-left: 18px;
  }

  .abtus-vctrimg1 {
    width: 60px;
    height: 58px;
  }

  .vi-p br {
    display: none;
  }

  .inner-h1 {
    font-size: 45px;
  }

  .inner-pera br {
    display: none;
  }

  .course-pera {
    font-size: 15px;
  }

  .succs-h1 br {
    display: none;
  }

  .succs-h1 {
    font-size: 18px;
  }

  .lctn-h1 br {
    display: none;
  }

  .grnaftr-div {
    padding: 0px 20px;
  }

  .whrsap-pera {
    font-size: 16px;
  }

  .wtsap-h1 {
    font-size: 24px;
  }

  .lc-pera {
    font-size: 22px;
  }

  .headerlogin-btn {
    width: 100px;
    height: 38px;
    font-size: 17px;
    margin-left: 10px;
  }

  .search-pera br {
    display: none;
  }

  .search-h1 {
    font-size: 19px !important;
  }

  .search-pera {
    font-size: 13px !important;
  }

  .instituteinfo-box1 h5 {
    font-size: 13px;
  }

  .instituteinfo-box2 h5 {
    font-size: 13px;
  }

  .instituteinfo-box3 h5 {
    font-size: 13px;
  }

  .instituteinfo-box4 h5 {
    font-size: 13px;
  }

  .instituteinfo-box3 h4 {
    font-size: 22px;
  }

  .instituteinfo-box4 h4 {
    font-size: 22px;
  }

  .instituteinfo-box2 h4 {
    font-size: 22px;
  }

  .instituteinfo-box1 h4 {
    font-size: 22px;
  }

  .tab-for-program {
    font-size: 15px !important;
    padding: 6px 12px !important;
    margin: 40px 4px 0px;
  }

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    font-size: 15px !important;
    padding: 6px 12px !important;
  }

  .mdl-overlayh1 br {
    display: none;
  }

  .mdl-overlaypr br {
    display: none;
  }

  .mdl-overlayh1 {
    font-size: 30px;
  }

  .mdl-overlaypr {
    font-size: 11px;
  }

  .subscription-pera {
    font-size: 10px !important;
  }

  .subscription-pera span {
    font-size: 10px !important;
  }

  .trmscndtion-pera br{
  display: none !important;
}
.cndtion-li br{
    display: none !important;
}

}

@media only screen and (min-width: 1025px) and (max-width: 1439px) {
  .view-pera1 br {
    display: none;
  }

  .view-pera2 br {
    display: none;
  }

  .peaple-img {
    height: 305px;
  }

  .dtyl-pera br {
    display: none;
  }

  .course-overlay {
    padding: 30px 15px;
  }

  .qt-pera br {
    display: none;
  }

  .qt-athrimg {
    width: 70px !important;
    height: 72px !important;
  }

  .label {
    font-size: 26px;
  }

  .ft-pera {
    font-size: 27px;
  }

  .abt-ovrlyh1 br {
    display: none;
  }

  .abtus-vctrimg2 {

    margin-left: 18px;
  }

  .vi-p br {
    display: none;
  }

  .inner-pera br {
    display: none;
  }

  .succs-h1 br {
    display: none;
  }

  .succs-h1 {
    font-size: 18px;
  }

  .grnaftr-div {
    padding: 0px 25px;
  }

  .whrsap-pera {
    font-size: 20px;
  }

  .nav-list a {
    font-size: 16px;
    padding: 6px 0px !important;
  }

  .headerlogin-btn {
    font-size: 18px;
    margin-left: 15px;
    width: 105px;
    height: 40px;
  }

  .search-pera br {
    display: none;
  }

  .search-h1 {
    font-size: 24px !important;
  }

  .instituteinfo-box4 h5 {
    font-size: 16px;
  }

  .mdl-overlayh1 br {
    display: none;
  }

  .mdl-overlaypr br {
    display: none;
  }

  .trmscndtion-pera br{
  display: none !important;
}
.cndtion-li br{
    display: none !important;
}


}


.linarea {
  position: relative;
}

.box-number {
  background-color: #5ea655;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  margin-top: -20px;
}

.line-dash {
  border-top: 1.5px dashed rgba(255, 255, 255, 0.2) !important;
  width: 115%;
  height: 2px;
}


.search-list {
  border-radius: 15px;
  width: 100%;
  min-height: 175px;
  background: #262932;
  padding: 0px 25px;
}

.search-h1 {
  font-weight: 400;
  font-size: 26px;
  line-height: 129%;
  color: var(--primary-color);
}

.search-pera {
  font-weight: 300;
  font-size: 14px;
  line-height: 185%;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0px;
  padding-top: 8px;
}

.search-row {
  margin-top: 100px;
}



.prfl-div {
  width: 800px;
  padding-top: 100px;
  margin: auto;
  display: block;
}

.subscription-div {
  padding-top: 100px;
}

.subscription-pera {
  font-weight: 200;
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 0px;
  padding-top: 10px;
}

.subscription-pera span {
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 0px;
  padding-top: 10px;

}

.subscription-btn {
  width: 100%;
  height: 46px;
  border-radius: 60px;
  border: none;
  background: #5EA655;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
  margin-top: 30px;
}


.profile-pic {
  width: 128px;
  height: 128px !important;
  display: inline-block;
  border-radius: 100%;
  object-fit: cover;
}

.file-upload {
  display: none;
}

.circle {
  border-radius: 100% !important;
  width: 128px;
  height: 128px;
  border: none;
  position: relative;
  margin-top: 20px;
}

.circle img {
  max-width: 100%;
  height: auto;
}

.p-image {
  position: absolute;
  bottom: 0px;
  right: 3px;
  color: #fff;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  background-color: #5ea655;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #fff;
}



.trmscndtion-head{
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}
.trmscndtion-pera{
font-weight: 300;
font-size: 14px;
line-height: 215%;
color: rgba(255, 255, 255, 0.79);
margin-bottom: 0px;
}
.trmscndtion-pera span{
font-weight: 400;
font-size: 14px;
line-height: 215%;
    color: #fff;
margin-bottom: 0px;
}

.trms-cndtiondiv{
  margin-top: 100px;
}

.backtoreg-btn{
  border-radius: 49px;
width: 260px;
height: 50px;
background: #5ea655;
font-weight: 400;
font-size: 17px;
color: #fff;
border: none;
margin: auto;
display: block;
}

.footer-head{
font-weight: 400;
font-size: 12px;
text-align: center;
color: #fff;
}
.icon-box{
  align-content: center !important;
  text-align:  center !important;
  border-radius: 100%;
border:1px solid rgba(255, 255, 255, 0.22);
width: 44px;
height: 44px;
}
.footer-hrline{
    border: 1px solid rgba(255, 255, 255, 0.22);
    width: 0px;
    height: 66px;
    float: right;
    margin-top: -22%;
}

.instituteinfo-box5 {
  background-image: url(/images/bg5.jpg);
  width: 100%;
  min-height: 230px;
  border-radius: 15px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #F28F8F;
  padding: 30px;
  margin-top: 100px;
}

.instituteinfo-box5 img {
  width: 65px;
}

.instituteinfo-box5 h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 13px;
}

.instituteinfo-box5 h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 0px;
}