
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}
p {
  line-height: 1.5;
}
img {
  max-width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1366px;
}
.siteBanner {
  background: #FFFFFF;
  padding: 5rem 0;
}
.siteBanner .flexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.siteBanner .bannerText {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  flex: 0 0 50%;
  width: 50%;
}
.siteBanner .bannerText .title {
  font-size: 5rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
.siteBanner .bannerText .sub-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.875rem;
}
.siteBanner .bannerText p {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: #000000;
  margin-bottom: 1.875rem;
}
.siteBanner .bannerText .btnGroup .btn {
  background: #EB5034;
  padding: .5rem 1rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  border:1px solid #EB5034;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}
.siteBanner .bannerImg {
  position: relative;
  width: 600px;
  height: 600px;
}
.siteBanner .bannerImg .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: 290px;
  border-radius: 10px solid #ffffff;
  border-radius: 100%;
  z-index: 10;
}
.siteBanner .bannerImg .center-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.siteBanner .bannerImg .segments-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-0.9deg);
}
.siteBanner .bannerImg .segment {
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
}
.siteBanner .bannerImg .segment .hoverImg {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.siteBanner .bannerImg .segment:hover img {
  display: none;
}
.siteBanner .bannerImg .segment:hover .hoverImg {
  display: block;
  opacity: 1;
}
.siteBanner .bannerImg .segment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
/* Segment 1 - Revenue Accelerator (Top) */
.siteBanner .bannerImg .segment-1 {
  top: -2px;
  left: 50%;
  transform: rotate(1deg) translateX(-50%);
  width: 270px;
}
/* Segment 2 - Consulting & Training (Top Right) */
.siteBanner .bannerImg .segment-2 {
  top: 50px;
  right: -15px;
  width: 224px;
  transform: rotate(1deg);
}
/* Segment 3 - Marketing Program (Bottom Right) */
.siteBanner .bannerImg .segment-3 {
  bottom: 30px;
  right: -12px;
  width: 216px;
  transform: rotate(2deg);
}

/* Segment 4 - Navigator Marketplace (Bottom) */
.siteBanner .bannerImg .segment-4 {
  bottom: -12px;
  left: 50%;
  transform: rotate(2.5deg) translateX(-50%);
  width: 270px;
}

/* Segment 5 - DevSupport (Bottom Left) */
.siteBanner .bannerImg .segment-5 {
  bottom: 50px;
  left: -10px;
  width: 220px;
  transform: rotate(1deg);
}
/* Segment 6 - Capital Connect (Top Left) */
.siteBanner .bannerImg .segment-6 {
  top: 32px;
  left: -12px;
  width: 215px;
  transform: rotate(0deg);
}
.bannerFeatures {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  gap: 20px;
}
.bannerFeatures .card {
  background: #000;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 3px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.bannerFeatures .card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fff, #ccc, #fff);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bannerFeatures .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,255,255,0.2);
}
.bannerFeatures .card:hover::before {
  opacity: 1;
}
.bannerFeatures .card .card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 3px solid #000;
  box-shadow: 0 4px 10px rgba(255,255,255,0.3);
}
.bannerFeatures .card .card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerFeatures .card .card-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
}
.bannerFeatures .card .card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}
.solutionSec {
  background: #EB5034;
  padding: 5rem 0;
}
.solutionSec .sec-title {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.5rem;
}
.solutionSec .solutionList {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  margin: 0 -1rem;
  height: 100%;
}
.solutionSec .solutionList .item {
  width: 25%;
  padding: 0 1rem;
}
.solutionSec .solutionList .solutionCard {
  background: linear-gradient(141.56deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 69.59%, rgba(255, 255, 255, 0.4) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  gap: 20px;
  border: 2px solid #FFFFFF80;
  border-radius: 24px;
  box-shadow: 8px 8px 24px 0px #FFFFFF3D inset;
  box-shadow: -16px -16px 60px 0px #FFFFFF3D inset;
}
.solutionSec .solutionList .solutionCard .iconBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
}
.solutionSec .solutionList .solutionCard .iconBox img {
  display: block;
  max-height: 100px;
}
.solutionSec .solutionList .solutionCard h3 {
  font-size: 1.325rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.333;
  margin-bottom: 0;
}
.newsSec {
  background: #FFFFFF;
  padding: 5rem 0;
}
.newsSec .sec-title {
  font-size: 3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2.5rem;
}
.newsSec .newsList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1rem;
}
.newsSec .newsList .item {
  width: 33.333%;
  padding: 0 1rem;
}
.newsSec .newsList .newsCard {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.newsSec .newsList .newsCard .imgBox {
  display: block;
}
.newsSec .newsList .newsCard .imgBox img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.newsSec .newsList .newsCard .contentBox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.newsSec .newsList .newsCard .contentBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.newsSec .newsList .newsCard .contentBox-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsSec .newsList .newsCard .contentBox-text {
  font-size: .875rem;
  font-weight: 400;
  color: #000000;
}
.newsSec .newsList .newsCard h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  position: relative;
  padding-bottom: .5rem;
  margin-bottom: 0;
}
.newsSec .newsList .newsCard h3:after {
  content: "";
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 48px;
}
.newsSec .newsList .newsCard h4 {
  display: flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 400;
  color: #000000;
  line-height: 8px;
  gap: 8px;
  margin-bottom: 0;
}
.newsSec .newsList .newsCard h4 svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}
.newsSec .newsList .newsCard .contentBox-text p {
  margin-bottom: .5rem;
}
.newsSec .newsList .newsCard .contentBox-text p:last-child {
  margin-bottom: 0;
}
.newsSec .newsList .newsCard .btnGroup {
  display: block;
}
.newsSec .newsList .newsCard .btnGroup .btn {
  background: #EB5034;
  padding: .5rem 1rem;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  gap: 8px;
  border:1px solid #EB5034;
  border-radius: 50px;
  box-shadow: none;
  cursor: pointer;
}
.newsSec .newsList .newsCard .btnGroup .btn svg {
  width: 20px;
  height: 14px;
}
.newsLatter {
  background: #FFFFFF;
  padding: 1rem 0 5rem;
}
.newsLatter .sec-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2.5rem;
}
.newsLatter .flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.newsLatter .flexBox .item {
  flex: 0 0 50%;
  width: 50%;
}
.newsLatter .flexBox .item p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}
.newsLatter .newsLatterCard {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 32px;
}
.newsLatter .newsLatterCard .emaillist,
.newsLatter .newsLatterCard .es-field-wrap {
  width: 100%;
  margin-bottom: 0;
}
.newsLatter .newsLatterCard form {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 32px;
}
.newsLatter .newsLatterCard form label {
  margin-bottom: 0;
  width:100%;
}
.newsLatter .newsLatterCard .form-input,
.newsLatter .newsLatterCard .ig-es-form-field .es-field-label .ig-es-form-input {
  background: #ffffff;
  display: block;
  padding: .5rem 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #000000;
  width: 100%;
  height: 60px;
  border: 4px solid #ebecec;
  border-radius: 0;
  box-shadow: none;
}
.newsLatter .newsLatterCard .btn,
.newsLatter .newsLatterCard input[type="submit"]  {
  background: #EB5034;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  min-height: 60px;
  text-transform: uppercase;
  gap: 5px;
  border:1px solid #EB5034;
  border-radius: 5px;
  box-shadow: none;
  cursor: pointer;
}
.liveStreamSec {
  background: #000000;
  padding: 6rem 0;
}
.liveStreamSec .sec-title {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.5rem;
}
.liveStreamSec .LiveStreamCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.liveStreamSec .LiveStreamCard .videoBox {
  flex: 0 0 50%;
  width: 50%;
}
.liveStreamSec .LiveStreamCard .videoBox iframe {
  display: block;
  width: 100%;
  height: 300px;
}
.liveStreamSec .LiveStreamCard .content {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 24px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
}
.liveStreamSec .LiveStreamCard .content h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0;
}
.liveStreamSec .LiveStreamCard .content h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.333;
  margin-bottom: 1.5rem;
}
.liveStreamSec .LiveStreamCard .content h4 strong {
  display: block;
  font-weight: 600;
}
.liveStreamSec .LiveStreamCard .content .btnGroup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.liveStreamSec .LiveStreamCard .content .btnGroup .btn {
  background: #EB5034;
  padding: .5rem 1.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 18px;
  min-width: 260px;
  min-height: 66px;
  text-transform: uppercase;
  gap: 10px;
  border:1px solid #EB5034;
  border-radius: 50px;
  box-shadow: none;
  cursor: pointer;
}
.liveStreamSec .LiveStreamCard .content .btnGroup .btn svg {
  width: 42px;
  height: 42px;
}
.EventsHubSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 6rem;
}
.EventsHubSec .eventsInfoCard {
  display: flex;
  flex-direction: column;
  flex: 0 0 54%;
  width: 54%;
  gap: 40px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
}
.EventsHubSec .eventsInfoCard h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}
.EventsHubSec .eventsInfoCard p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0;
}
.EventsHubSec .eventsInfoCard p strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 600;
}
.EventsHubSec .eventsInfoCard .btnGroup {
  display: block;
}
.EventsHubSec .eventsInfoCard .btnGroup .btn {
  background: #EB5034;
  padding: .5rem 1.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 18px;
  min-width: 280px;
  min-height: 66px;
  text-transform: uppercase;
  gap: 10px;
  border:1px solid #EB5034;
  border-radius: 50px;
  box-shadow: none;
  cursor: pointer;
}
.EventsHubSec .eventsInfoCard .btnGroup .btn svg {
  width: 36px;
  height: 36px;
}
.EventsHubSec .eventsListCard {
  background: #ffffff;
  padding: 1.5rem;
  width: 46%;
  border-radius: 12px;
}
.EventsHubSec .eventsListCard h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #EB5034;
  margin-bottom: 2rem;
}
.EventsHubSec .eventsListCard ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 24px;
}
.EventsHubSec .eventsListCard li {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}
.EventsHubSec .eventsListCard li h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color:#000000;
  margin-bottom: 0;
}
.EventsHubSec .eventsListCard li p {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 40px 0;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%; /* Optional: makes icons round if images are square */
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
@media screen and (max-width:1440px) {
  .siteBanner,
  .solutionSec,
  .newsSec,
  .liveStreamSec {
    padding:3.75rem 0;
  }
}
@media screen and (max-width:1366px) {
  .siteBanner .bannerText {
    flex: 0 0 48%;
    width: 48%;
  }
  .siteBanner .bannerImg {
    width: 536px;
    height: 536px;
  }
  .siteBanner .bannerImg .center-circle {
    width: 240px;
    height: 240px;
  }
  /* Segment 1 - Revenue Accelerator (Top) */
  .siteBanner .bannerImg .segment-1 {
    top: 4px;
    left: 50%;
    transform: rotate(1.5deg) translateX(-50%);
    width: 240px;
  }
  /* Segment 2 - Consulting & Training (Top Right) */
  .siteBanner .bannerImg .segment-2 {
    top: 50px;
    right: 2px;
    width: 190px;
    transform: rotate(1deg);
  }
  /* Segment 3 - Marketing Program (Bottom Right) */
  .siteBanner .bannerImg .segment-3 {
    bottom: 50px;
    right: 4px;
    width: 175px;
    transform: rotate(0deg);
  }

  /* Segment 4 - Navigator Marketplace (Bottom) */
  .siteBanner .bannerImg .segment-4 {
    bottom: -8px;
    left: 50%;
    transform: rotate(2.5deg) translateX(-50%);
    width: 250px;
  }

  /* Segment 5 - DevSupport (Bottom Left) */
  .siteBanner .bannerImg .segment-5 {
    bottom: 54px;
    left: -2px;
    width: 190px;
  }
  /* Segment 6 - Capital Connect (Top Left) */
  .siteBanner .bannerImg .segment-6 {
    top: 40px;
    left: -8px;
    width: 190px;
    transform: rotate(0deg);
  }
}
@media screen and (max-width:1199px) {
  .siteBanner,
  .solutionSec,
  .newsSec,
  .liveStreamSec {
    padding: 3rem 0;
  }
  .siteBanner .flexBox {
    gap: 20px;
  }
  .siteBanner .bannerText {
    flex: 0 0 42%;
    width: 42%;
  }
  .siteBanner .bannerText .title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  .siteBanner .bannerText .sub-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .siteBanner .bannerText p {
    font-size: 1.25rem;
  }
  .siteBanner .bannerText .btnGroup .btn {
    font-size: 1.25rem;
  }
  .solutionSec .sec-title,
  .newsSec .sec-title,
  .liveStreamSec .sec-title,
  .EventsHubSec .eventsListCard h3 {
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
  }
  .newsLatter .sec-title {
    font-size: 1.75rem;
  }
  .newsLatter .newsLatterCard,
  .newsLatter .newsLatterCard form {
    gap: 20px;
  }
  .liveStreamSec .LiveStreamCard .content,
  .EventsHubSec .eventsListCard ul  {
    gap: 26px;
  }
  .liveStreamSec .LiveStreamCard .content h4 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
  }
  .EventsHubSec .eventsInfoCard {
    gap: 12px;
  }
  .EventsHubSec .eventsInfoCard h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .EventsHubSec .eventsInfoCard p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .EventsHubSec .eventsInfoCard p strong {
    font-size: 1.375rem;
  }
  .solutionSec .solutionList .solutionCard h3,
  .EventsHubSec .eventsListCard li h4 {
    font-size: 1.25rem;
  }

}
@media screen and (max-width:992px) {
  .siteBanner .flexBox,
  .newsLatter .flexBox {
    flex-direction: column;
  }
  .siteBanner .bannerText,
  .newsLatter .flexBox .item,
  .newsLatter .newsLatterCard {
    flex: 0 0 100%;
    width: 100%;
  }
  .solutionSec .solutionList .item,
  .newsSec .newsList .item {
    width: 50%;
  }
  .newsSec .newsList .item  {
    margin-bottom: 1.875rem;
  }
  .newsSec .newsList .newsCard .contentBox {
    gap: 16px;
  }
  .newsLatter {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width:767px) {
  .siteBanner,
  .solutionSec,
  .newsSec,
  .liveStreamSec {
    padding: 2.5rem 0;
  }
  .siteBanner .bannerText .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .siteBanner .bannerText .sub-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .siteBanner .bannerText p {
    font-size: 1.125rem;
  }
  .siteBanner .bannerText .btnGroup .btn {
    font-size: 1.125rem;
  }
  .siteBanner .bannerImg {
    display: none;
  }
  .bannerFeatures {
    display: grid;
  }
  .bannerFeatures .card .logo-circle {
    width: 150px;
    height: 150px;
  }
  .bannerFeatures .card .logo-circle h1 {
    font-size: 1.5rem;
  }
  .bannerFeatures .card .logo-circle .ie {
    font-size: 2.25rem;
  }
  .bannerFeatures .card  {
    padding: 1.5rem 1.25rem;
  }
  .bannerFeatures .card .card-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
    top: 15px;
    right: 15px;
  }
  .bannerFeatures .card .card-icon {
    width: 60px;
    height: 60px;
  }
  .bannerFeatures .card .card-title {
    font-size: 1.125rem;
  }
  .solutionSec .solutionList .item,
  .newsSec .newsList .item {
    width: 100%;
  }
  .solutionSec .sec-title,
  .newsSec .sec-title,
  .liveStreamSec .sec-title,
  .EventsHubSec .eventsListCard h3 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }
  .solutionSec .solutionList .solutionCard {
    min-height: 1px;
  }
  .solutionSec .solutionList .solutionCard .iconBox {
    height: auto;
  }
  .solutionSec .solutionList .solutionCard h3,
  .EventsHubSec .eventsListCard li h4 {
    font-size: 1.25rem;
  }
  .newsSec .newsList .item:last-child  {
    margin-bottom: 0;
  }
  .newsLatter {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
  .newsLatter .newsLatterCard,
  .newsLatter .newsLatterCard form {
    flex-direction: column;
    align-items: start;
  }
  .newsLatter .newsLatterCard .btn,
  .newsLatter .newsLatterCard input[type="submit"] {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .newsLatter .sec-title {
    font-size: 1.5rem;
    margin-bottom: .875rem;
  }
  .liveStreamSec .LiveStreamCard {
    flex-direction: column;
  }
  .EventsHubSec {
    flex-direction: column;
    padding-top: 3.5rem;
  }
  .liveStreamSec .LiveStreamCard .videoBox,
  .liveStreamSec .LiveStreamCard .content,
  .EventsHubSec .eventsInfoCard,
  .EventsHubSec .eventsListCard {
    flex: 0 0 100%;
    width: 100%;
  }
  .liveStreamSec .LiveStreamCard {
    gap: 24px;
  }
  .EventsHubSec .eventsInfoCard {
    gap: 0;
  }
  .liveStreamSec .LiveStreamCard .content,
  .EventsHubSec .eventsListCard ul  {
    gap: 14px;
  }
  .liveStreamSec .LiveStreamCard .content h4 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
  }
  .EventsHubSec {
    gap: 40px;
  }
  .EventsHubSec .eventsInfoCard h2 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  .EventsHubSec .eventsInfoCard p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .EventsHubSec .eventsInfoCard p strong {
    font-size: 1.375rem;
  }
}