
a{text-decoration: none;}

body{
	font-family: Graphik, sans-serif, system-ui;
	font-size: 16px;
}

header {
  background-color: #00152e;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

@font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: normal;
	 font-weight: 700;
	 src: url("../fonts/Graphik-Bold.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: italic;
	 font-weight: 700;
	 src: url("../fonts/Graphik-BoldItalic.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: normal;
	 font-weight: 600;
	 src: url("../fonts/Graphik-Semibold.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: italic;
	 font-weight: 600;
	 src: url("../fonts/Graphik-SemiboldItalic.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: normal;
	 font-weight: 400;
	 src: url("../fonts/Graphik-Regular.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Graphik";
	 font-style: italic;
	 font-weight: 400;
	 src: url("../fonts/Graphik-RegularItalic.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Tiempos";
	 font-style: normal;
	 font-weight: 400;
	 src: url("../fonts/tiempos-text-regular.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Tiempos";
	 font-style: italic;
	 font-weight: 400;
	 src: url("../fonts/tiempos-text-regular-italic.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Tiempos";
	 font-style: normal;
	 font-weight: 600;
	 src: url("../fonts/tiempos-text-medium.woff2") format("woff2");
}
 @font-face {
	 font-display: swap;
	 font-family: "Tiempos";
	 font-style: italic;
	 font-weight: 600;
	 src: url("../fonts/tiempos-text-medium-italic.woff2") format("woff2");
}


.navbar-brand{
    cursor: pointer;
    text-decoration: none;
    color: #f6f4f2;
    transition: color .2scubic-bezier(.65,0,.35,1);
    font-size: 24px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

    .navmenu a:first-child{
    	padding-left:0px;
    }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0; 
    background: #000;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: #fff;
    border-bottom: 1px solid #ffffff26;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #fff;
  }

    #navmenu .dropdown ul li a::after {
    content: "\F135"; /* Unicode for bi-arrow-right-short */
    font-family: "bootstrap-icons";
    display: inline-block;
    margin-left: 6px; /* Adjust spacing */
    font-size: 1.1rem; /* Adjust icon size */
    color:#000;
}

  #navmenu .dropdown ul li a:hover::after {
    content: "\F135"; /* Unicode for bi-arrow-right-short */
    font-family: "bootstrap-icons";
    display: inline-block;
    margin-left: 6px; /* Adjust spacing */
    font-size: 1.1rem; /* Adjust icon size */
    color:#fff;
}

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 991.98px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #FFF, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #002147;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FFF;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #002147;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #002147, transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


.navbar-brand-name{
    display: none;
}


.scrolled .navbar-brand-name{
    display: block !important;
    cursor: pointer;
    text-decoration: none;
    color: #f6f4f2;
    transition: color .2scubic -bezier(.65, 0, .35, 1);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    padding: 7px 0px;
}

.scrolled .navmenu {
  width:100%;
  padding-top: 3px;
}

.scrolled .executiveEdu {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .logo{
    display: none;
}

.scrolled .sticky-top {
    position: -webkit-fixed;
    position: fixed;
    top: 0;
    z-index: 1020;
    width:100%;
}

.scrolled header { 
    padding: 0px 0;
}

.logo{
	width:240px
}

.executiveEdu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid hsla(0, 0%, 100%, .15);
}

.executiveEdu a{
	color:#fff;
}
.executiveEdu a:hover{
	color:#f1f1f1;
}
.bll{
	background-color: #002147;
	padding-top:66px;
	padding-bottom: 20px;
}

.bll h1{
 font-size: 90.4px;
 color:#fff;
 font-weight: 700;
line-height: 1;
letter-spacing: -.03em;
transform: translateX(-.06em);
}

.bll h2{
  font-size: 63.96px;
 color:#fff;
 font-weight: 700;
line-height: 1;
letter-spacing: -.03em;
transform: translateX(-.06em);
}


.breadcrumbList { 
    padding: 13px; 
    background-color: #f6f4f2;
}

.breadcrumbList .breadcrumb{
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: 600;
}
 
.breadcrumbList .breadcrumb-item a{
	color:rgba(0,0,0,.66);
}

.breadcrumb-item.active{
	color:#000000d9;
}

.findYourProgram{
	padding: 100px 0px;
	background-color: #f6f4f2;
}

.findYourProgram h1{ 
	font-size: 45px;
	color: rgba(0,0,0,.85);
	font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.035em;
    transform: translateX(-.06em);
}
.progCard{
	padding: 15px 0px;
}

.progCard h4{
	font-size: 20px;
	font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.progCard h4 a{
	color: rgba(0, 0, 0, .85);
}
.progCard h4 a:hover{
	color: #002147;
	text-decoration: underline;
}

.progCard p{
    font-size: 16px; 
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    color:rgba(0,0,0,.66);
}

.find-your-program{
  background: #222; 
    padding: 3vw 0;
}

 

.fyp h2{
	font-size: 45px;
	color:#fff;
	font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.035em;
    letter-spacing: -.05em;
    transform: translateX(-.06em);
}

.fyp p{
	font-size: 45px;
	color:hsla(0,0%,100%,.72);
	font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.035em;
    letter-spacing: -.05em;
    transform: translateX(-.06em);
}
 
.dropdown-container {
    display: flex;  
    border-radius: 4px !important;    
    margin-top: 50px;      
}

.dropdown-container  .dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
}
.dropdown-container  .dropdown-btn {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid hsla(0,0%,100%,.34);
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsla(0,0%,100%,.15);
}
.dropdown-container  .dropdown-btn span{
	color: hsla(0,0%,100%,.72);
}
.dropdown-container  .dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    background: hsla(0,0%,100%,.15);
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: #f6f4f2;
    z-index: 999;
    padding: 6px;
}
.dropdown-container  .dropdown-content label {
    display: block;
    padding: 5px;
    cursor: pointer;
}
.dropdown-container  .dropdown-content input {
    margin-right: 5px;
}

.dropdown-container .browse-btn {
    background-color:#002147;
    color: hsla(0,0%,100%,.95);
    padding: 10px 15px;
    border: hsla(0,0%,100%,.34) solid 1px;
    cursor: pointer;
}

.dropdown-container .browse-btn:hover {
    background-color:#00142a; 
}


.dropdown-container .search-box {
    flex-grow: 1;
    padding: 15px 10px 15px 35px;
    border: hsla(0,0%,100%,.34) solid 1px;
    background-color: hsla(0,0%,100%,.15);
 	color:#fff;
}

.dropdown-container .search-box:focus-visible {
  outline: 1px solid #fff;
}

.dropdown-container .dropdown-btn .bi{
	color: #ccc;
}

.search-box-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.search-box-container::before {
    content: "\F52A"; /* Bootstrap Icons Unicode for "bi-search" */
    font-family: "Bootstrap-Icons";
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: hsla(0,0%,100%,.72);
}

.dropdown-container .search-box::placeholder {
  color: hsla(0,0%,100%,.72);
  opacity: 1; /* Firefox */
}

.dropdown-container .search-box::-ms-input-placeholder { /* Edge 12 -18 */
  color: hsla(0,0%,100%,.72);
}

.program-finder__footer {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #ccc;
    margin-top: 24px;
}

.program-finder__footer a{
	color: #ccc;
	text-decoration: underline;
}
.program-finder__footer a:hover{
	color: #fff;
	text-decoration: underline;
}


.worldClass{
	padding: 100px 0px;
	background-color: #fff;
}

.worldClass h1{ 
	font-size: 45px;
	color: rgba(0,0,0,.85);
	font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.035em;
    transform: translateX(-.06em);
}
.wCard{
	padding: 15px 0px;
}

.wCard_b_none{
  box-shadow: none !important;
}

.wCard h4{
	font-size: 20px;
	font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: rgba(0, 0, 0, .85);
}

 

.wCard p{
    font-size: 16px; 
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    color:rgba(0,0,0,.66);
}

.pe-55{
	padding-right: 100px;
}

.participant-stories{
	padding-bottom: 100px;
}

.participant-stories h3{
	font-size: 16px; 
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    padding-right: 12px;
    color: rgba(0, 0, 0, .85);
    padding: 15px 0px;
    position: relative;
}
/*.participant-stories h3:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    width: auto;
    margin-right: 0;
    margin-left: 0;
    border-bottom: 1px solid;
    color: rgba(0,0,0,.34);
    pointer-events: none;

}*/

.participant-stories .psCard{
	padding: 15px 0px;
}

.participant-stories .psCard h4{
	        font-size: 31.99px;
	font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.participant-stories .psCard h4 a{
	color: rgba(0, 0, 0, .85);
}
.participant-stories .psCard h4 a:hover{
	color: #002147;
	text-decoration: underline;
}

.participant-stories .psCard p{
    font-size: 16px; 
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    color:rgba(0,0,0,.66);
}
.participant-stories  img{
	width: 100%;
}

.bottomProgram{
	background-color: #000;
	padding: 60px 0px;
}

.bottomProgramCard{
	padding: 20px;
	background-color: #fff;
	color: #333;
	display: inline-block;
	position: absolute;
    bottom: 0px;
    width: 35%;
    right: 12px;
}

.bottomProgramCard h3{
	font-size: 45px;
	font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.035em;
    transform: translateX(-.06em);
    margin-bottom: 18px;
}

.bottomProgramCard p{
	font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.01em;
    display: block;
    margin-bottom: 24px;
/*    max-width: 30em*/
}

.cta-link--primary-button {
    background-color: #002147;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    line-height: 1.55;
    letter-spacing: -.02em;
    font-weight: 600;
}

.isbm-cta-link__icon {
    height: .7em;
    width: .7em;
    margin-left: 8px;
    flex-shrink: 0;
    transform: translateY(-1px);
}

.cta-link--primary-button:hover {
        border-color: rgba(0,0,0,.85);
        background-color: rgb(0,0,0);
        color: #fff;
        outline: none;
    }

   .cta-link--primary-button{
    transform: translateY(0);
}

.isbm-cta-link__icon{
    transition: transform .2scubic-bezier(.65,0,.35,1);
}


footer{
	padding-top: 20px;
	background: #222;
	color: #fff;
}
 .footerLogoText {
 	max-width: 6ch;
 	letter-spacing: -.02em;
    font-weight: 600;
    line-height: 1;
    font-size: 20px;
}

.footer-block__title {
    font-size: 16px; 
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-block {
    font-size: 16px; 
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-weight: 400;
}

.footerlink ul{
	list-style: none;
	padding-left: 0px;
}

 
.footerlink ul li a{
	font-size: 16px; 
    line-height: 1.4;
    letter-spacing: -.01em;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 400;
    color: #fff;
    text-decoration: underline;
    display: inline-block;
}

.footerlink ul li a:hover{color:#9bcfff;}


 .social-icon {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
        border: 1px solid #222;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 30px;
        display: inline-flex;
        justify-content: center;
		align-items: center;
    }
    
    .social-icon:hover {
        color: #b69347; /* Your preferred color */
        outline: none;
        border: 1px solid #ccc;
    }

.copyright{
	border-top: 1px solid hsla(0,0%,100%,.15);
	padding: 10px 0px;
}

.exnav {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.exnav a{
	color: hsla(0,0%,100%,.82);
}


.h3heading{
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.045em;
    font-size: 28px;
    color:#fff;
}

.fast-growth{
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
    font-size: 63.96px !important;
    color:#fff;
}

.expansiveLearning{
    padding: 40px 0px;
    background-color: #f6f4f2;
    
}
.bgline{ background-color: #f6f4f2;}
.hrLine{ 
    height: 1px;
    width: 100%;
    background: #ccc;
}

.expansiveLearning h3{
    font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.expansiveLearning p{
    font-size: 20px; 
    font-weight: 400;
    line-height: 1.55;
}


.ffPrograms{
    border-top:8px #002147 solid;
    padding: 18px;
    background-color: #fff;
    border-radius: 4px;
    height: 100%;
}

.course-card__category {
    font-size: 14px !important; 
    font-weight: 600 !important;
    line-height: 1.2;
    letter-spacing: -.02em;
    transform: none;
    color: #002147 !important;
    margin-bottom: 8px;
}

.ffPrograms h3{
    font-size: 20px;
    padding-bottom: 8px;
    letter-spacing: -.02em;
    margin-top: -2px;
    line-height: 1.2;
    font-weight: 600;}

.ffPrograms h3 a{
        color: rgba(0, 0, 0, .85);
}

.ffPrograms h3 a:hover{
    color: rgba(0, 0, 0, .90);
    text-decoration: underline;
}

.ffPrograms p {
    font-size: 14px;
    font-family: Graphik, sans-serif, system-ui;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(0, 0, 0, .66);
    line-height: 1.4;
    max-width: 460px;
}

.hbs-course-card__details {
    align-items: flex-start;
    display: flex;
    padding: 0 0 14px;
    justify-content: space-between;
    font-size: 14px;
}

.hbs-course-card__details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hbs-course-card__details li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hbs-course-card__details {
    color: rgba(0, 0, 0, .55) !important;
}

.hbs-course-card__details li p{
    margin-bottom: 3px;
}


.SuperchargeYourNetwork{
    background-color: #fff;
    min-height: 384px;
    padding: 2vw;
}

.SuperchargeYourNetwork h4{
    font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: rgba(0, 0, 0, .85);
    margin-bottom: 12px
}

.SuperchargeYourNetwork p{
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -.02em;
    color: rgba(0,0,0,.66);
    max-width: 30em
}

.cta-card__cta {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 84px;
    row-gap: 12px;
}

.video {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fw-700{
  font-weight: 600;
}


.fs-border{ 
  width: 50%;
  border: 1px solid #585858;
}

.btn-custom {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #fff;
    border-radius: 5px;
}


@media (min-width: 1024px) {
    .hbs-details-sidebar {
        padding: 25px 8px;
        margin-left: -8px;
        margin-right: -8px;
        max-height: calc(100vh -(2vw + 45px));
        overflow-y: auto;
        display: block;
    }
}
 
#footer {
    clear: both;
  
}
#sidebar {
    width: 100%;
    position: absolute;
    height:460px;
}
 
#sidebar.fixed {
    position: fixed;
    top: 60px !important;
}
 
.fixed {
    z-index: 1000;
}

.kpf{margin-top: 30px}

.kpf h4{
    font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
    color:rgba(0,0,0,.85);
}

.kpf .accordion-button {
  background: transparent;
}

.kpf .accordion-item {
    background: transparent;
}

.kpf .accordion-button:not(.collapsed) {
  box-shadow: none;}

.kpf  .accordion-button:focus {
    box-shadow: none;
  border: none;
}

.kpf .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.02em;
  color:rgba(0,0,0,.85);
  margin-top: 20px;
}

.kpf .accordion-button:not(.collapsed) {
  color: #002147;  
  padding-bottom: 0px;
}

.keyTopics  h4{
  font-size: 31.99px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.03em;
  color:rgba(0,0,0,.85);
  margin-top: 20px;
}

.keyTopics ul {
  margin-top: 15px;
}

.keyTopics ul li{
  margin-bottom: 10px;
  font-size: 16px;
  font-family: Graphik, sans-serif, system-ui;
}

.keyTopics ul>li::marker {
    color: #002147;
    line-height: 0;
    font-size: 20px;
}


.programFormat h2{
  font-size: 63.96px;
  font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
    transform: translateX(-.06em);
    margin-top: 0;
    display: inline-block;
    color:rgba(0,0,0,.85);
    margin-bottom: 20px;
}

.programFormat {
    padding: 18px;
    margin-bottom: 8px;
}


.pfCard{
  padding: 18px;
  background-color: #002147;
  color: #fff;
  height: 100%;
  margin-bottom: 15px;
}

.pfCard span{
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  display: block;
  font-family: Tiempos, serif, system-ui;

}

.pfCard i{
  display: block;
  font-style: normal;
  margin-top: 20px;
  font-size: 18px;
}


.WSAttend h2{
  font-size: 63.96px;
  font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
    transform: translateX(-.06em);
    margin-top: 0;
    display: inline-block;
    color:rgba(0,0,0,.85);
    margin-bottom: 20px;
}

     
.WSAttend ul {
  margin-top: 15px;
}

.WSAttend ul li{
  margin-bottom: 10px;
  font-size: 16px;
  font-family: Graphik, sans-serif, system-ui;
}

.WSAttend ul>li::marker {
    color: #002147;
    line-height: 0;
    font-size: 20px;
}

.teachingTeam {margin-top: 20px;}

.teachingTeam h2{
  font-size: 63.96px;
  font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
    transform: translateX(-.06em);
    margin-top: 0;
    display: inline-block;
    color:rgba(0,0,0,.85);
    margin-bottom: 20px;
}

.facultyChair  h4{
  font-size: 31.99px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.03em;
  color:rgba(0,0,0,.85);
  margin-top: 20px;
}

.facultyChair  h3{
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.03em;
  color:#000;
  margin-top: 0px;
  padding-top: 0px;
}

.facultyChair  h3 a{
  color:#000;
  -webkit-text-decoration-color: rgba(0, 0, 0, .45);;
    text-decoration-color: #00000073;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

.facultyChair  h3 a:hover{
color:#002147;
}

.facultyTitle{
      font-size: 16px; 
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    padding-right: 12px;
}

.facultyName{
    font-size: 16px; 
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-top: 8px;
    color:#000;
    display: block;
}

.facultyName:hover{
  color: #002147;
}

.accordions h2{
  display: block;
  margin-bottom: 0px;
}

.ctn-learn-more{
  color: #000;
  font-weight: 600;
  letter-spacing: -.02em;
   font-size: 20px;
   -webkit-text-decoration-color: rgba(0, 0, 0, .45);;
    text-decoration-color: #00000073;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

.ctn-learn-more:hover{
  color:#002147;
}

.themeColor{
  background-color: #002147;
}

.btn-theme {
    color: #fff;
    border-color: #002147;
    background-color: #002147;
    font-weight: 600;
    padding: 10px 15px;
}

.btn-theme:hover {
    color: #002147;
    border-color: #002147;
    background-color: transparent;
}

.btn-outline-theme {
    color: #002147;
    border-color: #002147;
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-theme:hover {
    color: #fff;
    border-color: #002147;
    background-color: #002147;
}

.borderTop{
  border-top:10px solid #0052b1;
}

.error-text {
    display: none;
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .form-control, .form-select {
        padding: 12px 10px;
        line-height: 16px;
        border-radius: 3px;
    }
}

.inline-checkbox .allow-text {
    float: left;
    padding-top: 0 !important;
    font-size: 10px;
    margin-bottom: 0px;
    line-height: 1.5;
    color: #000;
}

.btn-login {
    color: #fff;
    background: rgb(0, 168, 135);
    background: linear-gradient(45deg, rgba(0, 168, 135, 1) 0%, rgba(0, 138, 194, 1) 100%);
    border-radius: 5px;
    margin-bottom: 10px;
}

.btn-login:hover {
    color: #fff;      
    background: rgb(0, 168, 135);
    background: linear-gradient(45deg,  rgba(0, 138, 194, 1) 0%, rgba(0, 168, 135, 1) 100%);
}
.login-wrapper {
    background: #fff;
}
.auth-left {
    background-size: cover;
    background-position: center center;
    background-color: #388efb;
    min-height: 100vh;
    padding: 40px;
    background: rgb(0, 168, 135);
    background: linear-gradient(45deg, rgba(0, 168, 135, 1) 0%, rgba(0 33 71) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007cc3', endColorstr='#e797c0', GradientType=1 );
}


.alert.alert-danger {
    font-size: 12px;
    color: #fff;
    background-color: #f8163c;
    border-color: #f8163c;
}
.validation-tooltip {
    color: #f8163c;
    font-size: 12px;
}

.login-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0px;
    text-align: center;
}
.login-text h1 {
    color: #fff;
    font-weight: 900;
    font-size: 50px;
    font-family: roboto;
}

.login-text h4 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 900;
    font-family: roboto;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-container {
    position: relative;
    padding: 30px;
}
.logo-login {
    display: block;
    margin-bottom: 15px;
}

.login-container h2 {
    font-size: 20px;
    color: #1e1d2f;
    font-weight: 700;
    margin-bottom: 20px;
}
.login-container p {
    color: #9d9d9d;
    font-size: 15px;
}

.login-container label,
.register-container .form-group .col-form-label {
    color: #8c8c8c;
    margin-bottom: 2px !important;
    font-size: 14px;
}
.login-container .forgot {
    color: #007ac3;
    margin-bottom: 5px !important;
    font-size: 13px;
    padding: 0;
    float: right;
}
.login-container .form-control,
.register-container .form-control {
    border: 1px solid #d5d5dc;
    height: 40px;
    border-radius: 2px;
    box-shadow: none !important;
}
.login-banner {
    width: 100%;
    max-width: 486px;
    margin: 0 auto;
}
.login-banner img {
    width: 100%;
}
.login-container .form-control[type="password"] {
    letter-spacing: 4px;
}
.btn.btn-blue.btn-block {
    height: 40px;
    background: #e797c0;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    line-height: 40px;
    display: block;
}
.auth-left span {
    position: absolute;
}
.auth-left span.topright {
    right: 30px;
    top: 30px;
}
.auth-left span.bottomleft {
    left: 30px;
    bottom: 30px;
}
.btn.btn-blue.btn-block.register-btn {
    background: #007ac3;
}

@media (max-width: 991px) {
    .update {
        font-size: 12px;
        padding: 6px 9px;
        margin-left: 4px;
    }
    #navbarNav {
        position: fixed;
        background: #0091e1;
        width: 100%;
        left: 0;
        top: 70px;
    }
    .navbar-fixed-top {
        justify-content: end;
    }
    .logo-container {
        position: absolute;
        left: 70px;
    }
}
@media (max-width: 767px) {
    .logo-container {
        position: absolute;
        max-width: 115px;
        left: 60px;
    }

    .login-banner {
        display: none;
    }
    .logo-login {
        max-width: 200px;
        margin: 0 auto 30px;
    }
    .auth-left span img {
        width: 100%;
    }
    .auth-left span {
        width: 70px;
    }
    .login-text {
        position: relative;
        top: 0;
        transform: none;
        margin-top: 10px;
        text-align: center;
    }
    .auth-left {
        padding: 20px;
        height: auto;
        min-height: auto;
    }
    .login-text h1 {
        font-size: 20px;
    }
    .login-text h4 {
        font-size: 15px;
        margin-bottom: 0;
    }
    .login-container h2 {
        font-size: 18px;
        color: #1e1d2f;
        font-weight: 700;
        margin-top: 10px;
    }
    .login-container {
        padding: 15px;
    }
    .register-section h1 {
        font-size: 20px;
    }
    .register-container {
        padding: 10px 20px;
    }

    .logo-register {
        width: 200px;
        margin: 15px auto;
        padding: 0;
    }
    .logo-register img {
        width: 100%;
    }
}
.intl-tel-input {
    width: 100%;
}
.areYou .form-label {
    font-size: 14px;
    font-family: Graphik, sans-serif, system-ui;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transform: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #002147;
}
.login-container .form-label {
    color: #333;
    font-weight: 600;
}

.steps {
    background-color: #f6f4f2;
}

.steps h3 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.steps h3 span {
    display: block;
    color: #222;
}

.steps p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
}

.steps .row {
    border-bottom: 1px solid #ddd;
}

.blueBox {
    background-color: #002147;
    min-height: 384px;
    padding: 2vw;
}

.blueBox h4 {
    font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
}

.blueBox p {
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 30em;
}

.ctaHeight {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 14px;
    row-gap: 12px;
}

.ctaBtn {
    background-color: #fff;
    color: #000;
    padding: 15px 20px;
    border-radius: 4px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.ctaBtn:hover {
    border-color: rgba(0, 0, 0, 0.85);
    background-color: rgb(0, 0, 0);
    color: #fff;
    outline: none;
}

.admissionLink a {
    color: #000;
    font-size: 18px;
    font-weight: 800;
    -webkit-text-decoration-color: rgba(0, 0, 0, 0.45);
    text-decoration-color: #00000073;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.admissionLink a:hover {
    color: #333;
}

#faculties {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out; /* Smooth transition */
}
#toggleButton {
    cursor: pointer;
    font-weight: bold;
    background: #e3e3e3;
    border-radius: 4px;
    padding: 3px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#toggleButton .bi {
    font-size: 20px;
}

.offcanvas-width {
    top: 0;
    right: 0;
    width: 50% !important;
    transform: translateX(100%);
}

.sidebar-image-block {
    background-color: #dce5de;
    display: flex;
    padding: 2rem;
    align-items: end;
}

.offcanvas-body .description {
    text-align: left;
    padding: 2rem;
}

.offcanvas-body .description h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.offcanvas-body .description p {
    font-size: 14px; 
    margin-bottom: 10px;
}

.sidebar-image-block img {
    height: 200px !important;
}

.sidebar-image-block .btn-close {
    position: absolute;
    top: 15px;
    right: 30px;
}

.user-info {
    position: relative;
}

.user-info::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #004ca3;
    width: 40%;
    height: 3px;
}

.sidebar-image-block .user-info h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-top: 1rem;
}

.sidebar-image-block.user-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}

.bg-green {
    background-color: #dce6de;
}

.banner-img img {
    width: 100%;
}

.banner-text {
    margin: 100px 20px;
}

.banner-text abbr {
    font-weight: bold;
    color:#741d27;
    text-transform: uppercase;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

.banner-text h2 {
    font-weight: bold;
    font-size: 65px;
    line-height: 60px;
    color:#000;
    margin-bottom: 20px;
}

.banner-text p { 
    font-size: 20px;
    color:#000;
}

@media (min-width: 1200px) {
    h2 {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 1px;
        font-weight: 700;
    }
}

@media (min-width: 992px) {
    h2 {
        font-size: 48px;
        line-height: 54px;
    }
}

@media (min-width: 600px) {
    h2 {
        font-size: 32px;
        line-height: 38px;
    }
}





















@media (min-width: 1200px) {
    .rowbar-xl {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .exnav {
        justify-content: end;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .col-md-6 .wCard {
    	padding-right: 2vw;
        box-shadow: 1px 0 rgba(0,0,0,.08);
    }
}

@media (max-width: 991.98px) {
	.logo{width:200px;}
.dropdown-container {
	    display: block;  
	}
	.dropdown-container .dropdown {
	    display: block;
	    width: 100%;
	    margin-bottom: 15px;
	}
	.dropdown-container .search-box{
		margin-bottom: 15px;  
	}
	.search-box-container::before { 
	    top: 17px;
	}

	.wCard{
		border-top: 1px solid rgba(0,0,0,.08);
	}
	.bottomProgramCard{width: 40%;}
	.bottomProgramCard h3{
	font-size: 30px;}

	.fyp h2, .fyp p{
		font-size: 34px;
	}
	.navmenu{margin-top: 10px}

    .h3heading{ 
        font-size: 28.99px; ;
    }

    .fast-growth{ 
        font-size: 30.96px !important; 
    }

    .stickyBox{
      display: none;
    }

    .offcanvas-width {
      width: 70% !important; 
    }


}

@media (max-width: 767.98px) {
	.logo{width:200px;}

	.bll h1{ font-size: 40px }

	.findYourProgram h1{ font-size: 36px }

	.d-none-worldClass{
		display: none;
	}
	.bottomProgramCard{
	padding: 20px;
	background-color: #fff;
	color: #333;
	display: inline-block;
	position: relative;
    bottom: 0px;
    width: 100%;
	}
	.findYourProgram {
    padding: 60px 0px;6;
	}
	.worldClass {
    padding: 60px 0px; 
	}

  .bll h2{font-size: 40px;}

  .programFormat h2{font-size: 40px;}

  .WSAttend h2{font-size: 40px;}
  
  .teachingTeam h2{font-size: 40px;}

   .offcanvas-width {
      width: 90% !important; 
    }


}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team{
  padding: 100px 0px;
}

.team .team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, #002147, transparent 90%);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
}

.team .team-card:hover .image-wrapper .social-links {
  opacity: 1;
  visibility: visible;
}

.team .section-title h4 {
  color: #002147;
  font-size: 22px;
font-weight: 600;
}
.team .image-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.team .image-wrapper h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #282828;
}

.team .image-wrapper .position {
    color: #002147;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}
.team .image-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, #002147, transparent 85%);
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team .image-wrapper .social-links a {
  width: 35px;
  height: 35px;
  background: #002147;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links a:hover {
  background: #282828;
  transform: scale(1.1);
}

.team .content h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #282828;
  line-height: 1.3;
}

 
.team .content p {
  color: rgba(0,0,0,.66);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team .team-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .team .image-wrapper img {
    width: 100px;
    height: 100px;
  }

  .team .image-wrapper .social-links {
    width: 100px;
    height: 100px;
    gap: 8px;
  }

  .team .image-wrapper .social-links a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .team .content h4 {
    font-size: 20px;
  }

  .team .content .position {
    font-size: 13px;
  }

  .team .content p {
    font-size: 13px;
  }
}



/*Alumni Community*/

.body-copy {
    width: 60%;
}

.body-copy-module h2 {
    margin-bottom: 10px;
    font-size: 34px;
    color: #0a69c2;
}

.alumniCommunity{
  background-color: #f6f4f2;
  padding: 100px 0px;
  }

.alumniCommunity h1{
  font-size: 45px;
    color: rgba(0, 0, 0, .85);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.035em;
    transform: translateX(-.06em);
    margin-bottom: 20px;
}

.alumniCommunity .swiper {
    width: 100%;
    padding: 20px 8px;
}

.alumniCommunity .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.alumniCommunity .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.alumniCommunity .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid transparent;
}

.alumniCommunity .swiper-slide-active img {
    border: 3px solid #007bff;
}

.alumniCommunity .testimonial-box {
    background: #1a265c;
    border-radius: 12px;
    padding: 30px 25px;
    margin-top: 20px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    min-height: 300px;
    transition: opacity 0.4s ease;
    position: relative;
}

.alumniCommunity .quoteText {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.alumniCommunity .testimonial-box h3 {
    margin: 15px 0 10px;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.alumniCommunity .testimonial-box h5 {
    font-size: 24px;
    color: #fff;
}

.alumniCommunity .testimonial-box p {
    margin: 0;
    color: #fff;
    font-size: 20px;
}


/* Navigation arrows */

.alumniCommunity .swiper-button-prev {
    position: absolute;
    left: 10px;
    top: 46%;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
}

.alumniCommunity .swiper-button-next {
    position: absolute;
    right: 10px;
    top: 46%;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
}

.alumniCommunity .swiper-button-next,
.alumniCommunity .swiper-button-prev {
    color: #0a69c2;
}

.alumniCommunity .swiper-button-prev {
    position: absolute;
    left: 10px;
    top: 46%;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
}

.alumniCommunity .swiper-button-next {
    position: absolute;
    right: 10px;
    top: 46%;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
}

.alumniCommunity .testimonial-box:after {
    position: absolute;
    content: "";
    left: 1%;
    top: 5%;
    background-image: url(../images/testimonials.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60px;
    height: 60px;
}

.alumniCommunity .testimonial-box:before {
    position: absolute;
    content: "";
    right: 1%;
    bottom: 4%;
    top: inherit;
    left: inherit;
    background-image: url(../images/testimonials.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60px;
    height: 60px;
    transform: rotate(170deg);
}

.alumni_community { 
  margin-top: 25px;
        font-size: 31.99px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
}

.vh {
    background-color: #d6d8f0;
    width: 1px;
    float: left;
    height: 180px;
    position: relative;
    -webkit-animation: vh 0.9s linear infinite alternate both;
    animation: vh 0.9s linear infinite alternate both;
}


.list-leader .image-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid
 color-mix(in srgb, #002147, transparent 85%);
    transition: all 0.3s 
ease;
}

.list-leader  h5 {
  font-size: 18px;
  font-weight: 600;
}

.list-leader p{
  font-size: 15px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f8f8;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, #002147, transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: #002147;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #282828;
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #282828;
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #002147;
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444444;
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #ffffff, #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, #444444, transparent 90%);
  color: #444444;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: #ffffff;
  border-color: #002147;
  box-shadow: 0 0 0 3px color-mix(in srgb, #002147, transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, #444444, transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: #002147;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, #002147, #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, #002147, transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, #ffffff, #f5f8fd 20%);
  color: #282828;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: #002147;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}
.error{
	color:#f00!important;
}