.thumbnail {
  border-width: 1;
  height: auto;
  max-width: 216px;
  vertical-align: top;
  width: auto;
}
.thumbnail:hover {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, 0.2);
}
.gridcontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  /* Adjust the space between items */
}
.gridcontainer div {
  flex: 1 1 calc(25% - 0px); /* 100% / 4 across = 25% less 2x gap */
  box-sizing: border-box;
  min-width: 175px; /* Minimum width to prevent elements from shrinking too small */
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}
.carousel-indicators .active {
  background-color: #c0c0c0;
}
.underline {
  border-bottom: 1px solid lightgray;
}

/* Start Featured Course Styles */
.new-featured-course-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  margin-bottom: 20px;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}
.featured-course-title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.featured-course-title img {
  width: 24px;
  height: 24px;
}
.featured-course-title h2 {
  margin: 0;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
}
.new-featured-course-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.new-featured-course-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  min-height: 200px;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.new-featured-course-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.new-featured-course-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  padding-left: 20px;
  padding-bottom: 16px;
}
.new-featured-course-item-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.new-featured-course-item-content a {
  z-index: 2;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.new-featured-course-item-content:hover {
  color: #499cff;
}
.featured-course-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #45bade;
}
/* Have to specify link & visited to not get underline after click */
.featured-course-button:link {
  text-decoration: none;
}
.featured-course-button:visited {
  color: white;
}
.featured-course-button:hover {
  background-color: #26afd9;
}
@media (max-width: 767px) {
  .new-featured-course-container {
    padding: 20px 0;
    gap: 16px;
  }
  .featured-course-title h2 {
    font-size: 20px;
  }
  .new-featured-course-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-featured-course-item {
    min-height: 240px;
  }
  .new-featured-course-item-content h3 {
    font-size: 14px;
  }
  .new-featured-course-item-content a {
    font-size: 10px;
  }
  .featured-course-button {
    padding: 12px 24px;
  }
}
@media (max-width: 480px) {
  .new-featured-course-item-content {
    padding-bottom: 20px;
  }
  .new-featured-course-item {
    min-height: 200px;
  }
}
/* End Featured Course Styles */

/* Begin Testimonial Styles */
.new-review-elm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #414141;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  padding: 32px 0;
}
.new-review-elm * {
  margin: 0;
  padding: 0;
}
.review-header {
  font-family: Helvetica;
  font-weight: 700;
  font-size: 37px;
  line-height: 42.55px;
  letter-spacing: 0;
  text-align: left;
  color: #393939;
}
.rTitle {
  font-family: Lato;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: 0%;
  color: #000;
}
.review-button {
  background-color: #068433;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none !important;
  width: max-content;
}
.review-elms-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-arrow {
  cursor: pointer;
  flex-shrink: 0;
}
.review-elms-container {
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.review-elms-container::-webkit-scrollbar {
  display: none;
}
.review-elms {
  display: grid;
  width: 300%;
  gap: 18px;
  overflow-x: auto;
  grid-template-columns: repeat(6, 1fr);
}
.review-elm {
  background-color: #3b4a9215;
  border-radius: 10px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  box-shadow: 0px 0px 5px 0px #00000012;
}
.review-elm-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.review-elm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dfdfdf;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}
.review-elm-dot.active {
  background-color: #000000;
}
.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.st {
  font-family: Lato;
  font-weight: 700;
  font-size: 21px;
  line-height: 25.2px;
  letter-spacing: 0%;
  color: #000;
}
.sm {
  font-family: Lato;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0%;
  color: #000;
}
.para {
  font-family: Lato;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0%;
  color: #000;
}
.part1 {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .review-elms {
    width: 550%;
    gap: 20;
  }
  .review-elm {
    box-shadow: none;
  }
  .review-header {
    font-family: Helvetica;
    font-weight: 700;
    font-size: 26px;
    line-height: 29.9px;
    letter-spacing: 0%;
    text-align: center;
    color: #393939;
  }
  .rTitle {
    font-family: Lato;
    font-weight: 700;
    font-size: 21px;
    line-height: 25.2px;
    letter-spacing: 0%;
    color: #000;
  }
  .para {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0%;
    color: #000;
  }
  .st {
    font-family: Lato;
    font-weight: 700;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: 0%;
    color: #000;
  }
  .sm {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 21.6px;
    letter-spacing: 0%;
    color: #000;
  }
}
/* End Testimonial Styles */

