:root {
  --gray-200: #E7E9EC;
  --gray-300: #AEAEAE;
  --gray-400: #8C8C8C;
  --gray-500: #505050;
  --gray-700: #141414;
  --green: #0FC15E;
  --blue-300: #9eccf4;
  --gradient: 90deg, #0FC15E 20%, #0049BF 110%;
  --nav-gradient: 90deg, #FFF 3%, #0FC15E 20%, #0049BF 100%;
  
  --font-size-300: 18px;
  --font-size-400: 19.21px;
  --font-size-500: 26.56px;
  --font-size-700: 47.61px;

  --accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23212529%27 class=%27bi bi-plus%27%3E%3Cpath d=%27M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z%27/%3E%3C/svg%3E");
  --accordion-btn-active-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23052c65%27 class=%27bi bi-dash%27%3E%3Cpath d=%27M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z%27/%3E%3C/svg%3E");
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 8px;
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .1);
  border-radius: 10px;
  /* border: 2px solid #ffffff; */
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--gray-400);
}

a {
  color: var(--gray-400);
}

a:hover {
  color: var(--green);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Inter", sans-serif;
  color: var(--gray-500);
}
p{
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray-400);
}
.sticky-wrapper {
  height: unset !important;
}
.no-border{
  border:unset!important;
}
.display-block{
  display:block!important;
}
.no-ml{
  margin-left:unset!important;
}

.no-px{
  padding-left: 0px!important;
  padding-right: 0px!important;
}

.ignore-container-mx{
  margin-left:-15px!important;
  margin-right:-15px!important;
}

.px-container{
  padding-left:24px!important;
  padding-right:24px!important;
}

@media (max-width: 575px) {
  .no-px-portrait {
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
  .px-container-portrait{
    padding-left:24px!important;
    padding-right:24px!important;
  }
}
@media (max-width: 991px) {
  .no-px-mobile {
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
  .featured_program-img {
    margin: auto;
    max-width: 254px;
  }
  .px-container-mobile{
    padding-left:24px!important;
    padding-right:24px!important;
  }
  .no-px-mobile {
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
  .no-px-mobile-left {
    padding-left: 0px!important;
  }
  .last-section-home{
    padding-bottom:125px!important;
  }
}
.showing-tranevnt {
    font-weight: 700;
    font-size: 20.74px;
    line-height: 24px;
    color: #141414;
}
@media (max-width:768px){
  .showing-tranevnt {
      font-size: 16px;
  }
}
@media (min-width: 576px) and (max-width: 991px) { /*mobile landscape*/
  .px-container-landscape{
    padding-left:24px!important;
    padding-right:24px!important;
  }
  .search-landscape-filter{
    width:300px;
  }
  .showing-tranevnt {
    width:150px;
  }
  .no-px-mobile-landscape{
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #428bca;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #629fd3;
  transition: background 0.2s ease-in-out;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 89px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 25px 0;
  background: #fff;
  z-index: 997;
  box-shadow: 0px 4px 15px rgb(0 0 0 / 5%);
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0 30px 0px 0px;
  margin: 0;
  max-height: 40px;
}

.no-bg-btn {
  background: transparent;
  border: none;
}
@media (min-width:768px){
  .container-nav{
    padding: 1rem 0 !important;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

.nav-main {
  box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
  display: block!important;
  background: linear-gradient(var(--nav-gradient));
}

/* .nav-main .logo img {
  padding-right: 30px;
} */

.nav-bottom-menu a.active {
  color: var(--gray-500);
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 12px 15px !important;
  transition: 0.3s;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  line-height: 16px;
  font-weight: bold;
  text-align: center;
}

.nav-menu a.active {
  color: var(--gray-500);
}

nav .about_us_desktop {
  display: block;
}

nav .about_us_mobile {
  display: none;
}

nav .nav_followUs{
  display: none;
}
@media (max-width: 767px) {
  .nav-main {
    background: linear-gradient(var(--gradient));
    padding-bottom: 0px;
  }
  .navbar .logo img{
    width: 100%;
  }
}
@media only screen and (max-width: 1025px) {
  nav .about_us_desktop {
    display: none !important;
  }
  nav .about_us_mobile {
      display: block;
  }
  nav .nav_followUs {
    display: block;
  }
  nav .home-button {
    display: block !important;
  }
}

.collapse.navbar-collapse>li>a:focus, .collapse.navbar-collapse>li>a:hover {
  background-color: transparent;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--gray-500);
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #103453;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #428bca;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: -20px;
  z-index: 9998;
  overflow-y: scroll;
  right: -374px;
  width: 300px;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #898989;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.005em;
}

.nav_followUs{
  top: 40px;
  display: block;
  position: relative;
  color: #898989;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.005em;
}

.nav_followUs a{
  display: block;
  position: relative;
  color: #898989;
  padding: 10px 0px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.005em;
}

.nav_followUs .follow_us_caption{
  font-size: 14px;
}
.nav_followUs .nav_fb_icon{
  font-size: 30px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #22B742;
  text-decoration: none;
  font-weight: 700;
}
.mobile-nav ul li ul li a{
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.005em;
  color: #8C8C8C;
  margin-left : 2rem;
}
.mobile-nav ul li ul li .active > a, .mobile-nav ul li ul li a:hover{
  font-weight: 400;
  color: #22B742;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {

  right: 12px;
  top: 1.8rem;
  z-index: 2;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.dropdown-icon{
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  right: 0;
}

.main-menu-wrapper__search-cat{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 9.5px 0;
    width: 100%;
}
.main-menu-wrapper__search-cat:before {
    position: absolute;
    top: -1px;
    bottom: 0;
    left: -30px;
    content: "";
    background-color: #f4f4f400;
    width: 2px;
}
.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.search_header input[type="search"], .search_header input[type="text"]{
  width: 100%;
  background-color: #00000000;
  font-size: 13.89px;
  border: none;
  outline: none;
  height: 34px;
  padding-left: 0px;
  color: #ffffff;
}
.search_header input[type="text"]::placeholder {
  color: #fff;
}
.search_header .thm-btn {
    padding: 0;
    width: 40px;
    height: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 7px;
    right: 0px;
    border-radius: 0;
    background-color: #ffffff00;
    border: 0;
    color: #ffffff;
}
.search_header .thm-btn:hover{
  background-color: #e9f1eb00;
  color: #4F4F4F;
}
.thm-btn {
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    font-size: 17.07px;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 1;
    border: 1px solid #979797;
    line-height: 24px;
    margin-left: 16px;
}
.search_header .thm-btn i {
    margin: 0;
}

.Header_mobile_search {
  display: none;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.05);
  position: absolute;
  z-index: 9999;
}

.breadcrumb {
  color: var(--gray-400);
  font-size: 13.89px;
  font-family: "Inter", sans-serif;
  line-height: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Building Section
--------------------------------------------------------------*/
.we-Building {
    position: relative;
    display: block;
    padding: 10px;
    z-index: 1;
}
section.we-Building.about_page .container{
  max-width: 1060px;
}
.we-Building .container {
    max-width: 950px;
}
.section-title__title {
    margin: 0;
    font-size: 47.61px;
    line-height: 56px;
    font-weight: 900;
    color: var(--gray-500);
    padding-bottom: 20px;
}
.section-title__gbfatglance {
  padding-left: 0px !important;
}
.we-Building p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #8C8C8C;
  padding: 10px 0px;
  margin-bottom: 0;
}
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: #ffffff;
    color: #555555;
    font-size: 17.07px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 24px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.1em;
    border-radius: 8px;
    z-index: 1;
    border: 1px solid #979797;
    line-height: 24px;
    margin-left: 16px;
}
.thm-btn:hover{
  background-color: #22b743;
  color: #fff;
}
button.thm-btn.search_btn {
    display: none;
}
.row.col-xl-12.mobile_menu {
    display: none;
}
hr.menu_line {
    display: none;
}
/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 0;
  overflow: hidden;
  padding-bottom: 64px;
}
#hero .container {
    max-width: 1127px;
}
#hero .carousel-item {
  width: 100%;
  height: 460px;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.slider_1{
  background-image: url("../slider-video.html");
}
.slider_2{
  background-image: url("../slider-webinar.html");
}
.slider_3{
  background-image: url("../slider-program.html");
}
.slider_4{
  background-image: url("../slider-story.html");
}
#hero .carousel-item::before {
  content: '';
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 17px;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}
#hero .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .icon-box .slider1 {
    margin-left: 109px;
    font-weight: 900;
    margin-bottom: 13px;
    font-size: 29.32px;
    line-height: 40px;
    color: #FFFFFF;
    width: 60%;
}
#hero .icon-box .slider2 {
    margin-left: 8px;
    font-weight: 900;
    margin-bottom: 13px;
    font-size: 29.32px;
    line-height: 40px;
    color: #FFFFFF;
    width: 60%;
}
#hero .icon-box .description {
    margin-left: 110px;
    line-height: 21px;
    font-size: 17.32px;
    color: #EFEFEF;
    font-weight: 400;
}
#hero .icon-box .description2 {
    margin-left: 8px;
    line-height: 21px;
    font-size: 17.32px;
    color: #EFEFEF;
    font-weight: 400;
    margin-bottom: 30px;
}
#hero .icon-box .description3 {
    margin-left: 8px;
    line-height: 21px;
    font-size: 17.32px;
    color: #EFEFEF;
    font-weight: 400;
    margin-bottom: 20px;
}
.webiner_sec img {
    width: 18px !important;
    height: 18px;
    margin-right: 7px;
    float: left;
}
p.webiner_sec {
    font-size: 15.2px;
    font-weight: 700;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 8px;
}
#hero .owl-dots, #celebrating .owl-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: -2rem;
    margin-left: 15%;
    list-style: none;
}
#hero .owl-carousel button.owl-dot, #celebrating .owl-carousel button.owl-dot{
  background: #C4C4C4;
  border: none;
  padding: 0!important;
  font: inherit;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  margin-right: 4px;
  margin-left: 4px;
  flex: 0 1 auto;
  opacity: 0.5;
 }
 #hero .owl-carousel button.owl-dot.active, #celebrating .owl-carousel button.owl-dot.active{
   opacity: 1;
 }
@media (min-width: 992px) {
  .nav-main{
    padding: 0;
  }
  .navbar .logo img {
    width: 50px;
  }
}
@media (max-width: 992px) {
  /*#hero, #hero .carousel-item {
    height: 349px;
    width: 328px;
  }
  #hero .carousel-content.container {
    padding: 0 8px;
    width: 93%;
  }*/
}
#hero .causes-one__single {
    height: 460px;
    border: 1px solid #000000;
    border-radius: 4px
}
.carousel-content.container {
  position: absolute;
  bottom: 17px;
  left: 17px;
  right: 0;
  overflow: hidden;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero button.owl-prev, #hero button.owl-next, #celebrating button.owl-prev, #celebrating button.owl-next{
  position: absolute;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
 
}
#hero button.owl-prev, #celebrating button.owl-prev{
  left: -7%; 
}
#hero button.owl-next, #celebrating button.owl-next{
  right: -7%;
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon, #celebrating .carousel-control-next-icon, #celebrating .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-weight: 600;
  font-size: 17.07px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 24px;
  border-radius: 8px;
  transition: 0.5s;
  line-height: 24px;
  color: #fff;
  border: 0;
  background: #22B742;
  bottom: 25px;
  right: 22px;
  position: absolute;
}
#hero .btn-get-started img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    float: left;
}
#hero .btn-get-started:hover {
  background: #0874bd;
}

.owl-carousel .owl-item img {
  height: 576px;
  object-fit: cover;
}

h2.digit_cls {
  /* font-size: 47.61px; */
  font-size: 33.68px;
  color: #7B7B7B;
  line-height: 56px;
  font-weight: 900;
}

