/* BAM page */

.bam-mba-form-hero .main-heading {
  margin-bottom: 3rem;
}


/* BAM stats info tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.tooltip::after {
  content: "";
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.tooltip:hover::before,
.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

/* MBA Page tooltip */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip Box */
.tooltip-box {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Tooltip Arrow */
.tooltip-box::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

/* Show Tooltip on Hover */
.tooltip-container:hover .tooltip-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

/* Link Styling */
.tooltip-box a {
  color: var(--bg-light);
  text-decoration: none;
  font-weight: bold;
}

.tooltip-box a:hover {
  text-decoration: underline;
}

  /* why choose section */

  .bam-mba-form-hero.bg-light .container {
    /* display: grid; */
    display: flex;
    column-gap: 40px;
    /* grid-template-columns: 800px 400px; */
    
    /* flex-wrap: wrap; */
    justify-content: center;
    /* max-width: 100%;  */
  }

  #bam-form{
    min-width: 350px;
    max-width: 400px;
  }

  #mba-form{
    min-width: 350px;
    max-width: 400px;
  }


  .bg-light .hero-content h2 {
    font-size: 3rem;
  }

  .bg-light .hero-content .feature-item {
    color: var(--bg-dark);
  }


.program-insights {
    background: #000;
    padding: 2rem 0;
    color: white;
    text-align: center;
}

.program-insights h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--font-primary-bold);
}

.program-insights .program-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 15px; */
    padding: 0 20px;
}

.program-insights .link-item {
    color: var(--bg-light);
    text-decoration: none;
    padding: 0 25px;
    border-right: 1px solid var(--bg-light);
    line-height: 60px;
    font-size: 1.4rem;
}

.program-insights .link-item:hover {
    color: var(--primary);
}

.program-insights .link-item:last-child {
    border-right: none;
}

.image-text-section, .text-section {
    padding: 20px;
}

.image-text-section .container, .text-section .container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }

  .image-text-section .title, .text-section .title, .testimonials h2{
    font-size: 2.9rem;
    font-family: var(--font-primary-extra-bold);
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
  }

  .text-section .title {
    margin-bottom: 5px;
  }

  .image-text-section .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "featured-image text";
    align-items: center;
    gap: 60px;
  }

  .image-text-section .content.reverse .featured-image {
    order: 2;
  }
  .image-text-section .content.reverse .text {
    order: 1;
  }

  /* .image-text-section .content.reverse {
    grid-template-areas: "text featured-image";
    direction: rtl;
  } */
  /* .reverse {
    direction: rtl;
  } */

  .image-text-section .featured-image img {
    width: 100%;
    object-fit: cover;
    max-height: 350px;
    object-position: top;
  }

  .learning-container .featured-image img {
    max-height: 450px;
  }

  .text-section .subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
  }

  .image-text-section .text {
    text-align: left;
  }

  .text-section .text {
    text-align: center;
    max-width: 80%;
    margin: auto;
  }

  .image-text-section .text p, .text-section .text p {
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .image-text-section .cta-wrapper, .text-section .cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }

  .image-text-section .cta-button, .text-section .cta-button, .admission-content .cta-button {
    display: inline-block;
    background-color: var(--bg-dark);
    color: var(--bg-light);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: background-color 0.3s ease;
  }

  .image-text-section .cta-button:hover, .text-section .cta-button:hover {
    background-color: #333;
  }


.admission-container {
    max-width: 100%;
    padding: 0;
}


.content-wrapper {
    display: flex;
    align-items: center;
    /* height: 500px; */
    height: 600px; 
}

