@import url("./branding.css?v=1.5");

/*================= HEADER =================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background-color: var(--theme-color);
}
/* .header.on-scroll {
} */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  padding: 0px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.brand {
  width: 260px;
  height: 75px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 87px;
  width: 100%;
  height: calc(100% - 87px);
  background-color: #fff;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.menu_item {
  font-family: var(--theme-title-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--theme-white);
  transition: all 0.3s ease;
  padding: 42px 0;
  position: relative;
  text-decoration: none !important;
}
.menu_item:hover,
.menu_item:focus,
.menu_item:visited {
  color: var(--theme-white) !important;
}
.menu_item.active::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color:var(--theme-white);
  left: 0;
  bottom: -1;
}
.menu_item:before{
  content: "";
  position: absolute;
  width: 0%;
  height: 5px;
  background-color:transparent;
  left: 0;
  bottom: -1px;
  transition: all .3s ease;
}
.menu_item:hover:before{
  width: 100%;
  background-color: #fff;
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
  display: none;
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--gray-dark-1);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
.header-theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  border-radius: 30px;
  display: inline-block;
  padding: 13px 20px;
}
.header-theme-btn:hover {
  background-color: #f2f2f2;
  color: #000;
}
.dropdown-menu {
  background: var(--theme-color);
  border: 0;
  border-radius: 0;
  min-width: 249px;
  top: 62px !important;
  left: -81px !important;
  font-weight: 500;
  border-radius: 0px;
  padding: 20px 20px;
}
.dropdown-menu a {
  border-radius: 0px;
  color: var(--theme-white);
  background-color: var(--color-gray-100);
  font-size: 16px;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.dropdown-menu li{
  margin-bottom: 4px;
}
.dropdown-toggle::after {
  border: 0;
  background-image: url('../img/icons/arrow-down.svg');
  width: 12px;
  height: 12px !important;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 6px;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  background-color: #fff;
  color: var(--theme-color);
}
.dropdown-item:active {
  color: var(--theme-color);
}
.header-left-action{
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  padding: 24px 0px 25px 0px;
  gap: 25px;
}
.header-left-action a,
.header-left-action a i{
  color: var(--gray-dark-1);
}
.header-left-action a{
  display: flex;
  gap: 8px;
  align-items: center;
}
/*=========== OVERLAY MENU ===========*/
.menu-toggle{
  cursor: pointer;
}
.custom-overlay {
  position: fixed;
  background-color: #E1E1E1;
  z-index: 1050;
  color: #000;
  transition: all 0.5s ease-in-out;
  top: -200%;
  width: 100%;
  left: 0;
  height: calc(100% - 0px);
}
.custom-overlay .container-fluid{
  max-width: 100%;
  overflow-y: auto;
}
.overlay-visible {
  top: 0px;
}
.overlay-hidden {
  top: -200%;
}
.custom-sidebar {
  background-color: var(--color-dark-slate-gray);
  padding: 80px 30px 70px 90px;
}
.custom-sidebar .nav{
  display: unset;
}
.custom-sidebar .nav-pills{
  border: 0;
}
.menu-divider{
  background-color: #171818;
  height: 4px !important;
}
.custom-link {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: anchor-center;
  gap: 17px;
  padding: 10px 10px;
  background-color: transparent;
  box-shadow:none;
  border: 0;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 5px;
  transition: all .3s ease;
  cursor: pointer;
}
.custom-link:hover,
.custom-link.active {
  color: var(--color-dark-slate-gray) !important;
  background-color: #ffff;
  text-decoration: none !important;
}
.custom-link:hover i,
.custom-link.active i{
  color: var(--color-dark-slate-gray) !important;
}
.pt-logo{
  width: 40px;
}
.custom-list {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.custom-list li{
  font-size: 14px;
  margin-bottom: 5px;
}
.custom-list li a{
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  padding: 2px 10px;
  line-height: 1.2;
  text-decoration: none !important;
}
.custom-list li a:hover{
  color: #ffffff;
  text-decoration: none !important;
  background: #113c71;
}
.custom-divider {
  border-top: 1px solid #444;
  margin: 20px 0;
}
.sidebar_header {
  padding: 20px 15px;
  background: var(--theme-color);
}
.sidebar_sec .sidebar_body {
  background: #f7f7f7;
  padding: 15px;
}
.sidebar_sec .sidebar_body ul {
  margin-bottom: 0;
}
.sidebar_sec .sidebar_body ul li a {
  text-decoration: underline;
  font-weight: 500;
  display: block;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 26px;
  height: 26px;
}
.social-icons a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.social-icons a:hover {
  color: #0070c0;
}
.border-top-divider{
  border-top:2px solid #C7C7C7;
}
.sidebar-right{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.top-links {
  padding-top: 10px;
  gap: 10px;
}
.top-links .divider {
  height: 24px;
  width: 1px;
  background-color: #7a7a7a;
}
.top-link {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
}
.top-link:hover {
  background-color: #003366;
  color: white !important;
}
.btn-close-dark{
  width: 64px;
  height: 68px;
  background-color: #2A2A2A;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.btn-close-dark .btn-close{
  filter: invert(8) !important;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.pt-50{
  padding-top: 50px;
}
.bottom-side .custom-list li{
  margin: 0;
}
.btn-close:focus{
  box-shadow: none;
}
.menu-show-mbl{
  display: none;
}
.mbl-link i {
    transition: transform 0.3s ease;
}
.mbl-link i.rotated {
    transform: rotate(90deg);
}
.mbl-link-content {
    display: none;
}
.menu-show-mbl .custom-list li a{
  color: #fff;
}
.menu-show-mbl .mbl-link-content{
  padding: 11px 10px 10px 10px;
}
.menu-show-mbl .custom-list{
  margin-bottom: 0;
}
/*================= HOME BANNER =================*/
.home-banner h1{
  font-family: var(--theme-theme-family);
  font-weight: 700;
  font-size: 34px;
}
.home-banner .content_box_wrapper p{
  margin: 30px 0;
}
.home-banner .theme_btn.btn-icon{
  background-color: var(--theme-color);
  color: var(--gray-dark-1);
}
.home-banner .theme_link:hover{
  border-color: #ffff !important;
}
.search-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 0;
    width: 100%;
    max-width: 440px;
}
.search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 30px 16px;
    font-size: 16px;
    color: var(--color-black);
}
.search-input::placeholder {
    color: var(--color-medium-gray-3);
}
.search-button {
  background-color: var(--theme-color);
  color: white;
  padding: 0 32px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  height: 61px;
  border-radius: 6px;
}
.search-button:hover {
    background-color: #003F70;
    color: #fff;
}
/*================= HERO BANNER  =============*/
.hero-banner h1{
  font-family: var(--theme-theme-family);
  font-weight: 700;
  font-size: 34px;
}
/*  */
.section-about .theme_link::after{
  filter: invert(1);
}
/*================= SERVICES TABS ==========*/
.nav-pills{
  border-bottom: 2px solid #C6C9CC;
}
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link{
  background-color: var(--color-dark-slate-gray);
  color: var(--theme-white);
}
.nav-pills .nav-link:hover{
  text-decoration: none;
}
.nav-pills .nav-link{
  color: var(--theme-color);
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  background-color: #fff;
  height: 100%;
}
.after-left{
  position: relative;
}
.after-left::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  height: 100%;
  background-color: #E0E0E0;
  transform: translateY(-50%);
  width: 1px;
}
/*=========== Card Image Container ===========*/
.card-image-container {
    position: relative;
    height: 303px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 139, 0.6); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.card-image-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}