@media (max-width: 767px) {
  #hero h2 {
    font-size: 28px;
  }
  .float-right.search_form {
      display: none;
  }
  #header{
    height: 90px;
    padding: 6px 0px 0px 0px;
  }
  .menu_line{
    width: 100%;
    float: left;
    margin-top: 5px;
    border-top: 1px solid #F4F4F4;
    margin-bottom: 0px;
  }
  .section-title__title{
    font-size: 34.84px;
    line-height: 42px;
  }
  .we-Building{
    padding: 20px 0;
  }
  .we-Building p{
    font-size: 15px;
  }
  section.we-Building.about_page p {
      padding: 0px 0px 4px 0px;

  }
  .thm-btn{
    font-size: 15px;
    font-weight: 600;
    padding: 8px 15px;
    line-height: 20px;
    margin-left: 0px;
  }
  #hero .icon-box .icon img {
      width: 38px;
      height: 38px;
  }
  #hero .icon-box .slider1, #hero .icon-box .slider2{
    display: none;
  }
  #hero .icon-box .slider2{
    font-size: 20px !important;
    line-height: 24px;
    width: 100%;
     margin-left: 9px;
    margin-bottom: 7px;
  }
  .slider_1, .slider_2, .slider_3, .slider_4{
    background-image: url("../placeholder-img.html");
  }
  /*.slider_2{
    background-image: url("../../assets/img/slide/slider-webinar-mb.png");
  }
  .slider_3{
    background-image: url("../../assets/img/slide/slider-program-mb.png");
  }
  .slider_4{
    background-image: url("../../assets/img/slide/slider-story-mb.png");
  }*/
  .causes-one__single{
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    /*height: 349px;*/
    width: 254px;
  }
  .carousel-content.container {
      position: absolute;
      bottom: 3px;
      left: 2px;
      right: 0;
      overflow: hidden;
  }

  h2.slider_mobile{
    margin-left: 45px;
    margin-bottom: -1px;
    font-size: 20px !important;
    line-height: 24px;
    width: 83%;
    color: #fff;
    font-weight: 900;
    display: block !important;
  }
  h2.slider_mobile2{
    margin-left: 10px !important;
  }
  #hero .slider_3 .icon-box .description3 {
    margin-left: 8px;
    line-height: 21px;
    font-size: 12.32px;
    color: #EFEFEF;
    font-weight: 400;
    margin-bottom: 20px;
  }
  #hero .btn-get-started{
    font-size: 12.07px;
    padding: 5px 8px;
    line-height: 20px;
    bottom: 16px;
    right: -7px;
    position: relative;
  }
  #hero .icon-box .description {
    margin-left: 45px;
    line-height: 16px;
    font-size: 12.2px;
    color: #EFEFEF;
    font-weight: 400;
  }
  #hero button.owl-prev, #hero button.owl-next{
    display: none;
  }
  .gbf_one_text_main{
    margin-right: 0px !important;
    width: 100%;
    display: inline-block !important;
    border-bottom: 1px solid #E0E0E0;
  }
  .gbf_one_text_main:last-child{
   border-bottom:0px; 
  }
  #hero .carousel-container{
    width: 90%;
  }
  .gbf-one__text-2{
    padding-right: 0px !important;
    
  }
  .gbf_one_text{
    padding-top: 20px;
    float: left;
  }
  h2.digit_cls{
    font-size: 42.32px;
    float: right;
  }
  .gbf__btn-box{
    display: block !important;
  }
  .gbf-one{
    padding: 48px 0 35px !important;
  }
  .program_section_title{
    font-size: 24.89px !important;
    line-height: 32px !important;
  }


  .program_sub_title_phone{
    display: block !important;
    position: relative;
    margin: 0;
    right: 0;
    float: left;
    top: 25px;
  }
  .program_sub_title_phone a, .news_sub_title_phone a {
      color: #4F4F4F;
      text-decoration: underline;
  }
  .news_sub_title_phone{
    display: block !important;
    position: relative;
    margin: 0;
    right: 0;
    float: left;
    top: -3px;
  }
  .program_sub_title{
    display: none;
  }
  section.program{
    padding-top: 36px;
  }
  @media (max-width: 767px) {
  .prog-main-morebtn{
    text-align:center!important;
  }
  }
  .news_stories_sub_title{
    display: block !important;
    position: relative;
    right: 0px;
    margin: 0;
    top: -3px;
  }

  .news_stories_sub_title a{
    font-style:normal;
    font-weight: 700;
    color:#4F4F4F;
    text-decoration-line: underline;
  }


  .news_stories_sub_title .icofont-simple-right{
    color:#4F4F4F;
  }

  .news_stories-content{
    padding: 22px 0 !important;
  }
  .section-title h2{
    font-size: 24.32px !important;
    line-height: 28px !important;
  }
  .story_new .count-box img {
      width: 33%;
      float: left;
      height: 110px;
    border-radius: 4px;
  }
  .story_new h4 {
    font-size: 14.07px !important;
    line-height: 18px;
}
  .story_new p{
    display: block;
  }
  .story_new p.release_date {
      display: block !important;
  }
  .story_new a.readmore {
    display: none !important;
  }
  .story_new .col-lg-4.col-md-6.text-center {
      padding: 20px 15px;
      border: 1px solid #F4F4F4;
  }
  .story_new .col-lg-4.col-md-6.text-center:last-child{
    border: 0px;
  }
  /* .news_stories{
    padding-bottom: 58px !important;
  } */
  #footer .footer-gettouch p{
    font-size: 15px !important;
  }
  #footer .footer-top .footer-links.footr_program ul li a{
    line-height: 24px !important;
    font-size: 13px !important;
  }
  .program .owl-nav {
      display: block !important;
  }
  .owl-carousel .owl-nav button.owl-next{
    right: 0px;
    float: right;
    width: 35px;
    height: 35px;
    margin-right: 19.5px;
    margin-top: 13px;
  }
  .owl-nav button.owl-next img, .owl-carousel .owl-nav button.owl-prev img {
      width: 34px;
      height: 34px;
  }

  .owl-carousel .owl-nav button.owl-prev{
    width: 35px;
    height: 35px;
    margin-top: 13px;
    margin-left: 19.5px;
  }
  .mobile_menu ul.nav.nav-tabs.justify-content-center {
      display: block;
      white-space: nowrap;
      overflow-x: scroll;
  }
  .mobile_menu ul li {
      display: inline-block;
      margin: 6px 8px;
  }
  .mobile_menu ul li a {
      font-weight: 400;
      font-size: 13px;
      line-height: 16px;
      color: #fff;
  }
  .mobile_menu a:hover, .mobile_menu .active > a, .mobile_menu li:hover > a {
    color: var(--gray-500);
    text-decoration: none;
  }
  button.thm-btn.search_btn {
      background-color: #fff0;
      color: #fff;
      display: block !important;
  }
  .mobile_menu {
      padding-right: 0px;
      display: flex !important;
  }
  .search_btn{
    display:block;
    z-index: 9998;
    border: none;
    color: #4F4F4F;
  }
}
.program_sub_title_phone, .news_sub_title_phone{
  display: none;
}
h2.slider_mobile{
  display: none;
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (min-width: 768px) {
  #view-more-desktop {
    display: block !important;
  }
  #view-more-mobile {
    display: none !important;
  }
  
}

@media (max-width: 767px) {
  #view-more-desktop {
    display: none !important;
  }
  #view-more-mobile {
    padding-top:12px;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    font-size: 16.49px;
    color: #141414;
  }
}
/*--------------------------------------------------------------
# GBF Glance
--------------------------------------------------------------*/
.gbf-one .container{
  max-width: 1233px;
}
.gbf-one {
  position: relative;
  display: block;
  padding: 48px 0 60px;
  border:1px solid #E0E0E0;  
}
.gbf-one h2.section-title__title {
    font-size: 26.56px;
    line-height: 36px;
    font-weight: 900;
    color: var(--white);
}
.welcome-one__left {
  position: relative;
  display: block;
  margin-left: 80px;
  margin-right: 40px;
}
.gbf-one__right {
  position: relative;
  display: block;
  margin-left: 0px;
}
.gbf-one__right .section-title {
  margin-bottom: 0px;
}
.gbf-one__right .section-title__tagline:before {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.gbf-one__text-2 {
    margin: 0;
    padding-top: 5px;
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--white);
}
.gbf_one_text {
  font-size: 15px;
    line-height: 16px;
    margin-left: 0px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.1px;
    text-wrap: nowrap;
}
.gbf__btn-box {
  justify-content: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gbf_one_text_main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
  align-items: center;
  margin-left: 0px;
  flex-direction: column;
  margin-right: 80px;
}
.welcome-one__btn-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.welcome-one__video-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
     -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  flex-direction: column;
}

.welcome-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome-one__video-icon:hover {
  background-color: var(--pifoxen-primary);
}

.welcome-one__video-text {
  font-size: 29.32px;
    line-height: 40px;
    margin-left: 34px;
    color: #fff;
    font-weight: 900;
    text-align: left;
    letter-spacing: 1.1px;
}

.glance_metric {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-size: 47.61px;
  line-height: 56px;
  color: white;
}

@media (max-width: 768px) {
  .glance_metric {
      font-size: 42.32px;
      text-align: right;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 64px 0;
}

.section-bg {
  background-color: #f5f9fc;
}

.section-title {
  font-size: 47.61px;
  font-weight: 900;
  color: var(--gray-500);
}

.section-subtitle {
  font-weight: 900;
  font-size: 2rem;
}

.section-title h2 {
  font-size: 33.32px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #141414;
  line-height: 42px;
  text-align: left;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  body > section > .container {
      padding-left: 24px !important;
      padding-right: 24px !important;
  }
  section#about-us .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*--------------------------------------------------------------
# News & Stories
--------------------------------------------------------------*/
.news_stories {
  padding-bottom: 28px;
  border-top: 1px solid #E0E0E0;
}

.container.news_stories {
  max-width: 1229px;
  margin-top: 40px;
}

.news_stories .section-title p {
  color: #8C8C8C;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
}

.news_stories-content {
  padding: 27px 33px;
}
.news_stories .video-box {
  position: relative;
}
p.news_read_more {
    padding-top: 21px;
}
.news_read_more a {
    background-color: #09485D;
    padding: 8px 16px;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
}
.row.story_new {
    margin-top: 48px;
}
#news_storie .story_hero_bg {
  background: #f0f0f0;
}
.story_new h4 {
    font-size: 20.49px;
    font-weight: 700;
    line-height: 24px;
    padding-bottom: 10px;
    text-align: left;
    color: #141414;
}
.story_new p {
    color: #8C8C8C;
    font-size: 18px;
    text-align: left;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 7px
}
p.release_date{
  display: none;
  color: #8C8C8C;
  font-size: 12.2px;
  text-align: left;
  line-height: 16px;
  font-weight: 400; 
}
.news_stories_list {
  flex-direction: column;
}
.news_stories_list .img-container{
  padding: 0;
}
.img-container {
  text-align: left;
}

.news_stories .count-box img{
  width: 300px;
  height: 300px;
  border-radius: 20px;
}
.news_stories .count-box .news-content{
  max-height: 300px;
  display: flex;
  flex-direction: column;
}
.news_stories .news-content .text{ 
  max-height: 80%;
  overflow: hidden;
}
.news_stories .news-content .text p{ 
  color: var(--gray-200);
}
.news_stories .news-content .text .release_date{ 
  display: none;
}
.news_stories .count-box .news-content .readmore{ 
  text-align: left;
  font-weight: bold;
  display: block;
  margin-top: auto;
  margin-bottom: 1rem;
}

.news_stories .feed_story_title a, .news_stories .new-class a {
  color: var(--white) ;
}

.news_stories .news_sub_title {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  margin-top: 3rem;
}


@media (min-width: 768px) and (max-width: 1199px) {
  .news_stories_list .news-container .article-card{
    margin: 0px;
  }
}
@media (min-width: 768px) {
  .news_stories_list .news-container .article-card{
    width: 100% !important;
  }
  .news_stories_list .img-container img{
    border-radius: 5px;
    aspect-ratio: 16/9;
    margin-left: -8px;
  }
}
@media (max-width: 767px) {
  .story_hero_bg {
    padding: 0;
  }
  .news_stories .news-content .text{ 
    max-height: unset;
    overflow: unset;
  }
}
@media (max-width: 991px) {
  .news_stories .image-box, .news_stories .news-content{
    width: 50%;
    padding: 0.5rem;
  }
  .news_stories .count-box img {
    width: 100%;
    height: 100%;
  }
  
}
/*--------------------------------------------------------------
# Trainings and Events
--------------------------------------------------------------*/
.training-items img {
  width: 300px;
  height: 300px;
  margin: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  transition: transform .2s;
}

/* .training-items img:hover { 
  transform: scale(1.05);
} */

.training-items .overlay {
  display: flex;
  position: absolute;
  top: 0;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  transition: .3s ease;
  opacity: 0;
}

.training-items .img-wrapper:hover > .overlay {
  opacity: 1;
}

.training-items .overlay .img-caption{
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  padding: 18px;
  text-align: center;
}

#trainings-swiper .swiper-slide img {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  margin: auto;
  display: block;
}