.admission-image {
    background-image: url(/sites/default/files/images/bam-cta-banner.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 60%;
    height: 100%;
    
}
.mba .admission-container .admission-image {
  background: linear-gradient(45deg, #00000066, #00000066),url(/sites/default/files/images/mba-admission.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.admission-content .note {
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.admission-content {
    background-color: #393939;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 40%; */
}

.admission-content h2 {
    font-size: 2.5rem;
    color: var(--bg-light);
    font-family: var(--font-primary-extra-bold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.admission-content .requirements {
    background-color: var(--primary);
    padding: 1rem 2rem;  
    border-radius: 10px;
    position: relative;
    left: -12rem;
}

.admission-content .requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admission-content .requirements ul li {
    font-family: var(--font-primary-bold);
    color: var(--bg-light);
    font-size: 1.4rem;
}

/* check (3) 1 */
.admission-content .requirements ul li::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/sites/default/files/images/check.png);
}

.admission-content .requirements .sub-list {
  padding-left: 30px;
  list-style: disc;
}

.admission-content .cta-wrapper {
    margin-top: 3rem;
}

.admission-content .cta-button {
    background-color: var(--primary);
}

.admission-content .cta-button:hover {
    opacity: 0.9;
}


.stats-section {
    padding: 50px 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/sites/default/files/2026-07/UNB-Boreal-Image-009%203%20%281%29_0.webp);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: 100%; */
    background-position: center;
    text-align: center;
}

.stats-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-family: var(--font-primary-extra-bold);
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    color: #D94F4F;
    font-size: 3rem;
    font-family: var(--font-primary-bold);
    margin-bottom: 15px;
}

.stat-item p {
    margin: auto;
    width: 70%;
    line-height: 25px;
}
.cta-section.bam .cta-left {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/sites/default/files/images/cta-bg.jpg);
    background-position: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-section.bam .cta-container .cta-right,
.cta-section .cta-container .cta-right {
  flex-direction: column;
  justify-content: center;
}

.cta-section.bam .cta-intro-text,
.cta-section .cta-intro-text {
  color: var(--bg-light);
  text-align: center;
  margin-bottom: 3rem;
  width: 90%;
  font-size: 1.55rem;
  line-height: 38px;
}

.cta-section.bam .cta-container .cta-item p, 
.cta-section .cta-container .cta-item p {
    font-size: 1.2rem;
    width: 65%;
    line-height: 25px;

}


.cta-section.bam .cta-button,
.cta-section .cta-button {
    font-weight: normal;
}

.testimonials {
    padding: 3rem;
}

.testimonials h2 {
    text-align: center;
    color: var(--primary);
    /* font-size: 2.5rem; */
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: auto;
    max-width: 1200px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin: auto;
  max-width: 1200px;
}

.slider-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

/* Testimonial Card */
.testimonial-card {
flex: 0 0 calc(50% - 40px);
margin: 0 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 20px;
}


.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

@media (max-width: 768px) {

  #bam-form{
  
    max-width: 100% !important;
  }

   #mba-form{
    min-width: 350px ;
    max-width: 100% !important;
  }
    .slide {
        flex-direction: column;
    }
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #ddd;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    color: var(--primary);
    font-style: italic;
    font-size: 1.1rem;
}

/* .slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #D94F4F;
} */

/* Navigation Buttons */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-primary-lightgray);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #d13639;
}

#sub-text1{
  margin-top: -25px;
}

  @media (max-width: 1024px) {

    .testimonial-card {
      flex: 0 0 calc(100% - 40px);
    }

  }

  @media (max-width: 768px) {
    .header-section {
      height: 380px;
    }

    .header-content h1 {
      font-size: 2rem;
    }

    .header-content h4 {
        font-size: 1.1rem;
    }

    .header-content p {
      font-size: 1.4rem;
    }

    .info-section {
      flex-direction: column;
    }

    .info-block {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      flex: 1 1 0px;
      padding: 40px;
    }

    .info-block:last-child {
      border-bottom: none;
    }

    .program-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .program-insights h1 {
      margin-bottom: 10px;
      border-bottom: 1px solid var(--bg-light);
      padding-bottom: 20px;
    }

    .program-insights .link-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 10px 0;
    }

    .program-insights .link-item:last-child {
        border-bottom: none;
    }

    .hero.bg-light .container {
        grid-template-columns: 1fr;
    }
    .bam-mba-form-hero .hero-content {
      order: 2;
    }
    .bam-mba-form-hero .form-wrapper {
      order: 1;
    }

    .form-container {
        width: 400px;
        margin: auto;
    }

    .image-text-section .content {
        display: flex ; 
        flex-direction: column;
        text-align: center;
    }
  }

  @media (max-width: 480px) {

    .info-block h4 {
      font-size: 0.85rem;
    }

    .info-block p {
      font-size: 1rem;
    }

    .form-container {
        width: 100%;
    }

    .testimonial-card {
      padding: 15px 10px;
      margin: 0 10px;
      flex: 0 0 calc(100% - 20px);
    }
  }


/* MBA page */

.mba.header-section::before {
  background: url('/sites/default/files/images/mba-master.jpg') no-repeat center center/cover;
}

.mba .header-content h1 {
  line-height: 0.9;
}

.mba .header-content .sub-text {
  margin: 2rem auto;
}
.news .header-content .sub-text {
  margin: 2rem auto;
}

.mba .header-content .sub-description {
  width: 60%;
  margin: auto;
  line-height: 32px;
}
.news .header-content .sub-description {
  width: 60%;
  margin: auto;
  line-height: 32px;
}

.mba.text-section .title {
  margin-bottom: 3rem;
}

.who-we-are-section {
  padding: 4rem 2rem;
}

.who-we-are-section .container {
  max-width: 1400px;
}

.for-mobile.who-we-are-title {
  display: none;
}