.custom-card .card-body{
  background-color:var(--color-light-gray);
  transition: all .3s ease;
}
.custom-card .card-body p{
  margin: 0;
  transition: all .3s ease;
}
.custom-card {
    border-radius: 0; 
    box-shadow: none;
    border: none; 
    transition: transform 0.3s ease-in-out; 
}
.custom-card:hover .card-body{
  background-color: var(--theme-color);
}
.custom-card:hover .card-body h3.theme_color,
.custom-card:hover .card-body p{
  color: #fff !important;
}
.global-text{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/*=========== Choose Box  ===========*/
.choose-box-img{
  height: 249px;
}
.choose-box-content{
  padding-top:37px;
}
.choose-box-content img{
  margin-bottom: 20px;
}
.choose-box-content h5{
  min-height: 57px;
  padding-bottom: 15px;
}
.choose-box-content p{
  color: #ffffffc0;
  margin-bottom: 0;
}
.bordre-x{
  border: 2px solid #1C4E7A;
  border-top: 0;
  border-bottom: 0;
}
.badge{
  font-size: 16px;
  font-weight: 400;
  background-color: var(--theme-color) !important;
  border-radius: 0;
  padding: 18px 30px;
}
.badge.bg-secondary{
  background-color: var(--theme-secondary) !important;
}
.news-sm-img{
  height: 190px;
}
.news-img-wrap{
  height: 400px;
}
/*=========== Section Accrediation ===========*/
.section-accrediation {
  background-color: var(--theme-color);
  color: white;
}
.section-accrediation h2 {
  font-weight: 700;
}
.research-card{
  display: flex;
  height: 100%;
}
.research-card>div{
  width: 50%;
}
.section-accrediation .accordion-item {
  background-color: white;
  border: none;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.section-accrediation .accordion-button {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 18px;
  border-radius: 0 !important;
  padding: 20px 15px;
}
.section-accrediation .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
}
.section-accrediation .accordion-button:focus {
  box-shadow: none;
}
.section-accrediation .accordion-body {
  color: #fff;
  background-color: var(--theme-color);
}
.research-img{
  height: 100%;
}
/*=========== THEME CARD ===========*/
.th-card{
  position: relative;
}
.th-card-img{
  height: 275px;
}
.th-card-content{
  padding: 27px 22px 23px 20px;
  transition: all .3s ease;
  min-height: 162px;
}
.th-card-bottom {
  border-top: 1px solid #1D4D78;
}
.th-card:hover .th-card-content.theme_bg{
  background-color: var(--color-light-gray-2) !important;
}
.th-card .th-card-content.theme_bg .th-card-subtitle{
  font-size: 14px;
}

.th-card .th-card-content.theme_bg .text-white{
  transition: all .3s ease;
}
.th-card:hover .th-card-content.theme_bg .text-white{
  color: var(--theme-color) !important;
}
.executive-programmes .th-card .th-card-content{
  min-height: 115px;
}
/*=========== Career at GlobalNxt ============*/
 .career-at-globalnxt img{
  padding: 60px 0px;
  height: 100%;
    object-fit: cover;
 }
 .career-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
/*================= FOOTER =================*/
.subscribe-card-btn{
  gap: 30px;
}
.level-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.level-up-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.level-up-img {
  width: 100%;
  height: 100%;
}
/*================= FOOTER =================*/
.faq-img{
  height: 550px;
}
.section-faq.accordion-item {
  background-color: var(--theme-color);
  border: none;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.section-faq .accordion-button {
  color: white;
  background-color: var(--theme-color);
  font-weight: 500;
  font-size: 18px;
  border-radius: 0 !important;
  padding: 20px 15px;
  text-decoration: none;
}
.section-faq .accordion-button:not(.collapsed) {
  background-color: var(--theme-color);
}
.section-faq .accordion-button:focus {
  box-shadow: none;
}
.section-faq .accordion-body {
  color: black;
  background-color: #e8e8e8;
}
.section-faq.core-value .accordion-body{
  background-color: #fff;
}
.section-faq .accordion-button::after{
  filter: brightness(34.5);
}
.display-last .theme_btn.btn-icon{
  margin-left: auto;
  margin-right: auto;
}
#faqsAccordion .accordion-item{
  border: 0;
}
.display-last p{
  margin: 0%;
}
/*================= FOOTER =================*/
.additional-Links {
  background-color: var(--theme-color);
  padding-top: 40px;
}
.additional-Links .accordion-button::after {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: auto;
  content: "";
  background-image: url(../img/accordion-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  transition: transform .2s ease-in-out;
}
.custom-accordion-body a{
  color: white;
}
.custom-accordion-body a:hover{
  color: #f4f4f4;
}
.custom-accordion-body li{
  list-style: none;
  margin-bottom: 7px;
}
.custom-accordion-body ul{
  padding: 0%;
}
.additional-Links .social-link{
  display: flex;
  align-items: center;
  justify-content: end;
}
.additional-Links .social-link a{
  margin-left: 10px;
  width: 26px;
  height: 26px;
  display: block;
}
.additional-Links .social-link a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.additional-Links .accordion-header{
  width: 232px;
  
}
.accordion-arrow {
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
}
.accordion-arrow.rotate {
  transform: rotate(180deg);
}
.custom-accordion-button{
  width: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent;
  border: none;
  cursor: pointer;
}
/* =========== Section Tag Line ===========*/
.section-tag-line{
  padding: 100px 0;
  background: #003C71;
  background: linear-gradient(90deg, rgba(0, 60, 113, 1) 34%, rgba(0, 0, 0, 1) 100%);
}
/* =========== Time Line ===========*/
.timeline-icon{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100px;
  padding: 12px 20px;
}
/* =========== News Events ========*/
.section-news-events .card-body h3{
  min-height: 143px;
}
.card_img-wrap{
  height: 275px;
  overflow: hidden;
}
.card_img-wrap img{
  transition: all .3s ease;
}
.section-news-events .card:hover .card_img-wrap img{
  transform: scale(1.2);
}
.content-banner{
  background: linear-gradient(0deg, rgba(0, 60, 113, 1) 34%, rgba(0, 0, 0, 1) 100%);
}
.info-wrap{
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}
.section-content ul {
  padding-left: 25px;
  list-style: none;
}
.section-content ul li {
  position: relative;
}
.section-content ul li::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 7px;
  width: 15px;
  height: 15px;
  background: url('../img/icons/check.svg');
  background-size: 15px 15px;
  background-repeat: no-repeat;
}
.section-content h2,
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6,
.section-content p,
.section-content b {
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}
.section-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 32px;
}
.section-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 28px;
}
.section-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
}
.section-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}
.section-content h6 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 18px;
}
.section-content p {
  font-size: 16px;
  margin-top: 16px;
}
/* Rich text: keep spans inline (inline-block breaks TinyMCE / table layouts) */
.section-content-body span {
  font-size: inherit;
  display: inline;
  vertical-align: baseline;
}
.section-content b {
  font-weight: 700;
  color: #000;
}