/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.news_stories-lists {
  padding: 40px;
}

.news_stories-lists .row {
  overflow: hidden;
}

.news_stories-lists .content-item {
  padding: 40px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
}

.news_stories-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--blue-300);
}

.news_stories-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 10px 0;
}

.news_stories-lists .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.gbf-team-image{
  margin-bottom: 14px;
}

.ourteam-image {
  min-height: 380px;
  max-height: 436px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

img.our-founders{
  min-height: 428px;
  max-height: 436px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .news_stories-lists .content-item {
    padding: 40px 0;
  }
}

@media (max-width: 575px) { /*mobile portrait*/
  .about-us-image{
    margin-left: -23.5px;
    width: 100vw;
  }
  .founding-brothers-image{
    margin-left: -23.5px;
    width: 100vw;
  }
  .our-impact-image{
    width: 100vw;
    margin-left: -23.5px;
  }

  .celebrating-image{
    width: 100vw;
    margin-left: -8.5px;
  }

  .ourteam-image{
    /* margin-left: -24px!important;
    width: 100vw;
    max-width: unset; */
  }
  .gbf-team-image{
    padding-bottom:37px;
    width:110%;
    margin-left:-16px;
  }
  .cel_subhead.about_us_container{
    padding-top: 63.94px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) { /*mobile landscape*/
  .ourteam-image{
    /* padding-bottom: 12px;
    margin-left: -39.5px!important;
    width: 100vw;
    max-width: unset;  */
  }
  .gbf-team-image{
    padding-bottom:37px;
    width:110%;
    margin-left:-52px;
  }
  .about-us-image{
    width: 110%;
    margin-left: -25px;
    padding-bottom:16px;
  }
  .founding-brothers-image{
    width: 132%;
    margin-left: -115px;
    padding-bottom:16px;
  }
  .our-impact-image{
    padding-top: 40px;
    width: 110%;
    margin: -30px;
  }
  .celebrating-image{
    width: 125%;
  }
  .apply-now-image{
    width:110%!important;
    margin-left:-42px;
  }
}
@media(min-width:1012px){ /*desktop*/
  .founding-container{
    max-width:1000px!important;
  }
  .gbf-team-image{
    width:100%;
  }
  .partners-section{
    width:1000px;
  }
}
/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/
section.program {
  padding-bottom: 53.64px;
  padding-top: 30px;
}
section.program .container{
  max-width: 1232px
}
.program_section_title {
    margin: 0;
    font-size: 47.61px; 
    font-weight: 900;
    color: var(--gray-500);
    text-align: center;
}
.program-title.text-left {
    padding-bottom: 20px;
    width: 100%;
}
.program_sub_title{
  position: relative;
  right: 0px;
  margin: 0;
  float: right;
  top: -33px;
}

.program_sub_title a {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #4F4F4F;
    text-decoration-line: underline;
}
.program .count-box {
  padding: 12px;
  background: #fff;
  margin-bottom: 0px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  max-height: 550px;
  text-align:left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program .count-box .category-box {
 line-height: 1.1rem;
 height: 2.2rem;
 white-space: nowrap;
 overflow-x: auto;
 overflow-y: hidden;
}
#scholar_care .img-container {
  width: 290px;
  height: 164px;
}
#technical_training .img-container img{
  width: 100%;
}
.technical-other-prog .col-xl-4{
  flex: 0 0 25%!important;
}

section.program_offer .technical-img{
  padding-right: 10px;
  height: 100%;
}

.programs_image{
  /* position: absolute;
  width: auto;
  max-height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);  */
  object-fit: cover;
  aspect-ratio: 16/9;
}

.program .count-box span.category {
    border: 1px solid #E0E0E0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12.2px;
    display: inline-block;
    line-height: 16px;
    color: #8C8C8C;
    font-weight: 700;
    margin-bottom: 10px;
    margin-right: 5px;    
    width: fit-content;
}
.program .count-box span.category:last-child {
  margin-right: 0px;
}
.count-box img{
  width: 100%;
}
.program .count-box i {
  font-size: 18px;
  margin-bottom: 0px;
  padding-right: 6px
}

.program .count-box a:hover > .search-result-content h4 {
  color: var(--green);
}

.program .count-box h4 {
  font-size: 26.56px;
  display: block;
  font-weight: 700;
  color: #141414;
  text-align: left;
  padding-top: 10px;
}
.program .count-box p {
  padding: 0;
  margin: 0;
  font-size: 12.2px;
  text-align: left;
  font-weight: 400;
  line-height: 16px;
  color: #8C8C8C;
  padding: 4px 0px;
}

section.search-cards .count-box p {
  padding: 0;
  margin: 0;
  text-align: left;
  font-weight: 400;
  line-height: 24px;
  color: #8C8C8C;
  padding: 4px 0px;
}

section.search-cards p.release_date {
  color: #8C8C8C;
  font-size: 12.2px;
  text-align: left;
  line-height: 16px;
  font-weight: 400;
  float: left;
  width: 66%;
  display: block;
}

.program .count-box p.btn-read-more{
  width: 100%;
  background-color: #09485D;
  text-align: center;
  padding: 8px 0px;
  color: rgb(255, 255, 255);
  border-radius: 4px;
  margin-top: 6px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}

.program .count-box p.btn-read-more a{
  color: #fff;
}

.program .owl-nav {
    display: none;
}

.program-items a {
  width: 300px;
  display: block;
}

.program-items img {
  width: 300px;
  height: 300px;
  display: block;
  object-fit: cover;
}

.img-wrapper{
  position: relative;
}

.program-items .img-wrapper .img-caption{
  position: absolute;
  bottom: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(0deg, black -15%, transparent);
  padding-top: 80px;
  padding-bottom: 20px;
}

.program-items .img-wrapper .img-caption.pb{
  padding-bottom: 35px;
}

#program-swiper .swiper-slide img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .program-title.text-left {
    padding-bottom: 0;
  }
  /* .programs_btn_presentation{
    margin:.10px 9px;
  } */
  .program .count-box .program-content-box {
    height: unset;
  }
  .program .count-box.program-card {
    display: flex;
    flex-direction: column;
  }
  .program .count-box.program-card img {
    aspect-ratio: 16/9;
    width: 100%;
    height: unset;
  }
  .program .count-box.program-card h4 {
    font-size: 26.56px;
    line-height: 28px;
    padding: 0;
    width: 100%;
  }
  .program .count-box.article-card {
    background: none;
    border: none;
  }
  .program .count-box.article-card p.release_date {
    padding-left: 12px;
  }
  section.program_offer .technical-img{
    padding-right: 0px;
  }
  
}

#footer {
  background: linear-gradient(var(--gradient)) !important;
  padding: 40px 0px;
  color: #fff;
  font-size: 12.2px;
  line-height: 16px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

#footer .footer-info img {
  width: 183px;
}

#footer .container {
    max-width: 1232px;
}
#footer .footer-bg-img {
  background: url(../png/wave.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 359px;
  width: 1000px;
  position: absolute;
  right: -200px;
  bottom: -120px;
  transform: rotate(3.2deg);
  opacity: 0.3;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 15px;
  display: initial;
  color: #fff;
  line-height: 22px;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  font-weight: 400;
  text-decoration-line: underline;
}
#footer .footer-top .social-links img{
    padding: 0px 0px;
    margin-right: 12px;
}
/*#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}*/

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-200);
  position: relative;
  padding-bottom: 0px;
  line-height: 20px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links.footr_program ul li a {
    color: #fff;
    font-weight: 400;
    line-height: 20px;
}
#footer .footer-top .footer-links.footr_program ul li a:hover {
  color: var(--blue-300);
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
#footer .footer-gettouch p{
  color: #fff;
    font-size: 12px;
    line-height: 21.5px;
    font-weight: 400;
}
#footer .footer-gettouch p a {
    color: #fff;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--blue-300);
}
#footer .copyright {
  text-align: left;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: var(--blue-300);
}
.cookies_div {
    position: fixed;
    right: 72px;
    bottom: 72px;
    width: 230px;
    filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.05));
    z-index: 9999999;
    background-color: #22B742;
    color: #fff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 19px;
}
.cookies_div p{
  font-weight: 400;
  font-size: 12px;
  line-height: 14.52px;
  letter-spacing: 0.15px;
  color: #fff;
}
.cookies_div .cookies_button {
    padding: 8px 16px;
    background: #09485D;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 12px;
    width: 100%;
    border: none;
    font-size: 12px;
    font-weight: 600;
}
.cookies_div .cookies_consent{
  color:#0874bd;
  text-decoration: underline;
}
#scholar_care_details .gbf__btn-box{
  justify-content:start;
  flex-grow: 1;
}
#scholar_care_details .gbf__btn-box {
  margin: 10px 0;
}
#scholar_care_details .gbf_one_text_main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid #00000030;
  margin-right: 0px;
  padding: 0 20px;
}
#scholar_care_details .gbf_one_text_main .gbf_one_text {
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: var(--gray-400);
}
#scholar_care_details .gbf_one_text_main:last-child {
  border: none;
}
@media (min-width: 769px) {
  #scholar_care_details .gbf_one_text_main:first-child {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  #scholar_care_details .gbf_one_text_main {
    flex-direction: row;
    flex-grow: unset;
    align-items: center;
    justify-content: flex-start;
    border-right: none;
    margin-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }
  #scholar_care_details .gbf_one_text_main .gbf_one_text {
    font-size: 1.2rem;
  }
  #scholar_care_details .gbf_one_text_main h2 {
    text-align: right;
  }
  #scholar_care_details .gbf_one_text_main:last-child .gbf_one_text {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
  }

  #kasama_community .gbf_one_text_main:last-child .gbf_one_text {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
  }
  
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
#about_us {
  width: 100%;
  padding: 0;
  overflow: hidden;
  padding-bottom: 64px;
}