.who-we-are-section .image-text-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.who-we-are-section .image-text-wrapper .who-we-are-image {
  max-width: 40%;
  width: 100%;
}

.who-we-are-section .image-text-wrapper .who-we-are-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.who-we-are-section .image-text-wrapper .who-we-are-content {
  max-width: 40%;
  width: 100%;
}

.who-we-are-section .image-text-wrapper .who-we-are-content h2 {
  font-size: 2.9rem;
  font-family: var(--font-primary-extra-bold);
  color: var(--primary);
  margin-bottom: 1rem;
}

.who-we-are-section .image-text-wrapper .who-we-are-content .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 29px;
}

.mba .content-wrapper {
  height: 800px;
}

.mba .admission-image {
  background-image: url(/sites/default/files/images/mba-admission.jpg);
}

.stats-section.mba {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/sites/default/files/images/mba-master.jpg);
  background-size: 100%;
  background-position-x: center;
  background-position-y: 60%;
}
.features-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1400px;
  margin: auto;
  padding: 2rem 0;
}

.feature {
  flex: 1 1 30%;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;

}

/* .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
} */

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

.image-text-section .featured-image.course img {
  max-height: 400px;
}

.image-text-section .featured-image.career img {
  min-height: 500px;
}

.image-text-section .featured-image.learning img {
  height: 450px;
 }

 .cta-section.bam .cta-left {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/sites/default/files/images/mba-accelerate.jpg);
    background-position: 100%;
    background-size: cover;
    background-repeat: no-repeat;
 }

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: -10px;
  width: 65%;
  font-family: var(--font-primary-medium);
}


.feature p {
  line-height: 1.6;
  width: 80%;
  margin: 0 auto;
}

.feature ul {
  list-style-type: disc;
  text-align: left;
  margin-top: 10px;
  padding-left: 20px;
}

.feature ul li {
  margin-bottom: 8px;
}

.support-when .feature h3 {
  color: var(--primary);
  width: 100%;

}

.support-when .feature p {
  width: 100%;
}
.support-when .feature{
  gap: 20px;
}

.support-when .feature .cta-button { 
  background-color: var(--primary);;
 }


@media (max-width: 768px) {
  .feature {
    flex: 1 1 100%;
  }
}


.info-text-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.info-card {
  flex: 1 1 30%;
  background-color: var(--bg-dark);
  color: var(--bg-light);
  padding: 4rem 4rem 4rem 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
} */

.info-heading {
  font-size: 2.4rem;
  font-family: var(--font-primary-extra-bold);
  margin-bottom: 16px;
}

.info-text {
  font-size: 1rem;
  line-height: 32px;
  color: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
  }
}


.values-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media only screen and (min-width: 1401px) {
  .values-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
  }
}


.values-title {
  font-size: 2.9rem;
  font-family: var(--font-primary-extra-bold);
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.value-card {
  padding: 24px 16px;
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} */

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.value-title {
  font-size: 1.4rem;
  font-family: var(--font-primary-medium);
  margin-top: 12px;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .values-title {
    font-size: 1.8rem;
  }

  .value-title {
    font-size: 1rem;
  }
}



.why-us-section {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 4rem 2rem;
}

.why-us-title {
  font-size: 2.9rem;
  font-family: var(--font-primary-extra-bold);
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  display: block;
  cursor: pointer;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: var(--primary);
  cursor: pointer;
}
.play-icon img {
  width: 80px;
}

.why-us-section .features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.why-us-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-us-section .feature-icon {
  font-size: 24px;
  color: #c23c3c;
  margin-top: 5px;
}

.why-us-section .feature-content h4 {
  font-size: 1.2rem;
  font-family: var(--font-primary-medium);
  margin-bottom: 8px;
}

.why-us-section .feature-content p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us-title {
    font-size: 2rem;
  }

  .why-us-section .features {
    grid-template-columns: 1fr;
  }

  .news-bg {
    padding: 2rem 0rem;
  }
}

/* .form-item-program-of-interest { display: none; } */
#contact-us .form-item-program-of-interest { display: block; }
.contact-bg {
  padding: 4rem 2rem;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/sites/default/files/images/contact-bg.png);
  background-position: center;
  background-size: cover;
}

.news-bg {
  padding: 4rem 2rem;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/sites/default/files/images/contact-bg-banner.png);
  background-position: center;
  background-size: cover;
}

.contact-form-section .contact-form {
    display: flex;
    flex-direction: column;
    width: 500px;
    padding: 2rem;
    margin: auto;
}

.contact-form-section .contact-form .form-container {
  background-color: #000000d4;
  border-radius: 10px;
}

.contact-form-section .contact-form .form-container .form-title {
  margin-bottom: 5px;
  color: var(--bg-light);
}

.contact-form-section .contact-form .form-container .form-subtitle {
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-light);
  color: var(--bg-light);
}