/* Begin Header Action Styles */
.header-action-elm * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.header-action-elm {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	margin-top: 24px;
}
.header-action-elm-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	justify-content: center;
}
.header-action-elm-item h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	}
.header-action-elm-item a {
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	text-decoration: underline;
}
.header-action-elm-item:first-child {
	background: linear-gradient(90deg, #da2e33 0%, #8b1d20 100%);
}
.header-action-elm-item:nth-child(2) {
	background: linear-gradient(90deg, #0ca1d8 0%, #076182 100%);
}
.header-action-elm-item:last-child {
	background: linear-gradient(90deg, #068433 0%, #034018 100%);
}
@media (max-width: 1200px) {
	.header-action-elm-item {
		padding: 16px;
	}
	.header-action-elm-item h4 {
		font-size: 16px;
		line-height: 18px;
	}
}
@media (max-width: 768px) {
	.header-action-elm-item {
		padding: 20px;	
	}
	.header-action-elm {
		margin-top: 16px;
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
/* End Header Action Styles */


/* On Demand Styles */
.on-demand-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.demand-details {
    display: flex;
    flex-direction: column;
    max-width: 430px;
    height: 100%;
    background: #3B4A92;
    padding: 9px 15px;
    gap: 20px;
}
.demand-heading a {
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    text-decoration: none;
}
.demand-title a {
    display: flex;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    text-decoration: underline;
    color: #FFFFFF;
}
.demand-para p {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    color: #FFFFFF;
}
.demand-img {
    display: flex;
    width: 100%;
    height: 100%;
}
.demand-img img {
    max-width: 95%;
    height: 100%;
}
.main-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43px;
    width: 251px;
    border-radius: 5px;
    background: #068433;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin: 20px;
}
.allCourses a {
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    .on-demand-main {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #3B4A92;
        margin-bottom: 20px;
        flex-direction: column-reverse;
    }
    .demand-img img {
        width: 100%;
        min-height:100% !important;
    }
    .demand-details {
        width: 100% !important;
        max-height: 100% !important;
    }
    .demand-img {
        width: 100% !important;
    }
}
@media only screen and (max-width: 1200px) {
    .demand-details {
        width: 50%;
        max-height:250px;
    }
    .demand-img {
        width: 50%;
        height: 100%;
    }
    .demand-img img {
        max-width: 100%;
        min-height: 250px;
    }
}
/* End: On Demand Styles */

/* Certification Styles */
.row.equal .thumbnail, .row.equal .thumbnail a {
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
}
.row.equal .thumbnail, .row.equal .thumbnail a:hover{
    text-decoration: none;
}
.courseIcon {
    position: absolute;
    top: 80px;
}
.row.equal .color {
    position: absolute;
    top: 99px;
    font-weight: 700;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    opacity: 1;
}
.courseIcon img {
    width: 100%;
    height: 32px;
}
.row.equal .thumbnail {
    width: 110%;
    max-width: 230px !important;
    padding: 0;
}
.row.equal img.img-responsive.gm-loaded.gm-observing.gm-observing-cb {
    height: auto;
    width: 280px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.thumbnail .caption:not(.gridcontainer .thumbnail .caption) {
    padding: 16px;
    color: #333;
    background: #EAEAEA;
    max-height: 380px !important;
    height: 276px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.thumbnail .caption:not(.gridcontainer .thumbnail .caption) p {
    font-weight: 400;
    font-size: 13px;
    line-height: 164%;
    letter-spacing: 0;
}
.courseIcon img {
    height: 32px;
}
.learnMore {
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
    width: 151px;
    height: 40px;
    border-radius: 5px;
    background: #068433;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
}
.learnMore a {
    color: #FFFFFF;
}
@media only screen and (max-width: 1200px) {
    .thumbnail .caption:not(.gridcontainer .thumbnail .caption) {
        height: 320px;
    }
    .courseIcon {
        top: 66px;
    }
    .row.equal .color {
        top: 83px;
    }
    .courseIcon img {
        height: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .row.equal {
        display: flex;
        flex-direction: column;
    }
    .row.equal .col-xs-6.col-md-3 {
        width: 100%;
    }
    .row.row-flex {
        display: flex;
        justify-self: center;
    }
    .thumbnail .caption:not(.gridcontainer .thumbnail .caption) {
        height: 215px;
    }
    .row.equal .thumbnail {
        width: 110%;
        max-width: 340px !important;
    }
    .courseIcon {
        top: 135px;
    }
    .courseIcon img {
        height: 38px;
    }
    .row.equal .color {
        top: 165px;
    }
}
/* End: Certification Styles */

/* Live Training Styles */
.live-training-elm * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.live-training-elm{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 20px;
    padding: 50px 0;
    border-top: 2px solid #e0e0e0;
}
.live-training-elm picture{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.live-training-elm img{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.live-training-elm .details{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.live-training-elm .details h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    color: #1B4E8C;
}
.live-training-elm .details strong{
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #1B4E8C;
    text-transform: uppercase;
}
.live-training-elm .details p{
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #1F2120;
}
.live-training-elm .details a{
    background: #1B4E8C;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    width: 266px;
    height: 50px;
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
@media (max-width: 767px) {
    .live-training-elm{
        grid-template-columns: 1fr;
        margin: 40px;
    }
    .live-training-elm .details {
        gap: 16px;
    }
}
/* End: Live Training Styles */

/* Slider Carousel Styles */
.header-elm {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.slider {
    position: relative;
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}
.slider-slide.active {
    opacity: 1;
}
.slider-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.carousel-indicators li {
  border: 1px solid #666;
}
.header-elm a img {
    width: 100%;
    height: 100%;
    display: block;
}
@media (max-width: 767px) {
	.slider-slide img {
		object-fit: fill;
	}
    .header-elm {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .slider{
        min-height: 280px;
    }
}
@media (max-width: 480px) {
    .slider{
        min-height: 220px;
    }
}
/* End: Slider Carousel Styles */

/* Find your Role Styles */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); */
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppin:wght@400;500;600;700&display=swap" rel="stylesheet">

#home .find-your-role *{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
#home .find-your-role {
    background-color: #E9EEF2;
    padding: 40px 20px;
    margin: 60px 0;
}
.find-your-role__container {
    display: grid;
    grid-template-columns: 2fr 5fr;
    align-items: center;
    gap: 24px;
}
.find-your-role__header {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.find-your-role__title {
    font-size: 42px;
    font-weight: 700;
    color: #1B4E8C;
}
.find-your-role__subtitle {
    font-size: 11.5px;
    color: #1f2120;
    line-height: 1.6;
}
.find-your-role__explore-btn {
    background-color: #1B4E8C;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.find-your-role__explore-btn:hover{
    color: #fff!important;
}
.find-your-role__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.role-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 0.75px solid #1B4E8C33
}
.role-card__image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.role-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.role-card__content-wrapper{
    padding: 20px;
    height: 100%;
    display: grid;
    gap: 16px;
    grid-template-rows: auto auto auto 1fr auto auto auto;
}
.role-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1B4E8C;
}
.role-card__description {
    font-size: 11px;
    line-height: 1.6;
    color: #1F2120A6;
}
.role-card__if-you-like {
    font-size: 11px;
    line-height: 1.6;
    color: #1F2120A6;
}
.role-card__if-you-like span {
    font-weight: 700;
    color: #1B4E8C;
}
.role-card__stat {
    font-size: 11px;
    line-height: 1.6;
    color: #1F2120A6;
}
.role-card__stat strong {
    font-weight: 700;
    color: #1B4E8C;
}
.role-card__cta {
    background-color: #E51050;
    color: #ffffff;
    border-radius: 6px;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: max-content;
}
.role-card__cta:hover {
    background-color: #E51050;
    color: #fff !important;
}
.role-card--excel .role-card__cta {
    background-color: #007331;
}
.role-card--excel .role-card__cta:hover {
    background-color: #007331;
    color: #fff !important;
}
.role-card__footer{
    font-weight: 400;
    font-size: 9px;
    line-height: 163%;
    color: #1F2120A6;
}
.find-your-role__explore-btn-mobile{
    display: none;
}
@media (max-width: 768px) {
    .find-your-role__container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .find-your-role__cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .find-your-role__header {
        align-items: center;
        gap: 6px;
    }
    .find-your-role__header a{
        display: none!important;
    }
    .find-your-role__explore-btn-mobile{
        display: block;
        text-align: center;
        width: max-content;
        margin: auto!important;
        text-align: center;
    }
}
/* End: Find your Role Styles */