.aboutUs_extension{
  padding: 35px 0px;
}
.nav-tabs {
    border-bottom: unset;
}
.about_page .nav-tabs li a {
    text-align: center;
    font-size: 19.21px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 20px;
    border: 1px solid #B6B6B6;
    border-radius: 10px;
    opacity: 0.3;
    color: #000000;
    min-width: 180px;
    display: block;
    margin: 5px 16px 5px 0;  
}
@media (min-width: 769px) {
  .nav-tabs li a {
      overflow: hidden;
      text-overflow: ellipsis;
  }
}
.found_inner .nav li a.tab-items {
  max-width: 12rem;
  text-align: left;
}
.about_us_container .nav li a.tab-items {
  max-width: 12rem;
  text-align: left;
}
.about_page .nav-tabs li a:hover, .about_page .nav-tabs li a.active, .found_inner .nav li a:hover, .found_inner .nav li a.active, .about_us_container .nav li a:hover, .about_us_container .nav li a.active {
  background-color: #22B742;
  color: #fff;
  opacity: 1;
}
#about_us .container.found_inner {
    max-width: 845px;
    padding-top: 50px
}
.found_inner .nav li a, .about_us_container .nav li a {
    border: 1px solid #B6B6B6;
    padding: 8px 16px;
    float: left;
    border-radius: 1000px;
    margin: 5px 16px 16px 0px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    color: #141414;
    opacity: 0.3;
    cursor: pointer;
}
.gbf-glance {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 32px;
    font-size: 17.5px;
    line-height: 24px;
    font-weight: 400;
    color: #8C8C8C;
    text-align: left;
}
#subhead_1 p.gbf-glance{
  padding-right: 12px;
}
#subhead_2 p.gbf-glance{
  padding-right: 15px;
}
.tab-content .gbf-one__right h2 {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    color: var(--gray-500);
}
.ttc-metrics .gbf-one__right h2 {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    color: var(--gray-500);
}
#the_foundation h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    padding-bottom: 10px
}
.gbf-glance span{
  color: #141414;
}
ul.tabpan_ul li, ul.tab_inner_ul li {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
    color: #8C8C8C;
    font-weight: 400;
}
ul.tabpan_ul{
    margin-left: -15px;
    padding-bottom: 32px;
}
#ourteam img.img-responsive, #foundingfather img.img-responsive {
    width: 100%;
}
#ourteam .container, #foundingfather .container{
    max-width: 1012px;
}
#ourteam .team_content, #foundingfather .team_content{
  padding-right: 57px !important;
}
section.we-Building.about_page {
    padding-bottom: 84px;
}
#ourteam h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #8C8C8C;
    padding-bottom: 0px;
}
.team_row{
  padding-top: 20px;
}
.gbf_team h3 {
    font-size: 26.56px;
    line-height: 36px;
    font-weight: 700;
    color: #141414;
    padding-top: 10px;
}
#celebrating .container {
    max-width: 1233px;
    padding-top: 0px;
}
#celebrating .container.cel_subhead {
    max-width: 761px;
    padding-top: 78px;
}
.nav-main-tab {
  flex-wrap: nowrap !important;
  overflow-x: auto;
}
.nav-main-tab > li {
  white-space: nowrap;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-right: 16px;
}
.nav-main-tab > li:last-child {
  margin-right: 0px;
}
#about_us .row div.col-xl-3 {
  padding: 0;
}
.about_us_container {
  max-width: 1060px;
}
.cel_subhead.about_us_container {
  padding-top: 113px;
}
@media (min-width: 768px) {
  .scholarship-profile{
    padding-top: 70px;
  }
}
@media (max-width: 1200px) {
  .nav-tabs {
    flex-wrap: wrap;
  }
  .text-center ~ ul.nav-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 55px;
    overflow-x: auto;
    overflow-y: visible;
    padding-top:10px;
  }
  .program_main .text-center ~ ul.nav-tabs {
    height:unset!important;
  }
  .found_inner ul.nav.nav-tabs.flex-column{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .found_inner .nav li a.tab-items, .about_us_container .nav li a.tab-items{
    margin: 5px 16px 5px 0px;
  }
  #about_us .row div.col-xl-9 {
    padding: 0;
  }
  .scholarship-profile > img{
    width: 100%;
  }
}
@media (max-width: 767px) {
  section.we-Building.about_page ul.nav.nav-tabs.justify-content-center{
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    height: 44px;
  }
  .about_page .nav-tabs li a{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    padding: 8px 16px;
  }

  section.we-Building.about_page {
      padding-bottom: 0px;
  }
  #ourfoundation img {
      width: 100%;
  }
  .found_inner .nav li{
    display: inline-block;
  }
  #about_us .tab-content {
      padding-top: 20px;
  }
  .found_inner .nav li a, .about_us_container .nav li a{
    margin: 5px 16px 5px 0px;
  }
  #the_foundation h4, #ourteam h4{
    display: block;
  }
  .gbf-glance{font-size: 16px;line-height: 20px;}
  #about_us .container.found_inner{
    padding-right: 15px;
    padding-left: 15px;
  }
  .tab-content .gbf-one__right h2{
    font-size: 20.74px;
    line-height: 24px;
  }
  ul.tabpan_ul li, ul.tab_inner_ul li{
    font-size: 16px;
    line-height: 20px;
  }
  #about_us .container {
      padding-right: 0px;
      padding-left: 0px;
  }
  #ourteam .gbf-one__right, #foundingfather .gbf-one__right{
      padding-right: 15px;
      padding-left: 15px;
  }
  #ourteam .gbf-one__right h2, #foundingfather .gbf-one__right h2{
      padding-top: 16px;
  }
  #ourteam .team_content, #foundingfather .team_content {
      padding-right: 0px !important;
  }
  .gbf_team h3{
    padding-left: 22px;
    padding-right: 22px;
    font-size: 20.74px;
    line-height: 24px;
  }
  .gbf_team p {
      padding-left: 16px;
      padding-right: 16px;
      font-size: 18px;
      line-height: 24px;
  }
  #ourimpact img.rounded {
      width: 100%;
  }
  #celebrating button.owl-prev, #celebrating button.owl-next{
    display: none;
  }
  .cel_subhead .gbf-one__right {
      padding-right: 15px;
      padding-left: 15px;
  }
  .cel_subhead .gbf-one__right img{
    width: 100%;
  }
  .scholarship-profile{
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* -----------------------------------------
GBF Technical Training Center
-------------------------------------------- */
section#technical_training {
    padding: 0px;
}
.we-Building h3 {
      font-size: 18px;
      line-height: 28px;
      font-weight: 700;
      color: black;
  }
  .we-Building button {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #b3b3b3;
    background-color: transparent;
    border-color: transparent;
    padding: 0px 0px 8px 0px;
    margin: 0px 2px 0px 2px;
}
  .btn-tech:hover{
    background-color: white;
    text-decoration: none;
    outline: 0 !important;
  }
  .btn-tech:focus .btn-tech:active{
    color: black;
    outline: 0 !important;
    text-decoration: underline;
  }

  .we-Building h3 span {
    text-decoration: underline;
    color: #000;
  }
  #technical_training .container {
      max-width: 1184px;
  }
  /*#technical_training .causes-one__single{
    height: 540px;
  }*/
  #technical_training p {
      color: #B6B6B6;
  }
  #technical_training button.owl-prev{
    left: -7%;
  }
  #technical_training button.owl-next{
    display: none !important;
  }
  #technical_training button.owl-prev, #technical_training button.owl-next {
      position: absolute;
      top: -30%;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .home_feture p.gbf-one__text-2 {
      font-size: 16.87px;
      line-height: 20px;
      padding-right: 0px
  }
  section.gbf-one.home_feture{
    padding: 20px 0 0px;
    border: none;
  }
  .contact_box span {
      font-weight: 700;
      font-size: 19.21px;
      line-height: 24px;
      color: #141414;
  }
  .contact_box span i {
      font-size: 32px;
  }
  .contact_box p.gbf-one__text-2{
    font-size: 18px;
    line-height: 24px;
  }
 .program_offer .count-box {
    padding: 0px;
    background: #fff;
    margin-bottom: 0px;
    border: 0px solid #E0E0E0;
    border-radius: 0px;
  }
  .program_offer .count-box h4{
    font-weight: 900;
    font-size: 26.56px;
    line-height: 36px;
    color: #141414;
    padding-top: 20px;
  }
  p.offer_disc{
    font-size: 16.87px !important;
    line-height: 20px !important;
    color: #8C8C8C;
  }
  .program_offer .count-box p.btn-learn-more {
      width: 126px;
      background-color: #09485D;
      text-align: center;
      padding: 8px 0px;
      color: #fff;
      border-radius: 4px;
      margin-top: 6px;
  }
  .program_offer .count-box p.btn-learn-more  a {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    padding: 7px 20px;
  }
  .program .count-box p span{
    font-weight: 700;
  }
  .other-prog .count-box p.btn-read-more{
    margin-top: 21px;
  }
  .other-prog .count-box span.category{
    margin-bottom: 0px;
    margin-top: 6px;
    margin-right: 10px;
  }
  .other-prog .count-box{
    padding: 12px
  }
  section.program.other-prog{
    padding-bottom: 150px;
    padding-top: 0px;
  }
  
  @media (max-width: 767px) {
    #technical_training .container{
      padding: 0px 15px 0px 15px;
    }
    #technical_training .col-xl-12 {
        padding-right: 0px;
        padding-left: 0px;
    }
    #technical_training .owl-dots {
        position: absolute;
        right: 0;
        bottom: 43%;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: -2rem;
        margin-left: 15%;
        list-style: none;
    }
    #technical_training .owl-carousel button.owl-dot {
          background: #C4C4C4;
          border: none;
          padding: 0!important;
          font: inherit;
          width: 6px;
          height: 6px;
          border-radius: 50px;
          margin-right: 4px;
          margin-left: 4px;
          flex: 0 1 auto;
          opacity: 0.5;
      }
      #technical_training .owl-carousel button.owl-dot.active {
          opacity: 1;
      }
      p.gbf-one__text-2.home_phon span {
          font-size: 17.07px;
          font-weight: 600;
          line-height: 24px;
      }
      /* .contact_box {
          padding-left: 13px;
      } */
      section.gbf-one.home_feture{
        padding-bottom: 0px !important;
      }
      .program_offer .count-box p.btn-learn-more{
        width: 100%;
        margin-bottom: 25px;
      }

      #technical-training-button-2{
        margin-bottom: 0px !important;
      }

      #technical_training .owl-nav {
          display: none;
      }
      .en_ph h3 {
          display: none;
      }
  }
  /* Media Query for cookies */
  @media (max-width: 468px) {
    .cookies_div{
      right: 8%;
    }
  }
  .tech-soc-icons{
    text-align:center;
  }
/* -----------------------------------------
Parner Section
-------------------------------------------- */
 #partner_spacing {
  padding-bottom: 70px;
 }
 #border_partner .container
 {
      border-top: 2px solid #E0E0E0;
      max-width: 1236px;
 } 
 section#border_partner {
      padding: 0px;
 }
 #partner_page .container {
      max-width: 840px;
  }

  @media (min-width: 769px) {
  .partners_page .container ul.nav{
      justify-content:center;
  }
  }
  .partner_p p {
      text-align: left;
      font-weight: 400;
      font-size: 18px;
      line-height: 24px;
      color: var(--gray-400);
  }
  .partner_p a:hover > p {
      color: var(--green);
  }
  .partner_p h3 {
      text-align: left;
      font-size: 23.33px;
      font-weight: 700;
      line-height: 28px;
      color: #141414;
      padding-top: 50px;
  }
  .industy_cont{
    align-items: center;
    text-align: left;
    padding-bottom: 16px;
  }
  .industy_cont img {
    max-width: 46px;
  }
  .industy_cont a{
    font-weight: 400;
    font-size: 19.21px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #141414;
  }
  .featur_div, .parner_titl{
    display: none;
  }
@media (max-width: 767px) {
  section#border_partner {
    padding: 0px;
    margin-top: 30px;
  }
  .featur_div {
      display: block !important;
      padding-left: 15px;
      padding-right: 15px;
      padding-top: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid #E0E0E0;
      margin-bottom: 25px;
  }
  .featur_div h5 {
      font-size: 17.07px;
      line-height: 24px;
      font-weight: 600;
      color: #8C8C8C;
      text-align: left;
  }
  .featur_div h3 {
      font-weight: 700;
      font-size: 20.74px;
      line-height: 24px;
      padding-top: 0px;
  }
  .featur_div p {
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
  }
  section#partner_page {
      padding-top: 0px;
  }
  .partner_p p{
    font-size: 16px;
    line-height: 20px;
  }
  h3.parner_titl{
    display: block !important;
    font-weight: 700;
    font-size: 23.33px;
    line-height: 28px;
    color: #141414;
    text-align: left;
    padding-top: 0px;
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .industy_cont .col-xl-2 {
      width: 19%;
  }
  .industy_cont .col-xl-10{
      width: 79%;
  }
  .industy_cont a{
    font-size: 16px;
    line-height: 20px;
  }
}
/* -----------------------------------------
Scholar Care Page
-------------------------------------------- */
section.we-scholar.about_page .container {
    max-width: 1060px;
}
#scholar_care .container {
    max-width: 1227px;
}
.we-scholar p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #8C8C8C;
    padding: 24px 28px 50px 28px;
}
section.we-scholar.about_page {
    padding-bottom: 15px;
}
#all_items .col-xl-4, #events .col-xl-4, #trainings .col-xl-4{
    margin-bottom: 40px;
}
#interested_any .container{
  max-width: 966px;
}
section#interested_any {
    border: 1px solid #E0E0E0;
    margin-bottom: 150px;
}
.interested_row{
  align-items: center;
}
a.contct_now{
  padding: 16px 90px;
  background: #22B742;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17.07px;
  line-height: 24px;
  color: #FFFFFF;
}
.interested_row h3 {
    font-size: 26.56px;
    font-weight: 900;
    line-height: 36px;
    color: #141414;
    padding-left: 40px;
}
.interested_row p {
    padding-right: 85px;
    padding-left: 40px;
}
@media (max-width: 767px) {
  #scholar_care h4.more_event_single{
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .we-scholar p{
    font-size: 15px;
    line-height: 16px;
    padding: 23px 8px 40px 8px;
  }
  .we-scholar h1.section-title__title{
    font-size: 29.68px;
    line-height: 35px;
  }
  #all_items h4 {
   font-size: 17.7px;
   font-weight: 600;
  }
  #scholar_care_details .gbf__btn-box{
    justify-content:start;
    flex-grow: 1;
  }
  .program .count-box p.items_disc {
      font-size: 15px;
      padding-right: 20px;
  }
  .interested_row p {
      padding-right: 45px;
      padding-left: 15px;
      font-size: 15px;
  }
  .interested_row h3{
    padding-left: 15px;
  }
  a.contct_now {
      padding: 8px 16px;
      background: #22B742;
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
      line-height: 20px;
      color: #FFFFFF;
      width: 100%;
      float: left;
      text-align: center;
      margin-top: 20px;
  }
  section#interested_any{
    margin-bottom: 103px;
  }
}
/* -----------------------------------------
Scholar Care Details Page
-------------------------------------------- */
#scholar_care_details .container {
    max-width: 1228px;
}
section#scholar_care_details {
    padding-top: 90px;
    padding-bottom: 0px;
}
#scholar_care_details h3{
  font-size: 47.61px;
  line-height: 56px;
  font-weight: 900;
  color: #141414;
}
#scholar_care_details p{
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
}
#scholar_care_details h4 {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    padding-top: 40px;
}
#scholar_care_details ul {
    list-style-type: decimal;
}
#scholar_care_details ul li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.event_subcrib {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 24px;
}
#scholar_care_details .event_subcrib h4 {
    font-weight: 700;
    font-size: 27.68px;
    line-height: 36px;
    padding-top: 0px;
}
#scholar_care_details .event_subcrib p {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #141414;
    padding-right: 107px;
    display: flex;
}
.event_subcrib i.icofont-calendar {
    font-size: 43px;
    padding-right: 10px;
}
.event_subcrib input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    margin: 8px 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #828282;
}
button.sub_submit {
  background: #09485D;
  border-radius: 4px;
  padding: 8px 16px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}