.contact-form-section .contact-form .form-container #infoForm {
  margin-top: 20px;
}

.contact-form-section .contact-form .form-container .webform-submission-apply-for-program-details-form .webform-button--submit {
  margin-top: -0.6rem;
}

.cta-section.mba .cta-intro-text {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.mba .cta-container .content p {
  width: 300px;
}

/* Connect unb */

.hero-text-section {
  padding: 4rem 2rem;
}

.hero-text-section .header-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text-section .header-content h1 {
  line-height: 1;
}

.hero-text-section .sub-description {
  font-size: 1.5rem;
  line-height: 1.5;
  width: 80%;
  margin: auto;
}


.get-in-touch-section {
  padding: 60px;
  background-color: #F2F2F2;
}

.get-in-touch-section .get-in-touch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.get-in-touch-section .get-in-touch-wrapper h2 {
  font-size: 3.5rem;
  font-family: var(--font-primary-extra-bold);
}

.get-in-touch-section .get-in-touch-wrapper h4 {
  font-size: 42px;
  color: var(--primary);
  font-family: var(--font-primary-bold);
  margin-bottom: 0.8rem;
}

.get-in-touch-section .get-in-touch-wrapper .general-inquiries-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  gap: 40px;
}

.get-in-touch-section .get-in-touch-wrapper .general-inquiries-content span {
  font-family: var(--font-primary-bold);
}

.get-in-touch-section .find-us-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}

.get-in-touch-section p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.get-in-touch-section .find-us-wrapper .logo-url {
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.get-in-touch-section .find-us-wrapper p {
  margin-bottom: 2rem;
}



/* Student exepience */

.student.header-section::before {
  background: url(/sites/default/files/images/unb-banner.jpg) no-repeat center center / cover;
  filter: brightness(0.25);
}

.cta-section.student .cta-left {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/sites/default/files/images/unb-sapere-aude.jpg);
    background-position: center;
    background-size: cover;

}

.student-contact-bg {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/sites/default/files/images/student-contact-bg.png) no-repeat center center / cover;
}


/* News and event */

.news.header-section::before {
  background: url(/sites/default/files/images/news-bg-banner.png);
  background-position: center;
  background-size: cover;
  filter: brightness(0.35);
}

.featured-blogs {
  /* padding: 15px; */
}

.featured-blogs-container {
  max-width: 1200px;  
}