.section-content .section-content-main {
  min-width: 0;
  flex-shrink: 1;
}

.blog-article-featured {
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  background: #f0f2f5;
}
.blog-article-featured img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}

/* Rich-text tables (e.g. TinyMCE) inside article / news body */
.section-content-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  min-width: 0;
}
.section-content-body img {
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.section-content-body img.obj_fit,
.section-content-body img.obj_fit_contain {
  width: auto;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}
.section-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: none !important;
  font-size: 16px;
  color: #333;
  line-height: 1.65;
}
.section-content table th,
.section-content table td {
  border: none !important;
  text-align: left;
  vertical-align: top;
  padding: 1.15rem 2.5rem 1.15rem 0;
  background: transparent;
}
.section-content table th:last-child,
.section-content table td:last-child {
  padding-right: 0;
}
.section-content table thead th {
  font-weight: 700;
  color: #111;
  padding-bottom: 1.35rem;
}
.section-content table tbody th {
  font-weight: 700;
  color: #111;
}
.section-content table tbody td {
  font-weight: 400;
}
.section-content table caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .section-content table {
    font-size: 15px;
    margin: 1.5rem 0;
  }
  .section-content table th,
  .section-content table td {
    padding: 0.85rem 1.25rem 0.85rem 0;
  }
}