button.submit-teach{
  background: #09485D;
  border-radius: 4px;
  padding: 16px 24px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  border: none;
}

#scholar_care_details img {
    width: 100%;
}
button.sub_submit i {
    padding-right: 8px;
}
.program .count-box p.event_items_disc{
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.event_calicon i.icofont-calendar {
    font-size: 14px;
}
h4.more_event_single {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    padding-bottom: 15px;
    margin-left: 218px !important;
}
h4.article_details_more_event_single {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    padding-bottom: 15px;
    margin-left: 0px !important;
}
h4.more_event_single_noleft {
  font-weight: 700;
  font-size: 26.56px;
  line-height: 36px;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  #scholar_care_details h3 {
      font-size: 32.19px;
      line-height: 37.5px;
      font-weight: 900;
  }
  #scholar_care_details p {
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
  }
  #scholar_care_details h4 {
      font-weight: 700;
      font-size: 20.74px;
      line-height: 24px;
      padding-top: 40px;
  }
  #scholar_care_details ul li {
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
      /* padding-right: 23px; */
  }
  .event_subcrib{
    display: block;
  }
  h4.more_event_single{
    font-size: 20.74px;
    line-height: 20px;
    margin-left: 0px;
  }
  h4.more_event_single_noleft {
    font-size: 20.74px;
    line-height: 20px;
    margin-left: 0px;
  }
  /* .scholar_care__carousel .owl-nav {
      display: none !important;
  } */
  .program .scholar_care__carousel .count-box {
      margin-left: 15px;
  }
  section#scholar_care_details {
      padding-top: 70px;
  }
}

/* -----------------------------------------
KaSaMa Community Page
-------------------------------------------- */
#kasama_community .container {
    max-width: 1228px;
}
section#kasama_community {
    padding-top: 70px;
    padding-bottom: 0px;
}
#kasama_community h3{
  font-size: 47.61px;
  line-height: 56px;
  font-weight: 900;
  color: #141414;
}
#kasama_community p{
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
}
#kasama_community .gbf_one_text i {
    padding-right: 9px;
    font-size: 28px;
}
#kasama_community .gbf_one_text_main {
    border-right: 1px solid #E0E0E0;
    padding: 0 15px;
    margin-right: 0px;
}
#kasama_community .gbf_one_text_main:last-child{
   border-right:0px; 
}
#kasama_community .gbf_one_text_main:first-child{
    padding-left: 0px;
}
#kasama_community p.gbf_one_text {
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
}
#kasama_community h2.digit_cls {
    font-weight: 900;
    font-size: 33.68px;
    line-height: 41px;
}
.social_commity img {
    margin: 0 3px;
}
.social_commity{
  padding-right:0px!important;
  min-width: 150px;
}
.img_full{
  width: 100%;
}
.kasama_tab .gbf-one__right h2 {
    font-size: 26.56px;
    line-height: 36px;
    font-weight: 700;
}
#kasama_community p.milestone {
    font-weight: 500;
    font-size: 24.89px;
    line-height: 32px;
    margin-bottom: 0px;
}
#kasama_community p.milestone span{
  color: #141414;
}
#kasama_community h3.feare_h3 {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    padding: 35px 0px;
}
#kasama_community p.kasam_disc {
    font-size: 18px;
}
#kasama_community p.kasam_disc span {
    color: #000000;
}
select.select_box {
      border: 1px solid #E0E0E0;
      border-radius: 4px;
      padding: 10px 14px;
      width: 100%;
}
@media (max-width: 767px) {
  #kasama_community .gbf_one_text_main:first-child{
    padding-left: 15px;
  }
  #kasama_community h3 {
    font-size: 32.19px;
    line-height: 37px;
    padding-right: 22px;
  }
  #kasama_community p {
      font-size: 16px;
      line-height: 20px;
  }
  #kasama_community h2.digit_cls {
      font-weight: 900;
      font-size: 33.68px !important;
      line-height: 40.76px;
      padding-top: 20px;
  }
  #kasama_community .gbf_one_text_main{
    border-right: none;
  }
  p.gbf_one_text.social_commity {
      display: block !important;
  }
  section.we-applient .gbf_one_text{
    float:none
  }
  .kasama_tab .gbf-one__right h2 {
      font-size: 20.74px;
      line-height: 24px;
      font-weight: 700;
      /* border-top: 1px solid #E0E0E0; */
      margin-top: 15px;
      padding-top: 15px;
  }
  #kasama_community p.milestone {
      font-weight: 500;
      font-size: 16.89px;
      line-height: 20px;
      margin-bottom: 0px;
  }
  #kasama_community h3.feare_h3 {
      font-weight: 700;
      font-size: 22.56px;
      line-height: 26px;
      padding: 24px 0px;
  }
  div#partners, div#services {
      padding-top: 20px;
  }
  .services_new h4 {
      font-weight: 700;
      font-size: 19.44px !important;
      line-height: 24px !important;
  }
  #kasama_community .services_new p {
      font-weight: 400;
      font-size: 16px !important;
      line-height: 20px !important;
      padding-right: 8px;
  }
  #kasama_community .services_new ul li{
    font-size: 16px !important
  }
  ul.apply_ul {
    font-weight: 400;
    font-size: 16px !important;
    line-height: 20px !important;
    padding-top: 20px !important;
  }
  #kasama_community p.apply_p{
    display: none;
  }
}
.gbf__btn-box.juan_grad {
    padding: 14px 0px 25px;
}
p.partnes_p{
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #141414;
  margin-bottom: 1px
}
.service_tab {
    padding-top: 50px;
}
.services_new h4 {
    font-weight: 700;
    font-size: 24.89px;
    line-height: 32px;
    text-align: left;
    color: #141414;
}
#kasama_community .services_new p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    color: #141414;
    padding-right: 8px;
}
#kasama_community .services_new ul li {
    text-align: left;
    color: #141414;
    font-size: 18px;
}
#kasama_community .resiallin_disc h3 {
    font-weight: 700;
    font-size: 26.56px;
    line-height: 36px;
    color: #141414;
}
.resiallin_disc {
    border-top: 1px solid #E0E0E0;
    padding: 50px 0px;
    margin-top: 30px;
    border-bottom: 1px solid #E0E0E0;
}
#kasama_community .resiallin_disc p {
    font-size: 17px;
}
#kasama_community p.apply_p {
    font-weight: 400;
    font-size: 13.17px;
    line-height: 20px;
    padding-top: 10px;
}
ul.apply_ul {
    list-style-type: decimal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-left: -20px;
}
/* -----------------------------------------
Program Page
-------------------------------------------- */
.program_main .container {
    max-width: 1200px;
}
.program_main .nav-tabs li {
  padding-bottom: 16px;
  margin: 5px 10px;
}
.program_main .nav-tabs li a:hover, .program_main .nav-tabs li a.active{
  background-color: #22B742;
  color: #fff;
  opacity: 1;
}
.program_main h1.section-title__title {
    margin-bottom: 30px;
}
.program_main .nav-tabs li a {
    font-size: 19.21px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 20px;
    border-radius: 1000px;
    opacity: 0.3;
    border: 1px solid #B6B6B6;
    border-radius: 1000px;
    color: #000000;
    white-space: nowrap;
}

#scholsip_progrm {
    max-width: 820px;
}
#scholsip_progrm p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
#scholsip_progrm .gbf_one_text_main:first-child {
    padding-left: 0px;
}
#scholsip_progrm .gbf_one_text_main {
    border-right: 1px solid #E0E0E0;
    padding: 0 15px;
    margin-right: 0px;
}
#scholsip_progrm p.gbf_one_text {
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
}
#scholsip_progrm .gbf_one_text i {
    padding-right: 9px;
    font-size: 28px;
}
#scholsip_progrm h2.digit_cls {
    font-weight: 900;
    font-size: 33.68px;
    line-height: 41px;
}
#scholsip_progrm .gbf_one_text_main:last-child {
    border-right: 0px;
}
#scholsip_inertab{
  max-width: 1230px;
}
.progam_hr{
  border: 1px solid #E0E0E0;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.communties_inn p{
  text-align: left;
}
a.more_gram_evnt {
    background-color: #09485D;
    border-radius: 4px;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    margin-top: 36px;
}
.iner_hr{
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-top: 1px solid #E0E0E0;
}
.in_the_new {
  padding-top: 20px;
}
.in_the_new .count-box.article-card img{
  width: 100%;
  height: 100%;
}
.in_the_new p {
  text-align: left;
  margin-bottom: 0;
}
.in_the_new h4 {
    font-size: 16.49px;
    font-weight: 700;
    line-height: 21px;
    padding-top: 15px;
    text-align: left;
    color: var(--gray-500);
    padding-right: 38px;
}
.in_the_new .news-container .count-box.article-card h4{
  padding:0;
}
.in_the_new .news-container .count-box.article-card h4 > a{
  color: inherit;
}