.blog-heading {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  font-family: var(--font-primary-extra-bold);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.post-card {
  border: 1px solid #898888;
  /* border-radius: 8px; */
  overflow: hidden;
  background: white;
}

.post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.post-details {
  padding: 24px;
}

.post-category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-details a {
  text-decoration: none;
}

.post-details .post-title:hover {
  color: var(--bg-dark);
}

.post-title {
  font-size: 28px;
  font-family: var(--font-primary-extra-bold);
  margin-bottom: 16px;
  color: var(--primary-headings);
  line-height: 1.2;
}

.post-summary {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.post-meta {
  color: var(--text-primary-lightgray);
  font-size: 14px;
  text-transform: uppercase;
}
.read-post-btn{
  color: var(--primary-headings);
  font-size: 15px;
  margin-top:12px;
  text-decoration: underline;
}
.read-post-btn:hover{

  text-decoration: none;
}

.blog-filter-section {
  padding: 2rem;
}

.blog-filter-container {
  max-width: 1200px;
}

.blog-filter-container .blog-heading {
  color: var(--primary-headings);
}

/* Responsive Design */
@media (max-width: 1370px) and (orientation : landscape) { 

  .bam-mba-hero.header-section {
    height: 600px;
  }
  .bam-mba-hero.header-section .header-content h1 {
    font-size: 4.6rem;
  }

  .bam-mba-hero.header-section  .header-content .sub-text {
    font-size: 1.5rem;
  }
  .bam-mba-form-hero .container {
    grid-template-columns: 1fr 450px;
    gap: 1rem;
  }

  .admission-content .note {
    font-size: 10px;
   }
  
}

@media (max-width: 1120px){ 
  .bam-mba-form-hero .container {
    grid-template-columns: 1fr;
  }
  .bam-mba-form-hero .container .hero-content {
    padding-right: 0;
  }
  .bam-mba-form-hero .container .hero-content h2 {
    font-size: 2.5rem;
  }
  .admission-content .note {
    font-size: 10px;
   }
 }

@media (max-width: 768px) {
  .bam-mba-hero::before{
    background-position: center;
    background-size: 185%;
    filter: brightness(0.35);
  }
  .bam-mba-hero .container {
    padding-bottom: 2rem;
  }
  .bam-mba-hero .header-content {
    text-align: center;
  }
  .bam-mba-hero .header-content .sub-heading {
    text-align: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
  }
  .bam-mba-hero .header-content .sub-text {
    line-height: 1.5rem;
    text-align: center;
  }
  .bam-mba-form-hero .container {
    grid-template-columns: 1fr;
  }
  .bam-mba-form-hero .container h1 {
    text-align: center;
  }
  .bam-mba-form-hero .container .form-wrapper .form-container {
    width: 95%;
  }
  .mba .header-content .sub-text {
    margin: 0;
    
  }
  #sub-title {
    margin-bottom: 25px;
  }
  .program-insights .program-navigation {
    justify-items: start;
  }
  .program-insights {
    padding: 1rem 0;
  }
  .program-insights h3,
  .program-insights .link-item {
    width: 100%;
    text-align: left;
    padding-left: 2rem;
  }

  /* .mba .admission-container .content-wrapper {
    height: 90vh;
  } */
  .info-section {
    margin-top: -30px;
    border-radius: 0;
    justify-items:center
  }
  .info-section .info-block {
    width: 230px;
    border-bottom: 3px solid rgb(255 255 255);
  }
  .bam-mba-info {
    padding: 0;
  }




  .student.header-section {
    /* height: 55vh; */
    height: 100%;
    padding: 20px;
    /* filter: brightness(0.25); */
  }
  .student.header-section h1, 
  .news.header-section .header-content h1{
    font-size: 43px;
  }
  .who-we-are-section {
    padding: 4rem 1rem;
  }
  .who-we-are-section .image-text-wrapper .who-we-are-image img {
    height: 300px;
  }

  .blog-filter-container {
    padding: 0;
  }
  .blog-slider-container{
    padding: 20px 0px;
  }

  .values-container .values-grid {
    display: flex;
    gap: 2px;
    justify-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .values-container .values-grid .value-card {
    max-width: 170px;
  }
  .values-container .value-title {
    font-size: 1.4rem;
  }
  .student-contact-bg .container{
    padding: 0;
  }

  .featured-blogs {
    /* padding: 1rem 0; */
  }

  .blog-wrapper {
      padding: 0.5rem;
  }

  .blog-heading {
      font-size: 36px;
      margin-bottom: 30px;
  }

  .posts-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .featured-blogs .post-image {
      height: 345px;
  }

  .post-details {
      padding: 20px;
  }

  .featured-blogs .post-title {
      font-size: 36px;
  }

  .blog-filter-section {
    padding: 1rem;
  }
  .blog-content {
    padding: 10px;
  }
  .blog-slider {
    gap: 20px;
  }
  .blog-category {
    font-size: 10px;
  }
  .blog-title, .blog-title a {
    font-size: 11px;
  }
  .blog-title {
    margin-bottom: 0;
  }
  .blog-slider-container .blog-image {
    height: 100px;
  }
  .contact-form-section.news-bg {
    padding: 10px 0;
  }
  .news-bg .contact-form-container {
    padding: 10px;
  }
  .contact-form-section.news-bg .form-wrapper .form-container {
    width: 100%;
  }
  .contact-bg {
    padding: 10px 0;
  }
  .contact-form-section .contact-form {
    padding: 0;
  }
  .form-wrapper .form-container {
    width: 100%;
  }
}


/* blog filter */

.filter-section {
  background-color: var(--primary);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 40px;
}

.filter-container {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  color: var(--text-primary-light);
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
}

.filter-input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
}

.blog-slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.blog-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
}

.blog-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.blog-card {
  overflow-y: auto;
  flex: 0 0 345px;
  background: var(--bg-light);
  border: 1px solid #898888;
  /* border-radius: 8px; */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title, .blog-title a {
  color: var(--primary-headings);
  font-size: 20px;
  margin-top: 10px;
  font-family: var(--font-primary-extra-bold);
  /* white-space: nowrap; */
  overflow: hidden;
  text-decoration: none;
}

.blog-title a:hover {
  color: var(--bg-dark);
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
}

#prevButton {
  left: 0px;
}

/* #nextButton {
  left: 0px;
  transition: transform 0.3s ease;
} */



.next-button {
  right: 0px;
}
@media (max-width: 500px) {

  .student.header-section h1 {
   font-size: 38px;
  }
}


@media (max-width: 768px) {
  
.bam-mba-form-hero.bg-light .container{
  display: flex;
  flex-direction: column;
  padding:1rem;
}

  h1 {
      font-size: 36px;
  }

  .filter-container {
      flex-direction: column;
      align-items: stretch;
  }

  .filter-input {
      width: 100%;
  }

  .blog-card {
      /* flex: 0 0 168px; */
  }

  .slider-button {
      display: none;
  }
}



/* Connect unb */

.hero-text-section {
  padding: 4rem 2rem;
}