.clear-search{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  box-shadow: none;
  background-color:transparent;
}
/* Tablet - Medium Screens */
@media (max-width: 991px) {
  .section-content h2 {
    font-size: 28px;
  }
  .section-content h3 {
    font-size: 24px;
  }
  .section-content h4 {
    font-size: 22px;
  }
  .section-content h5 {
    font-size: 18px;
  }
  .section-content h6 {
    font-size: 16px;
  }
  .section-content p,
  .section-content-body span {
    font-size: 15px;
  }
}
/* Mobile - Small Screens */
@media (max-width: 576px) {
  .section-content h2 {
    font-size: 24px;
  }
  .section-content h3 {
    font-size: 20px;
  }
  .section-content h4 {
    font-size: 18px;
  }
  .section-content h5 {
    font-size: 16px;
  }
  .section-content h6 {
    font-size: 15px;
  }
  .section-content p,
  .section-content-body span {
    font-size: 14px;
  }
}

/* Block Card */
.block-card{
  padding: 0 25px;
}
.block-card i{
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
/* PDF BLOCK */
.pdf-block {
  background: var(--theme-color);
  display: block;
  padding: 15px 23px 15px 15px;
  text-align: center;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  position: relative;
  min-height: 77px;
  display: flex;
  align-items: center;
  text-align: left;
}
.pdf-block:hover{
  color: #fff !important;
}
.pdf-block::after{
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  background-image: url('../img/icons/arrow-external.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  filter: invert(1);
}
/* ========== Course Details */
.container_lg{
  margin: 0 auto;
  width: 95%;
  max-width: 2500px;
}
.course-detail-banner h1{
  max-width: 600px;
}
.duration-notice{
  font-style: italic;
}
.course-detail-banner .theme_btn.download-icon{
  padding: 13px 20px;
  gap: 15px;
  border-radius: 30px;
  font-size: 15px;
}
.course-banner-img {
  max-height: 450px;
  height: 450px;
}
.course-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-columns p,
.section-columns span,
.section-columns b,
.section-columns li{
  color: #ffffffc0;
  font-size: 14px;
  margin: 0;
}
.section-columns .bx-item.bg-light-3 *{
  color: var(--theme-color);
}
.section-columns .row .col-lg-2{
  width: 20%;
}
.bx-item {
  padding: 20px;
  height: 100%;
}
.bx-item div{
  min-height: 121px;
}
.section-columns .container-fluid{
  max-width: 90%;
}
.section-columns h4{
  min-height: 48px;
}
.section-overivew{
  background-color: var();
}
.section-overivew p{
  margin-bottom: 15px;
}
/* SECTION HIGHTLIGHT */
.accordion-button:focus{
  box-shadow: none;
}
.section-program-highlight .accordion-body .hightligh-content{
  margin-left: auto;
  padding-right: 30px;
  padding-right: 15%;
}
.section-program-highlight .accordion-body .hightligh-content{
  color: #fff;
}
.section-program-highlight .accordion-body .hightligh-content p{
  line-height: 1.5;
}
.programehight.accordion .accordion-item:first-child {
  border-top: 0;
}
.programehight.accordion .accordion-item:last-child{
  border-bottom: 0;
}
.programehight.accordion .accordion-item .accordion-button h5{
  font-size: 24px;
  margin: 0 !important;
  font-weight: 500;
  color: var(--theme-color);
  width: 50%;
}
.programehight.accordion .accordion-item .accordion-button{
  text-decoration: none !important;
  padding: 43px 20px;
  align-items: flex-start;
  justify-content: space-between !important;
}
.programehight.accordion .accordion-item .accordion-button .accordion-collapse{
  width: 50%;
}
.programehight.accordion .accordion-item .accordion-button .accordion-body{
  padding: 0;
}
.programehight.accordion .accordion-button::after{
  position: absolute;
  right: 5%;
  background-image: url('../img/accordion-arrow-down.svg');
  width: 40px;
  height: 40px;
  background-size: contain;
}
.programehight .accordion-button:not(.collapsed){
  background-color: var(--theme-color);
}
.programehight .accordion-item:first-of-type .accordion-button{
  border-radius: 0 !important;
}
.programehight.accordion .accordion-item{
  border-left: 0;
  border-right: 0;
}
.programehight.accordion .accordion-item .accordion-button:not(.collapsed) h5{
  color: #fff;
}
.pl-5-per{
  padding-left: 5%;
}
.pr-5-per{
  padding-right: 5%;
}
/* section-curriculum */
.section-curriculum{
  background-color: #f4f4f4;
}
.section-curriculum .accordion .accordion-button::after{
  position: absolute;
  right: 0;
  background-image: url('../img/accordion-arrow-down.svg');
  width: 30px;
  height: 30px;
  background-size: contain;
}
.section-curriculum .accordion .accordion-button h5{
  font-size: 21px;
  font-weight: 600;
}
.section-curriculum .accordion .accordion-item{
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #DDD7D2 !important;
}
.section-curriculum .accordion .accordion-item .accordion-button{
  padding: 35px 0;
  background-color: transparent;
}
.section-curriculum .accordion .accordion-item .accordion-button h5{
  font-size: 26px;
  color: var(--theme-color);
}
.section-curriculum .accordion .accordion-item .accordion-button:not(.collapsed){
  box-shadow: none;
}
.accordion-item:first-of-type{
  border-radius: 0;
}
.section-curriculum .curriculum-content ul{
  padding: 0;
}
.section-curriculum .curriculum-content ul li{
  margin-bottom: 15px;
}
.section-curriculum .accordion .accordion-item:last-child{
  border-bottom: 0 !important;
}

/* SECTION ELIGIBLE */
.section-eligible{
  padding: 100px 0;
  background: #003C71;
  background: linear-gradient(90deg, rgba(0, 60, 113, 1) 34%, rgba(0, 0, 0, 1) 100%);
}
.section-eligible *{
  color: #ffff;
}
.section-eligible .ul-listing .ul-block{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}
.section-eligible .ul-listing .ul-block li {
  color: #fff;
  width: 15%;
  flex-grow: 1;
  font-size: 17px;
  font-weight: 500;
  padding: 0 15px;
  position: relative;
}
.section-eligible .ul-listing .ul-block li::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 90%;
  background-color: #ffffff45;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-eligible .ul-listing .ul-block li:last-child::after{
  display: none;
}
.section-eligible .ul-listing .ul-block li strong{
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.section-eligible h2 {
  font-size: 30px;
}
.section-eligible h3 {
  font-size: 27px;
}
.section-eligible h4 {
  font-size: 24px;
}
.section-eligible h5 {
  font-size: 20px;
}
.section-eligible h6 {
  font-size: 18px;
}
@media only screen and (max-width:1200px){
  .section-eligible .ul-listing .ul-block{
    flex-wrap: wrap;
  }
  .section-eligible .ul-listing .ul-block li{
    width: 49%;
    margin-bottom: 20px;
  }
  .section-eligible .ul-listing .ul-block li::after{
    display: none;
  }
}
@media (max-width: 991.98px) {
  .section-eligible h2 {
    font-size: 28px;
  }
  .section-eligible h3 {
    font-size: 25px;
  }
  .section-eligible h4 {
    font-size: 22px;
  }
  .section-eligible h5 {
    font-size: 18px;
  }
  .section-eligible h6 {
    font-size: 16px;
  }
}
@media (max-width: 785.98px) {
  .section-eligible h2 {
    font-size: 26px;
  }
  .section-eligible h3 {
    font-size: 23px;
  }
  .section-eligible h4 {
    font-size: 20px;
  }
  .section-eligible h5 {
    font-size: 17px;
  }
  .section-eligible h6 {
    font-size: 15px;
  }
}
@media (max-width: 599.98px) {
  .section-eligible h2 {
    font-size: 24px;
  }
  .section-eligible h3 {
    font-size: 21px;
  }
  .section-eligible h4 {
    font-size: 18px;
  }
  .section-eligible h5 {
    font-size: 16px;
  }
  .section-eligible h6 {
    font-size: 14px;
  }
}

.quote {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  text-align: center;
}
.quote div>i {
  font-size: 47px;
  color: #000;
  display: block;
  margin-bottom: 0;
  font-weight: 700;
}
.quote div.msg {
  max-width: 964px;
  margin: 0 auto 65px;
  color: #000;
  font-style: italic;
  font-size: 27px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
}
.quote .bottom {
  font-size: 12px;
  color: #999;
}
@media only screen and (max-width:1400px){
  .container_lg{
    width: 100%;
  }
  .section-columns .row .col-lg-2{
    width: 50%;
  }
}
@media only screen and (max-width:992px){

}
@media only screen and (max-width:768px){
  .section-columns .row .col-lg-2{
    width: 100%;
  }
  .bx-item div,
  .section-columns h4{
    min-height: auto;
  }
  #programehight.accordion .accordion-item .accordion-button{
    flex-direction: column;
    gap: 20px;
  }
  .pl-5-per{
    padding-left: 0;
  }
  #programehight.accordion .accordion-button::after{
    right: 2%;
  }
  .section-program-highlight .accordion-body .hightligh-content{
    padding-right: 0;
  }
  #programehight.accordion .accordion-item .accordion-button h5,
  #programehight.accordion .accordion-item .accordion-button .accordion-collapse{
    width: 100%;
  }
}
@media only screen and (max-width:575px){
  #programehight.accordion .accordion-item .accordion-button h5{
    font-size: 18px;
  }
  #programehight.accordion .accordion-button::after{
    width: 25px;
    height: 25px;
  }
}
.quick-links{
  background-color: var(--color-dark-slate-gray);
}
.icon-size{
  width: 30%;
  margin-bottom: 10px;
}
.blockquote_footer a{
  text-decoration: underline;
  color: #333;
  font-size: 14px !important;
}