@media (min-width: 768px) {
  #news_storie .in_the_new .count-box.article-card img{
    width: 393px;
    height: 221.06px;
  }
  #news_storie .in_the_new .count-box.article-card{
    margin-left: -5px;
    margin-right: auto;
  }

}
@media (max-width: 767px) {
  .in_the_new .news-container:first-child .count-box.article-card h4{
    padding: 0;
    font-weight: 700;
    font-size: 20.49px;
    line-height: 21px;
  }
  .in_the_new {
    padding-top: 0;
  }
  .program_main ul.nav.nav-tabs.justify-content-center {
      display: block;
      overflow-x: scroll;
      overflow-y: hidden;
      white-space: nowrap;
      height: 44px;
  }
  .program_main .nav-tabs li {
      margin: 10px 5px;
      display: inline-block;
  }
  .program_main .nav-tabs li a{
    font-size: 16px;
      font-weight: 700;
      line-height: 20px;
      padding: 8px 16px;
  }
  section.program_main {
      padding-bottom: 0px;
  }
  #scholsip_progrm .gbf_one_text_main{
    border-right: none;
  }
  #scholsip_progrm p.gbf_one_text{
    padding-top: 0px;
  }
  #scholsip_progrm h2.digit_cls{
    font-size: 33.68px !important;
  }
  .communties_inn .gbf-one__right {
      padding-top: 30px;
  }
  .scholrip_box .col-xl-4 {
      margin-bottom: 15px;
  }
  .scholrip_box span.category, .scholrip_box img, .scholrip_box p.btn-read-more, .scholrip_box p.date_phone {
    display: block;
  } 

  .scholrip_box .count-box{
    width: 100%;
    float: left;
  }
  .iner_hr {
      margin-top: 3rem;
      margin-bottom: 2rem;
  }
  .in_the_new .count-box.article-card {
    align-items: center;
    margin: 20px 0;
  }
  .in_the_new .count-box.article-card .image-box {
    float: left;
    width: 33% !important;
    height: 100% !important;
    overflow: visible;
    text-align: center; 
  }
  .in_the_new .count-box.article-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
  }
  .in_the_new .count-box.article-card .content-container {
    float: left;
    width: 67%;
    padding: 0 15px;
  }
  .in_the_new .count-box.article-card .description {
    display: none;
  }
  .in_the_new .count-box.article-card h4{
    font-size: 14.07px;
    line-height: 18px;
  }
  .in_the_new .news-container:first-child .count-box.article-card h4{
    font-size: 20.49px;
    line-height: 24px;
    color: white;
  }

  .in_the_new .count-box.article-card .content-container-header h4{
    padding: 0;
    color: #fff;
    font-weight: 700;
    font-size: 20.49px;
    line-height: 24px;
  }
  .in_the_new .news-container:first-child .count-box.article-card {
    height: unset;
  }
  .in_the_new .news-container:first-child .image-box {
    width: 100% !important;
    height: 100% !important;
  }
  .in_the_new .news-container:first-child img {
    height: unset;
  }
  .in_the_new .news-container:first-child .image-box:after {
    content: '';
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 9px;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.76) 100%);
  }
  .in_the_new .news-container:first-child .content-container {
    position: absolute;
    padding: 0 2rem;
    width: 100%;
    left: 0;
    bottom: 1rem;
  }
  .in_the_new .news-container:first-child h4 a {
    color: white !important;
    font-size: 28px;
    line-height: 32px;  
  }

  h4.more_event_single {
    margin-left: 0px !important;
  }
  h4.more_event_single_noleft {
    margin-left: 0px !important;
  }

  /* .program-main-article-mobile{
    color: #D8D8D8;
    padding-bottom: 25px;
  } */
  #program-main-mobile-1 {
    color: #D8D8D8;
    padding-bottom: 25px;
  }

  #program-category-mobile-1 {
    color: #FFFFFF;
    padding-bottom: 25px;
  }
}
@media (min-width: 576px) {
  .in_the_new .news-container:first-child .count-box.article-card img {
    aspect-ratio: unset;
  }
}
.gbf__btn-box.juan_community{
    display: block;
  }
  .juan_community .gbf_one_text_main {
      width: 100%;
      display: inline-block !important;
      border-bottom: 1px solid #E0E0E0;
  }
  .juan_community p.gbf_one_text{
    float: left;
    padding-top: 18px;
  }
  .juan_community h2.digit_cls {
      font-size: 33.68px;
      line-height: 59px;
      text-align: right;
  }
  .jual_btn {
      padding: 8px 30px;
      background: #09485D;
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
      line-height: 20px;
      float: left;
      color: #fff;
  }

  .jual_btn :hover{
    color: #fff !important;
    text-decoration:none;
  }
  a.web_link {
      color: #22b743;
  }
  a.load_more_program {
      background-color: #22B742;
      padding: 16px 50px;
      font-weight: 600;
      font-size: 17.07px;
      line-height: 24px;
      border-radius: 8px;
      color: #fff;
      margin-top: 60px;
      margin-bottom: 50px;
  }
  .news_stories h2.program_section_title {
      font-weight: 700;
      line-height: 25px;
      color: #fff;
  }
@media (max-width: 767px) {
  /* .gbf__btn-box.juan_community {
      padding-left: 6px;
      padding-right: 6px;
  } */
  a.load_more_program{
    /* padding: 10px 50px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%; */
    width: 220.89px;
    background-color: #22B742;
    padding: 16px 50px;
    font-weight: 600;
    font-size: 17.07px;
    line-height: 24px;
    border-radius: 8px;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 50px;
  }
  .juan_community h2.digit_cls {
    font-size: 30.32px;
  }

  .programs-counter{
    font-size: 33.68px !important;
  }
}
#endowments_inertab{
  max-width: 1270px;
}  
#endowments .found_inner .nav li a{
  padding: 8px 16px;
  font-size: 15px;
  text-align: left;
}
#jr_innovation_center h4, #jr_innovation_center2 h4, #jr_innovation_center3 h4, #institutions_inertab h4, #excellence_inertab h4, #capacity_inertab h4 {
    font-size: 18px;
    text-align: left;
}
#jr_innovation_center p {
  padding-right: 5px;
}
div#institutions_inertab, div#excellence_inertab, div#capacity_inertab {
    max-width: 1230px;
}
.cls_mrgin{
  margin-top: 40px;
}
.program_details ul.nav.nav-tabs.flex-column {
    list-style-type: none !important;
}
p.kasam_disc.faq_details span {
    font-weight: 700;
    font-size: 15.68px;
    line-height: 19px;
    color: #141414;
    width: 100%;
    padding-bottom: 10px;
}
#scholar_care_details p.kasam_disc.faq_details {
    font-weight: 400;
    font-size: 15.68px;
    line-height: 19px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 15px 12px;
    width: 100%;
}
#scholar_care_details .program_details p {
    color: #141414;
    font-size: 18px;
}
#how_to_apply p.apply_p {
    font-size: 13.17px;
    line-height: 16px;
}
a.program_donwld {
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    background-color: #22B742;
    color: #fff;
    padding: 8px 60px;
}
.card-header{
  background-color: rgb(0 0 0 / 0%);
  border-bottom: none;
}
.accordion .card{
  border:none;
}
#accordioncourse .card-header button, #school_partners .card-header button{
  /* font-weight: 700;
  font-size: 26.56px;
  line-height: 36px;
  color: #141414; */

  width: 328px;
  height: 40px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 20.74px;
  line-height: 24px;
  color: #141414;
  flex: none;
  order: 1;
  flex-grow: 0;
}
#accordioncourse .card-body p a, #school_partners .card-body p a {
    color: #141414;
}
.under_text{
  text-decoration-line: underline;
}
div#courses {
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}
#featured_video p.apply_p {
    font-size: 13.17px !important;
    line-height: 16px !important;
}
#scholar_care_details p.testl_msg {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #8C8C8C;
}
.testimonials-box {
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 16px;
}
.testim_img {
    width: 61px;
    height: 61px;
    float: left;
}

.testim_img img{
    border-radius: 50%;
}
.testim_disc {
    font-weight: 700;
    font-size: 13.89px;
    line-height: 16px;
}
.testim_disc {
    padding-left: 74px;
    padding-top: 6px;
}
.testim_disc span {
    font-weight: 700 !important;
    color: #B6B6B6;
}
#scholar_care_details .testim_disc p {
    font-size: 13px;
    font-weight: 400;
    font-size: 13.89px;
    line-height: 16px;
    color: #B6B6B6;
}
.social_commity a img {
    width: auto !important;
}
#scholar_care_details .event_subcrib.aply_program p.apply_disc {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-right: 0px;
    color: #8C8C8C;
}
a.aply_btn {
    background: #09485D;
    border-radius: 8px;
    align-items: center;
    padding: 14px 100px;
    text-align: center;
    font-weight: 600;
    font-size: 17.07px;
    line-height: 24px;
    color: #fff;
}
#scholar_care_details .event_subcrib.aply_program h3 {
    font-weight: 700;
    font-size: 29.68px;
    line-height: 36px;
    color: #141414;
    padding-top: 25px;
}
#scholar_care_details .event_subcrib.aply_program p.apply_disc2 {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    padding-right: 0px;
    color: #000000;
}
a.traing_btn {
    background: #09485D;
    border-radius: 4px;
    padding: 8px 62px;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #fff;
}
.scolar_div{
  display: none;
}
#collapsethree ul {
    list-style-type: inherit;
}
#collapsethree ul li a {
      color: #141414;
      font-weight: 400;
      font-size: 18px;
      line-height: 24px;
}
.mobile_testmol{
  display: none;
}
@media (max-width: 767px) {
  #scholar_care_details h3.clg_digree {
      padding-right: 0px;
      word-break: unset;
  }
  .scolar_div {
      background: #FFFFFF;
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
      border-radius: 14px;
      margin-top: 20px;
      padding: 16px 16px 22px 16px;
      display: block !important;
  }
  #scholar_care_details .scolar_div h3 {
      font-weight: 700;
      font-size: 20px;
      line-height: 20px;
  }
  #how_to_apply p.apply_p{
    display: none;
  }
  #featured_video p.apply_p{
    display: none;
  }
  .dasktop_testmol{
    display: none !important;
  }
  .mobile_testmol{
    display: block !important;
  }

  #scholar_care_details p.testl_msg{
    padding-right: 0px;
  }
}

@media (min-width: 768px) {
  #testimonial-mobile-view{
    display: none;
  }
}