.hero-text-section .header-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text-section .header-content h1 {
  line-height: 1;
}

.hero-text-section .sub-description {
  font-size: 1.5rem;
  line-height: 1.5;
  width: 80%;
  margin: auto;
}

.get-in-touch-section {
  padding: 60px;
  
}

.get-in-touch-section .get-in-touch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.get-in-touch-section .get-in-touch-wrapper h2 {
  font-size: 3.5rem;
  font-family: var(--font-primary-extra-bold);
}

.get-in-touch-section .get-in-touch-wrapper h4 {
  font-size: 42px;
  color: var(--primary);
  font-family: var(--font-primary-bold);
  margin-bottom: 0.8rem;
}

.get-in-touch-section .get-in-touch-wrapper .general-inquiries-content {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  gap: 40px;
}

.get-in-touch-section .get-in-touch-wrapper .general-inquiries-content span {
  font-family: var(--font-primary-bold);
}

.get-in-touch-section .find-us-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}

.get-in-touch-section p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.get-in-touch-section .find-us-wrapper .logo-url {
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.get-in-touch-section .find-us-wrapper p {
  margin-bottom: 2rem;
}


   

   

  /* contact page new hero section css */
.hero-text-section.contact-new-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  
  
}
.hero-text-section.contact-new-page .container .header-content{
  text-align: left;
}

.contact-hero-list.feature-list .feature-text h3 {
  font-size: 26px;
}
.contact-hero-list.feature-list .feature-text p {
font-size: 19px;
}

.contact-hero-list.feature-list  {
gap: 21px;
}




/* contact page new get in touch section css */
.email-phone-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.email-phone-wrapper a{
text-decoration: none;
}

.email-phone-wrapper .email{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  width: 261px;
}
.email-phone-wrapper .phone{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  width: 261px;

}