@media (max-width: 768px) {
  #testimonial-desktop-view{
    display: none;
  }
}
/*---------------------------------------
contact us page
---------------------------------------*/
.contact_us .container {
    max-width: 1048px;
}
.privacy_pol{
  color:#22B742 !important;
}
#contact-form .form-group label {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
#contact-form .form-control {
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #828282;
    height: auto;
}
#contact-form .form-control.turm_cond{
  width: 3%;
  float: left;
  margin-top: 3px;
  padding-right: 11px;
  margin-right: 6px;
  height: 16px;
}
#contact-form .turm_p{
 font-size: 16px;
}
#contact-form .turm_p a{
  color: #22B742;
}
label#turm_con-error {
  display: none!important;
}
button.btn.send_msg {
    background: #22B742;
    border-radius: 8px;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 17.07px;
    line-height: 24px;
    color: #fff;
    margin-top: 30px;
}
.cont_sidebar p.gbf-one__text-2 {
    padding-right: 0px;
}
@media (max-width: 767px) {
  section.contact_us {
      padding-top: 5px;
  }
  #contact-form .turm_p {
      display: block;
  }
  button.btn.send_msg{
    border-radius: 4px;
    padding: 11px 20px;
    font-size: 16.07px;
    width: 100%;
    margin-bottom: 50px;
  }

}
.privacy_policy .container {
      max-width: 907px;
}
.privacy_policy p.gbf-glance {
      color: #141414;
}
ul.control_over {
    list-style-type: decimal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-left: -20px;
}
.gbf-one__right ul li {
    font-size: 17.5px;
    line-height: 24px;
}
section.privacy_policy {
    padding-top: 0px;
    color: var(--gray-700);
}
.page_404 .container {
    max-width: 776px;
}
.page_404 h1 {
    font-weight: 900;
    font-size: 128px;
    line-height: 145px;
}
.page_404 h3 {
    font-weight: 900;
    font-size: 47.61px;
    line-height: 56px;
    padding-bottom: 26px;
}
.page_404 p{
  padding-bottom: 40px;
}
.page_404 a {
    background: #22B742;
    border-radius: 8px;
    padding: 16px 80px;
    color: #fff;
}
section.page_404 {
    padding: 120px 0;
}
section#news_storie {
    border-top: none;
    overflow: hidden;
}
.container .img-storylist{
  padding: 0px !important;

}
.img-storylist img{
    width: 100%;
}
#story_listside img.img-responsive {
    width: 100%;
}
div.row.first_class {
    padding-top: 60px !important;
}
div#story_listside {
    padding-top: 30px;
}
#story_listside h2 {
    font-weight: 700;
    font-size: 20.49px;
    line-height: 30px;
}
#story_listside .gbf-one__right {
    padding-right: 19px;
}
#news_storie .story_new h4 {
 padding-right: 9px;
 font-size: 20.49px;
}
#story_listside p.gbf-glance.story_content {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
#story_listside p {
    font-weight: 400;
    font-size: 12.2px;
    line-height: 16px;
}
.load_more_news a {
    background: #22B742;
    border-radius: 8px;
    padding: 16px 50px;
    font-weight: 600;
    font-size: 17.07px;
    line-height: 24px;
    color: #fff;
}
section.load_more_news {
    padding-bottom: 110px;
}
section.we-Building.aritcl_list_tile {
    padding: 60px 0px 10px;
}
#news_storie .container {
    max-width: 1230px;
}
div#story_listside .image-box{
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
@media (min-width: 768px) {
  #news_storie .news_stories_column img{
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #news_storie .news_stories_column .content-container {
    width: 393px;
    margin: auto;
  }
  #news_storie .news_stories_column .count-box.article-card{
    width: unset;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
  }
  #news_storie .news_stories_column img{
    width: unset;
    margin-left: auto;
    margin-right: auto;
  }
}
#news_storie .container:first-child {
  padding-right: 6px;
  padding-left: 10px;
}
@media (max-width: 1199px) {
  #news_storie .container:first-child {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  #story_listside .col-xl-4 {
      width: 33%;
      float: left;
      height: 100px;
  }
  #story_listside img.img-responsive {
      width: 100%;
      height: 100%;
  }
  #story_listside .col-xl-8 {
      width: 67%;
      float: left;
  }
  #story_listside .gbf-one__right {
      padding-right: 0px;
  }
  #story_listside h2 {
    font-weight: 700;
    font-size: 14.07px;
    line-height: 18px;
    padding-right: 40px;
  }
  section.load_more_news {
      padding-bottom: 70px;
      padding-top: 0px;
  }
  #story_listside p.gbf-glance.story_content{
    display: none;
  }
  div.row.first_class {
      padding-top: 26px !important;
  }
  div#story_listside {
      border: 1px solid #F4F4F4;
      padding-bottom: 20px;
      padding-top: 20px;
  }
  div#story_listside:last-child{
    border:none;
  }
  .load_more_news a{
    padding: 13px 46px;
  }

}
.we-applient .container {
    max-width: 1120px;
}
.gbf_one_text_main_details p.gbf_one_text.social_commity {
    text-align: center;
}
.articls_details .container {
    max-width: 1120px;
}
.articls_details h3 {
    font-size: 26.56px;
    font-weight: 700;
    line-height: 36px;
    color: #141414;
}
.articls_details ul li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #8C8C8C;
}
.program_articls .count-box h4 {
    font-size: 18.49px;
    display: block;
    font-weight: 700;
    color: var(--gray-500);
    text-align: left;
    padding-top: 10px;
}
.program_articls .count-box h4:hover{
  color: var(--green);
}
.program_articls .count-box p {
    padding: 0;
    margin: 0;
    font-size: 12.2px;
    text-align: left;
    font-weight: 400;
    line-height: 16px;
    color: #8C8C8C;
    padding: 4px 0px;
}
.articls_line .container {
    max-width: 1200px;
}
.line_articl {
    border-bottom: 1px solid #E0E0E0;
    width: 100%;
    margin-left: 200px;
}
section.articls_line {
    padding: 0px;
}
.container.partner_p.program_articls .row {
    margin-left: 205px;
}
.articls_featured .container {
  max-width: 1120px;
}
.news_for_mobile{display: none;}
@media (min-width: 768px) {
  .articls_featured .image-box.img-container img {
    width: 290px;
    height: 164px;
  }
}
@media (max-width: 991px) {
  .articls_details .container {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .we-applient .container p {
      font-size: 15px;
      line-height: 16px;
  }
  section.articls_details {
      padding-top: 0px;
      padding-bottom: 0px;
  }
  .articls_details h3 {
      font-size: 20.74px;
      line-height: 24px;
  }
  section.articls_line{display: none;}
  .container.partner_p.program_articls .row {
      margin-left: -15px;
  }
  .news_for_mobile{display: block !important;}
  .singl_evnt{
      background-image: url("../event-detisl-m.html");
      height: 366px;
      background-size: cover;
      margin-bottom: 23px;
  }
  .count-box.singl_evnt h4{
    padding-top: 12px;
    position: absolute;
    bottom: 54px;
    padding-left: 23px;
    padding-right: 62px;
    font-size: 20.49px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
  }
  .count-box.singl_evnt p{
    padding: 26px 22px 21px;
    position: absolute;
    bottom: 17px;
  }
  .program_articls .count-box h4 {
      font-size: 15.49px;
      display: block;
      font-weight: 700;
      color: #141414;
      text-align: left;
      padding-top: 0px;
  }
  .singl_event_dask h4 {
      padding-left: 10px;
      width: 65%;
      float: left;
  }
  .singl_event_dask img {
      width: 35%;
      float: left;
      height: 100px;
  }
  .singl_event_dask p.event_calicon{
    width: 100%;
    float: left;
    margin-top: -19px;
    padding-left: 130px
  }
  .col-lg-4.singl_event_dask {
      margin-bottom: 15px;
  }
  .we-applient .container {
      padding-right: 0px;
      padding-left: 0px;
  }
  section.we-applient {
      overflow: hidden;
  }
}

section#program_filter {
    background-color: #F9F9F9;
    overflow: hidden;
}
#program_filter .container{
  max-width: 1280px
}

.filter_sort .modal-header{
  margin-left:0.4rem!important;
}

.filter_sort .close{
  padding: 1rem 1.28rem 1rem 1rem!important;
}

.filter_sort .modal-body{
  padding:1.4rem!important;
}

.filter_sort .input-group-text{
  border-left: 0px solid !important;
  border-color: #d9dee3 !important;
}

.filter_sort .btn{
  width:46%!important;
  margin-bottom:1rem!important;
}

.modal-content-program-train{
  margin-top:auto!important;
}

.modal-dialog-program-train{
  height:100%!important;
}

.modal-parent{
  overflow-y:hidden!important;
}
.filter_row .h3 {
    font-weight: 700;
    font-size: 20.74px;
    line-height: 24px;
    color: #141414;
}
.lestst_filter{
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 0px 4px;
}
.lestst_filter .form-group {
    font-weight: 700;
    font-size: 13px;
    line-height: 7px;
    margin-bottom: 0rem;
    padding: 6px 9px;
}
.lestst_filter .form-group label{
  margin-bottom: 0rem;
}
.lestst_filter .form-group:first-child {
  border-right: 1px solid #E0E0E0;
}
.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgba(153, 153, 153, 0.5);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 5px;
  border-radius: 4px;
}
.form-group input:checked + label:before{
  background: #4F4F4F;
border-radius: 4px;
}
.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 13px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.grid_view{
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  color: #31353C;
}
.list_view{
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 15px;
  font-size: 13px;
  line-height: 24px;
  color: #31353C;
}
.view_mode{
  margin-bottom: 32px;
}
.filter_sidebar h6{
  font-weight: 700;
  font-size: 20.74px;
  line-height: 24px;
  color: #B6B6B6;
  margin-bottom: 48px;
}
.has-search .form-control {
    padding: 12px 8px 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    display: block;
    width: 221px;
    height: 32px;
}
.form-group.has-search {
    position: relative;
}
.filter_sidebar .col-xl-4 {
    margin-bottom: 30px;
    text-align: -webkit-center;
    text-align: -moz-center;
}
.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 0rem;
    text-align: center;
    pointer-events: none;
    color: #4F4F4F;
    transform: rotate(85deg);
    right: 99px;
    float: right;
    top: 0px;
}
.filter_sidebar .py-3 h5{
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}
.tick {
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    margin: 6px 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #828282;
}
.tick input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.check{
    position: absolute;
    top: 0px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.tick:hover input ~ .check {
    background-color: #f3f3f3;
}
.tick input:checked ~ .check {
    background-color: #4F4F4F;
}
.check:after {
    content: "";
    position: absolute;
    display: none;
}
.tick input:checked ~ .check:after {
    display: block;
    transform: rotate(45deg) scale(1);
} 
.tick .check:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(2);
}
.list_view_div .col-xl-4 {
    max-width: 100%;
    flex: 100%;
}
.list_view_div .col-xl-4 .count-box img {
    width: 30%;
    float: left;
}
.list_view_div .col-xl-4 .count-box h4 {
    width: 70%;
    float: left;
    padding-left: 10px;
}
.other-prog .list_view_div .count-box {
    padding: 16px;
    width: 100%;
    float: left;
}
.program .list_view_div .count-box p {
    width: 68%;
    float: left;
    padding-left: 10px;
}
.program .list_view_div .count-box p.btn-read-more {
    width: 30%;
    margin-top: 0px;
    float: right;
}

.modal-content.filter_sort{
    border-bottom-right-radius: 0%!important;
    border-bottom-left-radius: 0%!important;
    border-top-left-radius: 4%!important;
    border-top-right-radius: 4%!important;
    border-color:transparent;
}

.filter_sort_search{
  width:70%;
}

#view-more-desktop a{
   text-decoration: none;
    background-color: transparent;
    font-family: 'Inter';
    font-weight: 600;
    text-decoration-line: underline;
    font-size: 15px;
    color: #4F4F4F;
}

.program .list_view_div .count-box p.open_for_list {
    width: 30%;
    float: right;
    padding-left: 0px;
    margin-top: -31px;
}
.other-prog .list_view_div .count-box span.category{
  margin-left: 10px;
}
.list_view_div p.hide_for_grid {
    padding-right: 130px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    display: block;
}
.grid_view_div p.hide_for_grid {
    display: none;
}
.row.progm_eventrow{display: block;}
@media (max-width: 767px) {
  .filter_sidebar .col-xl-3 {
      display: none;
  }
  .ml-auto.d-flex.align-items-center.views {
      display: none !important;
  }
  .filter_for_mobile{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 21px 5px;
    gap: 10px;
    position: fixed;
    width: 100%;
    height: 66px;
    left: 0px;
    bottom: 0px;
    background: #FFFFFF;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.25);
    justify-content: center;
  }
  .filter_for_mobile button {
      border: none;
      border-radius: 4px;
      background-color: #fff;
      padding: 8px 16px;
      font-weight: 600;
      font-size: 15px;
      line-height: 18px;
      color: #4F4F4F;
  }
  .sort_mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 23px 40px;
    gap: 24px;
    position: fixed;
    width: 375px;
    height: 264px;
    background: #FFFFFF;
    border-radius: 16px 16px 0px 0px;
    bottom: 0px;
  }
  .tile_close{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 155px;
    width: 327px;
    height: 22px;
  }
  .tile_close h5 {
      font-weight: 700;
      font-size: 16px;
      line-height: 19px;
      display: flex;
      align-items: center;
      color: #000000;
  }
  .close_filter i {
      font-size: 22px;
      font-weight: 400;
      color: #4F4F4F;
  }
  .brand_mobile {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 24px 32px;
      position: absolute;
      width: 375px;
      left: 0px;
      top: 70px;
      border-top: 1px solid #E0E0E0;
  }
  .filter_apply_btn{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 326px;
    height: 34px;
    bottom: 35px;
    position: absolute;
  }
  .filter_apply_btn button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 14px;
    width: 153px;
    height: 34px;
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #4F4F4F;
  }
  .filter_apply_btn button:hover{
    background: #22B742;
    color: #FFFFFF;
    border: 1px solid #22B742;
  }
  .filter_apply_btn button i {
      font-size: 18px;
      font-weight: bold;
      padding-right: 4px;
  }
  .filter_mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 23px 40px;
    gap: 24px;
    position: fixed;
    width: 375px;
    height: 413px;
    background: #FFFFFF;
    border-radius: 16px 16px 0px 0px;
    bottom: 0px;
  }
  .brand_mobile .has-search .form-control{
    height: 44px
  }
  .has-search .form-control-feedback{
    right: 21px;
    float: right;
    top: 21px;
  }
  .form-group.has-search {
      position: relative;
      padding-top: 16px;
  }
  .brand_mobile h5 {
      font-weight: 400;
      font-size: 14px;
      line-height: 17px;
      color: #000000;
  }
  .brand_mobile.brand_filter{
    border-bottom: 1px solid #E0E0E0;
    top: 64px;
    padding: 4px 24px 0px;
  }
  .filter_click span {
      background: #333333;
      border-radius: 16px;
      color: #fff;
      width: 18px;
      height: 18px;
      padding: 2px 6px;
      font-weight: 700;
      font-size: 12px;
      line-height: 15px;
      margin-left: 4px;
  }
  .row.filter_sidebar {
      margin-right: 0px;
      margin-left: 0px;
  }
  .Header_mobile_search {
      display: block;
      width: 100%;
      height: 90px;
  }
  .Header_mobile_search .form-group.has-search {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 16px;
      gap: 57px;
      position: absolute;
      width: 350px;
      height: 0px;
      left: 21px;
      top: 30px;
      margin-left:0%;
  }
  .Header_mobile_search .has-search .form-control {
      padding: 12px 8px 12px 10px;
      border: 1px solid #E0E0E0;
      border-radius: 4px;
      display: block;
      width: 100%;
      height: 40px;
      font-weight: 400;
      font-size: 13.89px;
      line-height: 16px;
  }
  .Header_mobile_search .has-search .form-control-feedback {
      right: 34px;
      float: right;
      top: 0px;
  }
}

/* -----------------------------------------
GBF Training and Events
-------------------------------------------- */
.sort-bar{
  position:fixed;
  bottom:-10px;
  background-color: white;
  left:0;
  right:0;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px;
  padding: 15px 0 30px 0;
}

.sort-bar button {
  background-color:transparent;
  border: none;
  color: #525252;
  font-weight:500;
  margin: 0 5%;
}

@media (max-width:768px){
  .sort-bar{
    display:flex;
  }

}

@media (min-width:769px){
  .sort-bar{
    display:none;
  }
}

/* .trainings-and-events-card{
  width: 270px !important;
} */


@media (min-width:320px) and (max-width: 480px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ 
  .our-team-image{
    margin: 0;
    padding: 0px;
    object-fit: cover;
  }
  .our-team-header{
    padding-top:16px;
  }
  .foundation-brothers{
    padding-top:12px;
    line-height:unset!important;
  }
  
  .our-team-subtitle{
    color:#6F6F6F!important;
    padding-bottom: 30px;
  }
  #story_listside .story_content{
    display: none;
  }
  .story_new p{
    display: none;
  }
  .search-result-div.news_stories .story_new p{
    display: block;
  }
  .program .count-box{
    max-height:none!important;
    min-width: 254px;
    text-align:left;
  }
}
@media (min-width:480px) and (max-width: 767px) { /* smartphones, Android phones, landscape iPhone */ 
  #story_listside .story_content{
    display: none;
  }
  .story_new p{
    display: none;
  }
  
}
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ 
  #story_listside .story_content{
    display: none;
  }
  /* .story_new p{
    display: none;
  } */
  .search-result-div .news_stories .story_new p{
    display: block;
  }
  .program .count-box{
    max-height:none!important;
    min-width: 254px;
  }
}

@media (max-width:768px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ 
  .search-results-card{
    margin-bottom:10px!important;
    border:none!important;
    padding:0!important;
  }
  .search-results-card div.search-result-content {
    height: unset;
  }

  #scholar_care .img-container {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
  }
}

@media (min-width: 576px) and (max-width: 991px){
  #scholar_care .program .row {
    padding-left: 24px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .search-results-card > div.count-box {
    width: 100% !important;
  }
  .search-results-card div.search-result-content p {
    display: block;
  }
}

@media (max-width: 767px) {
  .search-results-card .article-card div.search-result-content  p {
    display: none;
  }
}

@media (min-width: 600px) {
  .search-results-card > div.count-box {
    width: unset;
  }
}

@media (min-width: 769px) {
  .search-results-card div.count-box img {
    width: 100%;
  }
}

@media (min-width:1025px) and (max-width: 1200px) { /* big landscape tablets, laptops, and desktops */ 
  .our-team-image{
    width: 393px !important;
    height: 229px !important;
  }
  #story_listside .story_content{
    display: block;
  }
  .story_new p{
    display: block;
  }
}
@media (min-width:1281px) { /* hi-res laptops and desktops */ 
  .our-team-image{
    width: 393px;
  }
  #story_listside .story_content{
    display: block;
  }
  .story_new p{
    display: block;
  }
  .our-team-subtitle{
    color:#6F6F6F!important;
    font-weight: 400;
    font-size:20px;
  }
  .our-team-content{
    /* margin-left: -21px; */
  }
}

/*--------------------------------------------------------------
# Search Result
--------------------------------------------------------------*/
p.all-result-label {
  padding: 20px !important;
  font-size: 20px;
  font-weight: bold;
}

.search-cards{
  padding-top:0;
}

.search-results-card{
  margin-bottom:49px;
}

.gbf_one_text i {
  font-size: 28px !important;
  padding-right: 10px;
}

.search-result-content{
  display: flex;
  flex-direction: column;
  /* height: 210px; */
  overflow: auto;
}

.article-card .search-result-content p {
  font-size: 18px;
}

@media (min-width:1025px) {
  .search-input{
    width:813px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .search-result-div ul.search-tab {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
  }


}
@media (max-width: 425px) {
  .search-result-div ul.search-tab {
    justify-content: flex-start !important;
  }
}

@media (max-width: 768px) {
  .technical-training-mobile-view{
    display: block;
  }

  .technical-training-desktop-view{
    display: none;
  }
}

@media (min-width: 769px) {
  .technical-training-mobile-view{
    display: none;
  }

  .technical-training-desktop-view{
    display: inline-flex;
  }
}

.pt-24{
  padding-top: 24px;
}

.pb-24{
  padding-bottom: 24px;
}

.pt-7{
  padding-top: 7px;
}

.pb-10{
  padding-bottom: 10px;
}

.pl-21{
  padding-left: 21px !important;
}

.pr-21{
  padding-right: 21px !important;
}

.article-details-sub-header{
  font-size: 16.49px !important;
}

.homepage-metric-count{
  font-size: 47.61px !important;
}

@media (min-width: 1050px) {
  .program-details-desktop {
    display: flex;
  }

  .program-details-mobile {
    display: none;
  }
}

@media (max-width: 1048px) {
  .program-details-desktop {
    display: none !important;
  }

  .program-details-mobile {
    display: inline-block;
  }
}

a.readmore-section {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
a.readmore-section:hover{
  color: var(--green);
  text-decoration-color: var(--green);
}

.bg-gradient {
  background: linear-gradient(var(--gradient)) !important;
}

.bg-gradient .section-title,
.bg-gradient p, 
.bg-gradient h4, 
.bg-gradient a, 
.bg-gradient .feed_story_title a {
  color: #fff;
}
.bg-gradient a.readmore-section {
  text-decoration-color: #fff;
}
.bg-gradient a:hover, .bg-gradient a.readmore-section:hover{
  color: var(--gray-500);
  text-decoration-color: var(--gray-500);
}

.our-team-content {
  text-align: justify;
}


.tab-btn{
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 8px 20px;
  display: block;
  min-width: 200px;
  text-wrap: nowrap;
  opacity: 0.3;
}

.tab-btn.fluid {
  min-width: unset;
}

.tab-btn:hover,.tab-btn.active{
  color: #fff;
  background-color: var(--green);
  opacity: 1;
}

section#about-us .gbf-one__text-2, 
section#ttc-landing .gbf-one__text-2, 
section#ttc-landing .gbf_one_text {
  color: var(--gray-400);
}

section#about-us .gbf_one_text {
  color: var(--gray-500);
  font-size: 18px;
  line-height: 24px;
}


.nav.horizontal{
  overflow: scroll;
  flex-wrap: nowrap;
}

#about-nav .tab-btn{  
  margin-right: 16px;
}

.full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.job-content a{
  word-break: break-all;
}

#contact-form .form-control{
  display: block;
  width: 100%;
  line-height: 19px;
}

.side-category {
  overflow: visible;
  text-wrap: unset;
}

.program-boxes {
  text-align: center;
  font-size: var(--font-size-300);
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 150px;
}

.program-boxes p {
  position: absolute;
  bottom: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: linear-gradient(0deg, black -15%, transparent);
  width: 100%;
  margin-bottom: 0;
  padding: 40px 20px 20px 20px;
}

.program-boxes img {
  object-fit: cover;
}

.program-boxes:hover {
  color: var(--green);
}

.btn-green {
  margin: 10px 0px;
  color: white;
  background: var(--green);
  border-radius: 10px;
  border: 1px solid var(--green);
}

.btn-green:hover {
  color: var(--green);
  background: white;
}

.zoom {
  transition: transform .2s;
}

.zoom:hover{
  transform: scale(1.05);
}

.partner-items img{
  min-width: 46px;
}

.partner-items a{
  font-weight: 400;
  font-size: var(--font-size-400);
  text-decoration-line: underline;
  color: #141414;
}

.partner-items a:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

.job-list .header {
  font-weight: bold;
  color: var(--green);
}

.job-list .job-items{
  word-break: break-word;
  border-bottom: 1px dashed var(--gray-400);
}
.social-list img{
  width: 30px;
}
.social-list span{
  font-size: var(--font-size-300);
  font-weight: 300;
}

.social-list span:hover{
  color: var(--green);
}



.contact_us .form-group label:before{
  display:none;
}
#contact-form .form-control{
  display: block;
  width: 100%;
}


.swiper-pagination-bullet-active {
  background: #000;
}
#program-swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: -5px;
}

.feed .image-box img {
  object-fit: cover;
  max-height: 246px;
}

.our-graduate-card {
  display: flex; 
  flex-direction: column; 
  height: 100%;
}

.our-graduate-card-body {
  flex: 1;
}

.our-graduate-card-text {
  font-size: medium;
}

.wysiwyg_content img {
  max-width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.programs-article .wysiwyg_content img, .news-article .wysiwyg_content img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
  height: auto;
}

/* Article Pages */
.article-hero h3{
  font-size: var(--font-size-700);
  line-height: 56px;
  font-weight: 900;
  color: var(--gray-700);
}

.article-hero p{
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
}

.article-hero .gbf_one_text {
  font-size: 1rem;
  color: var(--gray-400);
  margin-right: auto;
}

.article-hero .digit_cls {
  margin-right: auto;
}

.article-hero-img {
  display: block;
  margin: auto;
  object-fit: cover;
}

.programs-article .article-hero-img, 
.news-article .article-hero-img, 
.ttc-article .article-hero-img{
  width: 100%;
  height: 576px;
}

.accordion-button {
  font-size: 26.56px;
  line-height: 36px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--gray-500);
  border: 0;
  background: unset;
  padding: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-align: left;
}

.accordion-button::after {
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: auto;
  content: "";
  background-image: var(--accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: 24px;
  transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--accordion-btn-active-icon);
  transform: rotate(-180deg);
}

.accordion-button:hover, .accordion-button:hover > .accordion-button::after{
  color: var(--green);
}

.w-fit-content {
  width: fit-content !important;
}

.btn-techEN, .btn-techPH {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #b3b3b3;
  background-color: transparent;
  border-color: transparent;
  padding: 0px 0px 8px 0px;
  margin: 0px 2px 0px 2px;
}

h3.separator {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: black;
}

.related_story_title, .related_story_title a {
  font-weight: 700 !important;
  font-size: 16.49px !important;
  line-height: 21px !important;
}

.related-stories img {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover;
}

.search-results-card img {
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.section-heading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 36px;
}

.container {
  max-width: 95%;
}

@media (max-width: 767px){ /* Mobile */
  .btn-green {
    display: block;
  }
  .wysiwyg_content img {
    height: auto;
  }
  
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
  }
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
  }
  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
  }
}
@media (max-width: 991px){ /* Mobile and Tablet */
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }

  .facilities-list .ourteam-image {
    min-height: unset;
  }

  .side-category-list
  {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .side-category-list .side-category {
    text-wrap: nowrap;
    margin-right: 15px;
  }

  .owl-carousel .owl-item img {
    height: 100%;
  }
  .programs-article .article-hero-img, 
  .news-article .article-hero-img, 
  .ttc-article .article-hero-img{
    height: auto;
  }

  .program-boxes img {
    height: auto;
  }
}
@media (min-width: 992px){ /* Desktop */
  #trainings .desktop {
    display: flex;
  }
  .mobile {
    display: none;
  }
  #partners .nav.horizontal {
    justify-content: center;
  }
  .sticky {
    max-width: 210px;
  }
  #ttc-landing .tab-btn.fluid{
    min-width: 200px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) { 
  .program-boxes img {
    height: 150px;
  }
}

@media (min-width: 1200px) { 
  .program-boxes.zoom picture img {
    height: 150px;
    width: 300px;
  }
}