.email-phone-wrapper .email span{
color: var(--primary);
font-size: 22px;
}
.email-phone-wrapper .phone span{
color: var(--primary);
font-size: 22px;
}
.email-phone-wrapper .email p{
color: #ffffff;
font-size: 16px;

}
.email-phone-wrapper .email{
transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.email-phone-wrapper .email:hover{
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}
.email-phone-wrapper .phone p{
color: #ffffff;
font-size: 16px;
}
.email-phone-wrapper .phone{
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.email-phone-wrapper .phone:hover{
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* ready-to apply section in contact page  */
.ready-to-apply-main{
  background:  linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ), 
        url(/sites/default/files/images/mba-master.jpg) no-repeat center center / cover;
        padding: 100px;

}
.ready-to-apply-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
 
}
.ready-to-apply-content h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 43px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.ready-to-apply-content p{
  font-size: 22px;
  color: #ffffff;
}
.ready-to-apply-btn{
      padding: 0.9375rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 0.375rem 0.75rem rgba(210, 38, 48, 0.4);
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 2rem;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.ready-to-apply-btn:hover{
transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(215, 46, 58, 0.3);
    background-color: #b01b23;
}
.hero-text-section.contact-new-page .container .header-content .features-column .feature-list{
  gap: 15px;

}

.hero-text-section.contact-new-page .container .header-content .features-column .feature-list .feature-item .feature-text h3{
  margin-bottom: 8px;

}
 @media (max-width: 991px){
.ready-to-apply-main{
  padding: 100px 0;
}
  }
 @media (max-width: 768px){
.hero-text-section.contact-new-page{
  flex-direction: column;
}
.hero-text-section.contact-new-page .container .header-content h1{
 text-align: center;

}
.hero-text-section.contact-new-page .container .header-content{
justify-content: center;
align-items: center;
margin-bottom: 20px;
gap: 1rem;
}
.email-phone-wrapper{
  flex-direction: column;
}
.ready-to-apply-content h2{
  font-size: 30px;
}
.ready-to-apply-btn{
  padding: 10px 20px;
  font-size: 14px;
}
.get-in-touch-section {
  padding: 60px 0;
}
.get-in-touch-section .get-in-touch-wrapper .general-inquiries-content{
  width: 95%;
}
  }


/* news-events page new hero section css */
 @media (max-width: 500px){
 
  .header-section.new-event .header-content .sub-description{
    width: 100% !important;
    line-height: 27px !important;
  }
  .header-section.new-event .header-content .sub-text{
    margin-bottom: 20px !important;
    margin-top: 13px !important;
  }

 }








 


@media (max-width: 1370px){
  .header-section {
    height: 450px;
  }
  .header-content h1{
    font-size: 4rem;
  }
  .header-content .sub-text {
    font-size: 1.7rem;
    line-height: 4rem;
  }
  .features-section {
    gap: 10px;
  }
}

@media (max-width: 1370px) and (orientation : landscape) {

}

@media (max-width: 1370px) and (orientation : portrait) { 
  .bam-mba-form-hero .container {
    grid-template-columns: 1fr 400px;
  }

  .cta-container .content h2 {
    font-size: 2.75rem;
  }
  .cta-section.bam .cta-intro-text, .cta-section .cta-intro-text{
    margin-bottom: 1rem;
  }

  .cta-container .cta-right {
    padding: 4rem 1rem;
  }

  .cta-section.bam .cta-intro-text, .cta-section .cta-intro-text,
  .cta-section.bam .cta-container .cta-item p, .cta-section .cta-container .cta-item p {
    font-size: 1rem;
  }
  .cta-container .content h2 {
    padding-left: 0rem;
  }
  .cta-container .cta-items {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 1180px) and (orientation : landscape) {
  .program-insights .program-navigation {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1120px) {
  .features-section .support-when .feature p {
    width: 80%;
  }
}

@media (max-width: 1024px) and (orientation : portrait) {

  .program-insights .program-navigation {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .program-insights .link-item {
    border-bottom: 1px solid var(--bg-light);
    border-right: 0;
  }
  .hero {
    padding: 60px 0 40px;
  }

  .bam .content-wrapper {
    flex-direction: column;
  }
  /* .bam .admission-container .content-wrapper {
    height: 47vh;
  } */
  .bam .admission-content .requirements {
    left: 0;
  }

  /* .mba.admission-container .content-wrapper,
  .mba .admission-container .admission-image {
    height: 60vh;
  } */
  .mba.admission-container .content-wrapper {
    flex-direction: column;
    
  }
  .mba.admission-container .content-wrapper .admission-content .requirements {
    left: 0;
  }
  .admission-container .admission-image,
  .admission-container .admission-content {
    width: 100%;
  }
  

  .cta-container .cta-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item p {
    width: 95%;
  }
  
}

@media (max-width: 820px) and (orientation : portrait) {
  .mba .header-content .sub-description {
    width: 100%;
  }
  .header-content .sub-text {
    line-height: 2.5rem;
  }
  .program-insights .program-navigation {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-text {
    width: 95%;
  } 
  .features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .who-we-are-section .image-text-wrapper {
    gap: 2rem;
  }
  .who-we-are-section .image-text-wrapper .who-we-are-image,
  .who-we-are-section .image-text-wrapper .who-we-are-content {
    width: 100%;
  }
  .info-text-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    padding: 1rem;
  }
  .get-in-touch-section .find-us-wrapper {
    width: 100%;
  }

  /* .mba.admission-container .content-wrapper,
  .mba .admission-container .admission-image {
    height: 80vh;
  } */
}
@media (max-width: 820px) {
  .mba .content-wrapper{
  height: 900px;
}
}
@media (max-width: 768px) and (orientation : portrait) { 
  .image-text-section .content {
    display: flex ; 
    flex-direction: column;
  }
  /* .admission-container .content-wrapper {
    height: 60vh;;
  } */
  .contact-form-section .contact-form {
    width: 100%;
    padding: 1rem;
  }

  /* .admission-container .content-wrapper {
    height: 50vh;
  } */
  .admission-container .admission-image{
    background: linear-gradient(45deg, #00000066, #00000066),url(/sites/default/files/images/bam-cta-banner.jpg);
    background-position: top;
    background-size: cover;
  }
  .admission-content {
    padding: 0;
    background: transparent;
  }
  .admission-content h2 {
    margin-top: -30%;
    padding: 0 2rem;
  }
  .mba .admission-container .admission-content .requirements {
    border-radius: 0;
    left: 0;
  }
  .admission-content .cta-wrapper {
    display: none;
  }

  .mba .admission-container .content-wrapper {
    flex-direction: column;
    /* height: 55vh; */
  }
  .mba .admission-container .admission-image {
    height: 74vh;
  }

  .admission-container .content-wrapper .admission-content {
    background: #393939;
  }
}

@media (max-width: 500px) and (orientation : portrait) {
  .header-section {
    height: 70vh;
  }
  .header-content .sub-heading {
    font-size: 2.5rem;
  }
  .header-content h1 {
    font-size: 3rem;
  }
  .bg-light .hero-content h2 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
  .hero.bg-light .container {
    padding: 5px;
  }
  .header-content .sub-text {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .header-content .sub-description {
    width: 100%;
  }
  .program-insights .program-navigation {
    grid-template-columns: repeat(1, 1fr);
  }
  .admission-container .content-wrapper { 
    flex-direction: column;
    /* height: 90vh; */
  }
  /* .bam .admission-container .content-wrapper {
    height: 50vh;
  }
  .mba .admission-container .content-wrapper {
    height: 80vh;
  } */
  .admission-container .admission-image,
  .admission-container .admission-content {
    width: 100%;
  }
  .admission-content .requirements {
    left: 0;
  }
  .stats-section {
    background-size: cover !important;
  }
  .stats-container{
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 1rem;
  }
  .stats-container .stats-title {
    font-size: 2.5rem;
  }
  .text-section .text {
    max-width: 100%;
  }
  .features-section {
    grid-template-columns: repeat(1, 1fr);
  }
  .features-section .feature p {
    width: 100%;
  }
  .who-we-are-section .image-text-wrapper {
    flex-direction: column;
  }
  .who-we-are-section .image-text-wrapper .who-we-are-image,
  .who-we-are-section .image-text-wrapper .who-we-are-content {
    max-width: 100%;
  }
  .info-text-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .for-mobile.who-we-are-title {
    display: block;
    font-size: 2.9rem;
    font-family: var(--font-primary-extra-bold);
    color: var(--primary);
    margin-bottom: 1rem;
  }
  .who-we-are-content .who-we-are-title {
    display: none;
  }

  .admission-content .requirements {
    /* padding: 2rem 2rem 4rem 2rem; */
    padding: 1rem 2rem;
  }
  .admission-content .requirements .note {
    bottom: 10px;
    left: 30px;
  }
  .tooltip-container:hover .tooltip-box {
    white-space: normal;
  }
  .footer-right-content {
    margin-top: -20px;
  }
   .blog-card {
      flex: 0 0 100%;
  }
   .blog-filter-section {
    display: none;
   }


}


@media (max-width: 400px) and (orientation : portrait) { 
  /* .bam .admission-container .content-wrapper{
    height: 72vh;
  } */
  .admission-content .requirements {
    padding: 2rem 2rem 4rem 2rem;
    bottom: 0px;
    left: 30px;
  }
  .admission-content .requirements{
    bottom: 0;
    padding: 2rem;
  }
  .mba .content-wrapper{
  height: 1000px;
}
  /* .mba .admission-container .content-wrapper {
    height: 116vh;
  } */
}
@media (max-width: 500px) and (orientation: portrait) {
    .hero.bg-light .container {
        padding: 1rem;
    }
}


/* Student Experience new page css */

.your-journey-main {
  margin-top: 45px;
  background-color: #F2F2F2;
  padding-bottom: 60px;
 
}
.your-journey-main .feature{

  background-color: #ffffff;
  border-radius: 10px;
 
}
.your-journey-main .features-section{
 padding: 0;
  max-width: 1200px;
}
.header-section.student-new-hero{
padding-top: 100px;
padding-bottom: 170px;
}
.student-new-hero .header-content .sub-description{
width: 70%;
}


/* why student choose online section */
.why-choose-online-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 70px;
}

.why-choose-online-main .why-choose-title{
    font-size: 2.9rem;
    font-family: var(--font-primary-extra-bold);
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}
.why-choose-online-main .why-choose-text{
    line-height: 1.7;
    margin-bottom: 20px;
}
.why-choose-info{
  background-color: #000000;
  padding: 25px;
  border-radius: 10px;
}
.why-choose-info h4{
  font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
    color: #ffffff;

}

.why-choose-info p{
      font-size: 0.9rem;
    line-height: 1.45;
    color: #ffffff;

}

.why-choose-cards{
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.student-ex-info .info-block{
display: flex;
align-items: center;
justify-content: center;
}

.student-new-hero .sub-description{
  font-size: 18px;
}

.student-new-hero.header-section{
  height: 700px;
}
.student-new-hero .header-section::before{
filter: brightness(0.25);
}
@media (min-width: 1025px) and (max-width: 1120px)  {
.student-new-hero.header-section{
  height: 780px;
}
}

@media (max-width: 1140px) {
  .student-new-hero.mba .header-content .sub-description{
width: 100%;
}
.student-new-hero.mba .header-content .sub-text{
    margin: 1rem auto
}
}

@media (min-width: 769px) and (max-width: 1025px) {
    .student-ex-info .info-section {
      display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 20px;
       padding: 25px;
    }
    .student-ex-info .info-block{
      border-right: none;
      border-bottom: 1px solid #ffffff;
    }
    .student-ex-info .info-block p{
     font-size: 22px;
    }
}


@media (max-width: 768px) {

.header-section.student-new-hero{
padding-bottom: 130px;
}
.support-when .features-section {
padding-top: 0;
padding-bottom: 2rem;
}
.your-journey-main .features-section{
  margin-top: -20px;
}
}

 @media (max-width: 550px){
.student-new-hero.header-section{
  height: 850px !important;
}

 }
 @media (max-width: 530px){
.why-choose-cards{
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.your-journey-main .features-section{
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

 }

