:root {
  /* --light: #F3F6F8; */
  --text-color: #111;
  --chaleur-red: #97252C;
  --hind: "Hind", sans-serif;
  --poppins: "Poppins", sans-serif;
}

/* ----- */
/* setup */
/* ----- */
.skip-to-main-content {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 1em;
  background-color: black;
  color: #fff;
  opacity: 0;
}

.skip-to-main-content:focus {
  left: 50%;
  top: 1%;
  transform: translateX(-50%);
  opacity: 1;
  border: 1px solid red;
}
html{
  height: 100%;
}
body {
  min-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: var(--hind);
  display: flex;
  flex-direction: column;
}
body > * {
    flex-grow: 0;
    flex-shrink: 0;
}
body > main {
    flex-grow: 1;
}
h1, .h1, h2, .h2, h3, .h3,
h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--poppins);
  font-weight: 600;
}

body a {
  text-decoration: none;
}

.row-gap-24 {
  row-gap: 24px;
}

.row-gap-64 {
  row-gap: 64px;
}

.column-gap-24 {
  column-gap: 24px;
}

.mw-280 {
  max-width: 280px;
}

.mw-385 {
  width: 100%;
  max-width: 385px;
}

.mw-480 {
  width: 100%;
  max-width: 480px;
}

.mw-lg-480 {
  width: 100%;
}

.mw-576 {
  width: 100%;
  max-width: 576px;
}

.mw-lg-576 {
  width: 100%;
}

.mw-768 {
  width: 100%;
  max-width: 768px;
}

.mw-991 {
  width: 100%;
  max-width: 991px;
}

.mw-lg-768 {
  width: 100%;
}

.mw-1024 {
  max-width: 1024px;
}

.section-p {
  padding-top: 64px;
  padding-bottom: 64px;
}

.single-p {
  padding-bottom: 64px;
}

.section-p p,
.single-p p {
  font-size: 16px;
  line-height: 24px;
}

.bg-chaleur {
  background-color: var(--chaleur-red);
}

/* ------- */
/* buttons */
/* ------- */
.chaleur-red-btn {
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--chaleur-red);
  /* padding: 18px 41px; */
  padding: 12px 18px;
  border: 2px solid var(--chaleur-red);
}

.chaleur-red-btn i {
  color: #ffffff;
}

.chaleur-red-btn:hover i {
  color: var(--chaleur-red);
}


.chaleur-red-btn:hover,
.btn.chaleur-red-btn:active,
.chaleur-red-btn:focus-visible {
  color: var(--chaleur-red);
  background-color: #ffffff;
  border: 2px solid var(--chaleur-red);
}

.chaleur-outline-btn:hover i {
  color: #FFF;
}

.chaleur-outline-btn {
  color: var(--chaleur-red);
  font-weight: 600;
  border-radius: 9999px;
  background-color: #ffffff;
  /* padding: 18px 41px; */
  padding: 12px 18px;
  border: 2px solid var(--chaleur-red);
}

.chaleur-outline-btn i {
  color: var(--chaleur-red)
}

.chaleur-outline-btn:hover,
.btn.chaleur-outline-btn:active,
.chaleur-outline-btn:focus-visible {
  color: #fff;
  background-color: var(--chaleur-red);
  border: 2px solid var(--chaleur-red);
}

/* section divider */
.section-divider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-divider div {
  height: 1px;
  width: 100%;
  max-width: 1300px;
  padding: 0px 32px;
  align-self: center;
  background-color: #EAECF0;
}

/* contact top bar */
.contact-top-bar {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
}

.contact-top-bar .social-media a {
  color: #898989;
  font-size: 24px;
  transition: color 0.2s ease;
  line-height: 24px;
}

.contact-top-bar .social-media a:hover {
  color: var(--chaleur-red);
}

.contact-top-bar .chaleur-red-btn {
  padding: 18px 41px;
  text-transform: uppercase;
}



/* ------ */
/* navbar */
/* ------ */
.navbar-brand {
  width: 145px;
  flex-shrink: 0;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chaleur-nav {
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.15), 0px 1px 2px 0px rgba(16, 24, 40, 0.1);
  background-color: #fff;
  margin-top: 128px;
  transition: all 0.2s ease;
}

.chaleur-nav.scrolled {
  background-color: #fff;
  margin-top: 0;
}

.nav-link {
  color: #2D293A;
  font-family: var(--poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.72px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.chaleur-nav .nav-link.active,
.nav-link:hover,
.nav-link:focus {
  color: var(--chaleur-red);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(151, 37, 44, 0.35);
}

.chaleur-nav .dropdown-menu {
  border-radius: 0;
}

.chaleur-nav .dropdown-item {
  font-weight: 600;
  font-size: 15px;
  color: #212529;
  padding: .8rem 1.5rem;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
}

.chaleur-nav .dropdown-item:hover {
  background: var(--chaleur-red);
  color: #fff;
}

.chaleur-nav .dropdown-item.active,
.chaleur-nav .dropdown-item:active {
  color: var(--chaleur-red);
  background: #f7f7f7;
}

.chaleur-nav .dropdown-item:focus,
.chaleur-nav .dropdown-item:focus-visible {
  color: #16181b;
  background-color: #e9ecef;
}

.navbar-toggler {
  padding: 0;
  border: none;
  font-size: 32px;
  color: var(--chaleur-red);
}

.chaleur-nav .offcanvas.show .nav-link {
  font-size: 16px;
}

.chaleur-nav .offcanvas.show ul {
  border: none;
}

.chaleur-nav .offcanvas.show .dropdown-item {
  padding: 0.5rem 1rem;
}

/* banner */
.page-title h1 {
  margin-top: 111px;
  padding: 32px 80px;
  gap: 10px;
  background-color: #97252C;
  color: #fff;
}

/* imagine living here */
.imagine-living-carousel {
  align-content: center;
}

.imagine-living-here .carousel-inner {
  width: 100%;
  max-width: 576px;
  /* height: 654px; */
  height: 320px;
  margin-left: auto;
  margin-right: auto;
}

.imagine-living-here .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}

.imagine-living-here .carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

/* homepage carousel */
.home-carousel-container {
  margin-top: 87px;
}

.homepageCarousel .carousel-inner {
  height: 500px;
}

.homepageCarousel .carousel-item {
  height: 100%;
}

.homepageCarousel .carousel-caption {
  top: 50%;
  left: 50%;
  bottom: unset;
  transform: translate(-50%, -50%);
  width: 70%;
}

.homepageCarousel .carousel-caption h1 {
  font-size: 32px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

/* Entrepenurial Hub white */
.white-hub {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 48px;
  justify-content: center;
  margin-top: 16px;
}

.white-hub-item {
  display: flex;
  min-width: 280px;
  max-width: 384px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 0 0;
  position: relative;
}

.white-hub-item div {
  padding: 52px 24px 32px 24px;
  border-radius: 16px;
  background-color: #F9FAFB;
  height: 270px;
}

.white-hub-item i {
  width: 56px;
  height: 56px;
  color: #fff;
  border-radius: 10px;
  background-color: #97252C;
  text-align: center;
  align-content: center;
  position: absolute;
  top: -28px;
  font-size: 24px;
}

.white-hub-item h3 {
  color: #101828;
  font-size: 24px;
  font-weight: 600;
}

.white-hub .white-hub-item p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Entrepenurial Hub red */
.red-hub .bg-chaleur {
  padding: 64px 0px 160px 0px;
}

.bg-chaleur .section-title h2,
.bg-chaleur .section-title p {
  color: #ffffff;
}

.red-hub .hub-img {
  transform: translateY(-96px);
}

.hub-img-container {
  background-image: url("/assets/frontend/red-hub-image-46334670afeb737cd3b25f79cdec93ab5d78eae0425612a2529568595403d3a6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 24px 16px;
}

.hub-img-container .img-container-item {
  padding: 32px 24px;
  text-align: center;
  min-width: 265px;
  flex: 1 0 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(8px);
}

.bg-chaleur .chaleur-red-btn {
  border: 2px solid #ffffff;
}


/* ------------------- */
/* Latest news subpage */
/* ------------------- */
.subpage-banner {
  margin-top: 88px;
  padding: 32px;
}

.subpage-banner h1 {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.news-item {
  width: 100%;
  max-width: 385px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.news-item img {
  border-radius: 16px;
  width: 100%;
  height: 200px;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  object-fit: cover;
}

.news-item span {
  color: #475467;
  font-family: var(--hind);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 8px;
}

.news-item h2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: #101828;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.news-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: #475467;
  text-overflow: ellipsis;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.news-item i {
  color: #FFF;
}

/* //////// */
.pivoting-images .pivoting-image-container {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 32px;
}

.section.pivoting-images .pivot-card-item {
  height: 290px;
  perspective: 1000px;
  width: 350px;
  margin-bottom: 1rem;
}

.section.pivoting-images a.btn,
.section.pivoting-images p {
  background-color: var(--chaleur-red);
  color: white;
}

.section.pivoting-images p {
  padding: 1rem 0;
  margin-bottom: 0;
  text-align: center;
  border-radius: 0 0 8px 8px;
}


.pivot-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 8px;
  border: 1px solid black;
  color: #FFF;
}

.pivot-card-item:hover .pivot-card-inner {
  transform: rotateY(180deg);
}

.pivot-card-front,
.pivot-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pivot-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: white;
  border-radius: 8px;
}

.pivot-card-back img {
  padding: 1rem;
}

.pivot-card-front img,
.pivot-card-back img {
  width: 100%;

}

.pivot-card-front img {
  border-radius: 8px 8px 0 0;
}


/*imagine working here*/


.desk-img-container {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}

.desk-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  flex: 1 0 0;
  max-width: 384px;
  min-width: 280px;
}

.work-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.work-item i {
  width: 48px;
  height: 48px;
  background-color: var(--chaleur-red);
  color: #ffffff;
  align-content: center;
  font-size: 24px;
  border-radius: 12px;
  text-align: center;
}

/*imagine studying here*/
.studying-img-container {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
}

.studying-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*imagine invesitng here*/
.handshake-img-container {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
}

.handshake-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* economic synopsis*/
.econ-list h4 {
  color: var(--chaleur-red);
  /* Make sure --chaleur-red is defined elsewhere */
  font-size: 20px;
}

.econ-list ul {
  padding-left: 0px;
}

.econ-list li {
  list-style-type: none;
  font-size: 16px;
}

.econ-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 48px;
  column-gap: 32px;
  justify-content: center;
}

.econ-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  flex: 1 0 0;
  max-width: 380px;
  min-width: 280px;
  text-align: center;
}


.econ-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 8px;
}


.econ-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #475467;
}

.econ-item i {
  color: var(--chaleur-red);
  font-size: 72px;
}

.line .container {
  height: 1px;
  background-color: #EAECF0;
}

/*Manufacturing*/

.manufacturing-container {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.manufacturing-item {
  display: flex;
  row-gap: 36px;
}

.manufacturing-img-container {
  border-radius: 16px;
  height: 200px;
  overflow: hidden;
  max-width: 576px;
}

.manufacturing-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*Tourism and Culture*/

.tourism-and-culture-container {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.tourism-and-culture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourism-and-culture-img-container {
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}



.tourism-segment {
  display: flex;
  flex-direction: column;
  background-color: #F9FAFB;
  gap: 32px;
  padding: 32px;
  border-radius: 16px;
}

.tourism-segment h3 {
  font-size: 20px;
  text-align: center;
}

/* //////// */

.trade-export-section {
  padding: 5rem 0;
}

.trade-export-section h2 {
  font-weight: 600;
}

.trade-export-section .content-row {
  margin-bottom: 4rem;
}


.trade-export-section .content-row:last-child {
  margin-bottom: 0;
}

.trade-and-export-container {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.trade-and-export-item {
  display: flex;
  row-gap: 36px;
}

.trade-and-export-img-container {
  border-radius: 16px;
  max-height: 400px;
  overflow: hidden;
  max-width: 576px;
}

.trade-and-export-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}



.trade-export-section p {
  color: #475467;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trade-export-section p:last-child {
  margin-bottom: 0;
}



.dc-table-container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.dc-table-header {
  background-color: #D6D8DB;
  border-bottom: 1px solid #DBDBDB;
  padding: 0.75rem;
}

.tb-middle,
.tb-right {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 20px;
}

.dc-table-item i {
  display: inline-block;
  font-size: 14px;
  width: 20px;
  height: 20px;
  text-align: center;
  padding-right: 24px;
}



.tb-left {
  font-weight: bold;
}

.dc-table-item:nth-child(even) {
  background-color: #F9FAFB;
}

.dc-table-item {
  padding: 0.75rem;
}

/*Our Services Sections*/

.service-icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px 32px;
}

.service-icon-item {
  display: flex;
  min-width: 280px;
  max-width: 384px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  text-align: center;
}

.service-icon-item i {
  width: 48px;
  height: 48px;
  font-size: 20px;
  align-content: center;
  background-color: var(--chaleur-red);
  color: #FFF;
  border-radius: 10px;
}

/*qualified workforce*/
.workers-img-container {
  max-height: 540px;
  border-radius: 16px;
  overflow: hidden;
}

.workers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*advisory committee*/

.group-table-img-container {
  display: flex;
  max-width: 1216px;
  max-height: 516px;
  padding: 0px;
  overflow: hidden;
  border-radius: 16px;
}

.group-table-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committee-icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 32px;
}

.committee-icon-item {
  display: flex;
  min-width: 280px;
  max-width: 384px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  text-align: center;
}


.committee-icon-item i {
  background-color: #F9FAFB;
  color: #475467;
  font-size: 30px;
  text-align: center;
  border-radius: 9999px;
  width: 96px;
  height: 96px;
  align-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}


.com-name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.com-title {
  color: #475467;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}





.service-icon-item p {
  font-size: 20;
  line-height: 1.4;
  font-weight: 600;
}


.imm-icon-item i {
  background: var(--chaleur-red);
  color: #ffffff;
  width: 48px;
  height: 48px;
  font-size: 24px;
  align-content: center;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.imm-img-container {
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}

.imm-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


.info-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background-color: #F9FAFB;
  border-radius: 13px;
  min-width: 280px;
  max-width: 636px;
  /* height: 185px; */
  min-height: 185px;
  flex: 1 0 0;
}

.info-item a,
.info-item i {
  font-size: 16px;
  font-weight: 600px;
  color: var(--chaleur-red);
  font-weight: bold;
}


.info-item h4 {
  font-size: 20px;
  font-weight: 600;
}

/*team*/

.team-container {
  margin-top: 64px;
  gap: 48px;
}

.team-items {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  flex: 1 0 0;
  min-width: 280px;
  max-width: 384px;
}

.team-items img {
  /* margin-left: auto;
  margin-right: auto; */
  background-color: #CEBBC9;
  border-radius: 9999px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  width: 192px;
  height: 192px;
}

/* .team-items img{
  border-radius: 0;
  object-fit: contain;
} */


.team-items i {
  min-width: 24px;
  min-height: 24px;
}

.team-items h4 {
  color: #101828;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.team-items h5 {
  color: #475467;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.team-items a {
  color: var(--chaleur-red);
  position: relative;
}

.team-contact {
  font-size: 24;
  background-color: #F9FAFB;
  border-radius: 16px;
  padding: 16px;
}




/* footer */

footer{
  border-top: 3px solid var(--chaleur-red);
}

footer.footer-section{
  padding-top: 16px;
  padding-bottom: 16px;
}

footer a, footer i{
  color: #111;
  text-align: center;
}

.footer-img-container{
  max-width: 100%;
  max-height: 141;
}

.footer-img-container img{
  width: 200px;
}

.footer-menu a{
  position: relative;
  font-size: 14px;
}

.footer-menu a:hover{
  color: var(--chaleur-red);
}

.footer-menu a::after{
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--chaleur-red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.footer-menu a:hover::after{
  transform: scaleX(1);
}

.footer-btm img {
  width: 150px;
}

.footer-btm {
  font-size: 14px;
}

.footer-section {
  justify-content: center;
  text-align: center;
}

.footer-section h4 {
  font-size: 21px;
}

/* 404 */
.not-found-page h2 {
  font-size: 32px;
}

.not-found-page .btn-link {
  text-decoration: none;
  color: var(--chaleur-red);
  font-weight: 500;
  font-size: 24px;
  position: relative;
}

.not-found-page .btn-link::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--chaleur-red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.not-found-page .btn-link:hover::after {
  transform: scaleX(1);
}

.not-found-page .btn-link:hover::after {
  transform: scaleX(1);
}

/* news details page */
.news-detail-date {
  background-color: #f7f7f7;
  padding: 8px 12px;
  color: var(--chaleur-red);
  border-radius: 9999px;
  font-size: 14px;
}

/* event details page */
.event-details-section {
  padding-top: 20vh;
  padding-bottom: 64px;
}

.details-page-title h1 {
  color: #101828;
  font-size: 32px;
}

.details-page-segment p {
  color: #475467;
  font-size: 18px;
}

.details-page-info a,
.details-page-info p  {
  color: #475467;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.details-page-info a:hover {
  color: var(--chaleur-red);
}

.details-page-info span {
  font-size: 18px;
  color: #475467;
  min-width: 80px;
  flex-shrink: 0;
  font-weight: 700;
}

.details-page-info a i {
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: var(--chaleur-red);
  color: #EFF4FF;
  border: 1px solid var(--chaleur-red);
  border-radius: 9999px;
  text-align: center;
  align-content: center;
  transition: background-color 0.2s ease;
}

.details-page-info a:hover i {
  background-color: transparent;
  color: var(--chaleur-red);
}

.va-img-showcase-container {
  /* height: 400px; */
  height: 240px;
  overflow: hidden;
  width: 100%;
}

.va-img-showcase-2 {
  height: 100%;
  width: 100%;
}

.va-img-showcase-2 div {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.va-img-showcase-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-select-2 {
  width: 100%;
  /* height: 100px; */
  height: 80px;
  margin-top: 16px;
  column-gap: 8px;
}

.img-select-2 .img-item {
  width: 100%;
  max-width: 140px;
  height: 100%;
  cursor: pointer;
  border: 5px solid transparent;
  transition: border-color 0.2s ease;
}

.img-select-2 .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-item.selected {
  border-color: var(--chaleur-red);
}

.img-item:hover {
  border-color: var(--chaleur-red);
}

/* events calendar */
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  background-color: var(--chaleur-red);
  color: #ffffff;
  padding: 4px 16px;
}

.fc .fc-toolbar-title {
  font-size: 18px;
  /* margin-left: 16px; */
}

.fc .fc-button-primary {
  background-color: transparent;
  border-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fc .fc-button-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--chaleur-red);
}

.fc .fc-button-group .fc-button-primary {
  background-color: transparent;
  border-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fc .fc-button-group .fc-button-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--chaleur-red);
}

.fc .fc-button:disabled {
  opacity: 1;
}

.fc .fc-button-primary:disabled {
  background-color: transparent;
  border-color: transparent;
}

.fc .fc-button-primary:disabled:hover {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}

.fc-col-header-cell-cushion {
  color: #101828;
}

.fc-daygrid-day-number {
  color: #475467;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(151, 37, 44, 0.15);
}

.fc-event-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

img.no-img-placeholder {
  object-fit: contain;
  padding: 10px;
}

/* ------------ */
/* Contact page */
/* ------------ */
.contact-page h2{
  font-size: 24px;
  line-height: 32px;
}
.contact-page span{
  font-size: 18px;
  line-height: 28px;
  color: var(--chaleur-red);
}
.contact-page input {
    padding: 10px 14px;
}
.contact-page .form-control:focus,
.contact-page .form-control:focus-visible {
    border-color: var(--chaleur-red);
    box-shadow: 0 0 0 .25rem rgba(151, 37, 44, 0.25);
}
.contact-page textarea{
  height: 150px;
  resize: none;
}
.contact-page label{
  font-weight: 500;
}
.contact-page .contact-info{
  margin-top: 30px;
}
.contact-page .location-info{
  list-style: none;
  padding-left: 0;
}
.contact-page .location-info li{
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  justify-content: flex-start;
  font-size: 16px;
}
.contact-page .location-info i{
  font-size: 24px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  text-align: center;
}
.contact-page .location-info a{
  color: var(--chaleur-red);
  text-decoration: underline;
}
.contact-page .social-media{
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}
.contact-page .social-media a{
  display: block;
  background-color: var(--chaleur-red);
  color: #ffffff;
  border: 1px solid var(--chaleur-red);
  width: 36px;
  height: 36px;
  align-content: center;
  text-align: center;
  font-size: 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.contact-page .social-media a:hover{
  background-color: transparent;
  color: var(--chaleur-red);
}
.contact-page .social-media a i{
  width: 24px;
  height: 24px;
}


.search-bar-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.search-bar{
  border: solid 1px;
  border-radius: 55px;
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.search-bar::placeholder{
  font-size: 16px;
}

.search-bar:focus-visible{
  border-color: var(--chaleur-red);
}


/* ------------ */
.event-list-container{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.event-list-item a{
  border: 2px solid var(--chaleur-red);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-content, .event-list-item-btn{
  padding: 16px;
  align-content: center;
  color: var(--text-color);
}
.event-list-item-btn div{
  white-space: nowrap;
  padding: 8px 12px;
  background-color: var(--chaleur-red);
  color: #fff;
  border-radius: 9999px;
  text-align: center;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}
.event-list-item-btn{
  border-top: 2px solid var(--chaleur-red);
  transition: background-color 0.2s ease;
}
.event-list-item a:hover .event-list-item-btn{
  background-color: var(--chaleur-red);

}
.event-list-item a:hover .event-list-item-btn div{
  background-color: #ffffff;
  color: var(--chaleur-red);
}
.event-list-item .event-content h2{
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-list-item .event-content p{
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #475467;
}
.event-list-item .event-content span{
  color: #475467;
  align-content: center;
  display: block;
  padding-bottom: 4px;
}
.event-list-item .event-content i{
  color: var(--chaleur-red);
  font-size: 18px;
}

/* large image container */
.large-img-container{
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    background-color: #F9FAFB;
}
.large-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-items img{
  border-radius: 0;
  height: 247px;
  object-fit: cover;
}
@media screen and (max-width:374px) {
    .section.pivoting-images .pivot-card-item {
        height: 253px;
        perspective: 1000px;
        width: 350px;
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 375px) {
    .white-hub-item div {
        height: 250px;
    }

    .news-item img {
        height: 240px;
    }

    img.no-img-placeholder {
        padding: 20px;
    }

    /* large image */
    .desk-img-container{
        height: 240px;
    }
}


/* Phablet */
@media screen and (min-width: 425px) {

    /* Entrepenurial Hub red */
    .hub-img-container {
        padding: 24px 32px;
    }

    .service-icon-item {
        min-width: 320px;
    }

    /* large image */
    .desk-img-container{
        height: 280px;
    }

    /* manufacturing image */
    .manufacturing-img-container{
        height: 320px;
    }

    .large-img-container{
        height: 320px;
    }
}    


@media screen and (max-width: 575px) {}

@media screen and (min-width: 576px) {

    /* Entrepenurial Hub red */
    .hub-img-container .img-container-item {
        min-width: 400px;
    }

    /* large image */
    .desk-img-container {
        height: 320px;
    }

    /*events*/
    .search-bar-container button {
        max-width: 128px;
    }

    .search-bar {
        max-width: 280px;
    }

    .event-result-container {
        flex-direction: row;
    }

    .event-result-title {
        max-width: 190px;
        border-right: 3px solid var(--chaleur-red);
        border-bottom: none;
    }

    .event-result-info {
        max-width: 190x;
        border-right: 3px solid var(--chaleur-red);
        border-bottom: none;
    }

    .event-result-button {
        max-width: 190px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) {
    .section-p {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .single-p {
        padding-bottom: 96px;
    }

    .section-p p,
    .single-p p {
        font-size: 18px;
        line-height: 28px;
    }

    .row-gap-64 {
        row-gap: 96px;
    }

    .work-item p {
        font-size: 16px;
        line-height: 24px;
    }


    /* navigation bar */
    .chaleur-nav {
        background-color: #fff;
        margin-top: 88px;
        transition: all 0.2s ease;
    }

    /* carousel */
    .homepageCarousel .carousel-caption h1 {
        font-size: 40px;
    }

    /* section title */
    .section-title h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .section-title p {
        font-size: 18px;
        line-height: 28px;
    }

    /* Entrepenurial Hub white */
    .white-hub-item {
        min-width: 300px;
    }

    /* Entrepenurial Hub red */
    .red-hub .bg-chaleur {
        padding: 96px 0px 160px 0px;
    }

    .hub-img-container {
        padding: 64px;
    }

    /* subpage banner */
    .subpage-banner h1 {
        font-size: 40px;
    }

    /* news item */
    .news-item h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .trade-and-export-img-container {
        margin-left: auto;
        margin-right: auto;
    }

    /* 404 */
    .not-found-page h2 {
        font-size: 48px;
    }

    /* large image */
    .desk-img-container{
        height: 380px;
    }

    /* image slider events */
    .event-details-section{
        padding-top: 20vh;
        padding-bottom: 96px;
    }

    .va-img-showcase-container{
		height: 400px;
		overflow: hidden;
		width: 100%;
	}

    .img-select-2{
		height: 100px;
	}

    footer.footer-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    /* team contact */
    .team-contact{
        padding: 48px;
    }

    .imagine-living-here .carousel-inner{
        height: 500px;
    }

    /* manufacturing image */
    .manufacturing-img-container{
        height: 400px;
    }

    /* Tourism and culture */
    .tourism-segment{
        padding: 64px;
        border-radius: 16px;
    }

    .tourism-segment h3{
        font-size: 24px;
    }

    /* contact page */
    .contact-page h2 {
        font-size: 30px;
        line-height: 38px;
    }

    /*events*/
    .search-bar-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 24px;
    }

    .event-list-item-btn {
        border-top: none;
        border-left: 2px solid var(--chaleur-red);
    }

    .event-list-item a {
        flex-direction: row;
    }

    .event-list-item .event-content p{
        font-size: 16px;
        line-height: 24px;
    }

    .large-img-container{
        height: 400px;
    }    
}

@media screen and (max-width: 768px) {

    .footer-section {
        justify-content: center;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 21px;
    }
}


/* Laptop */
@media screen and (min-width: 992px) {
    .mw-lg-480{
        max-width: 480px;
    }
    
    .mw-lg-576 {
        max-width: 576px;
    }

    .mw-lg-768 {
        max-width: 768px;
    }

    .homepageCarousel .carousel-caption h1 {
        font-size: 64px;
    }

    .hub-img-container .img-container-item {
        min-width: 280px;
        max-width: 385px;
    }

    /* news item */
    .news-item img {
        height: 200px;
    }

    img.no-img-placeholder {
        padding: 30px;
    }

    /*Distance Chart*/
    .dc-table-item {
        display: table-row;
        border: none;
        margin: 0;
        font-style: normal;
    }

    .dc-table-item div {
        display: table-cell;
        padding: 0.75rem;
        border: 1px solid #ddd;
    }

    .tb-middle,
    .tb-right {
        font-style: normal;
    }

    .tb-left {
        font-weight: normal;
    }


    .dc-table-item i {
        display: none;
    }


    .dc-table-header {
        display: table-row;
        font-style: none;
    }

    .dc-table-header div {
        display: table-cell;
        padding: 0.75rem;
        font-weight: bold;
        border-right: 1px solid white;
        font-style: normal;
    }

    .dc-table-container {
        display: table;
        width: 100%;
        border-collapse: collapse;
    }

    /* trade and export */
    .trade-and-export-img-container {
        margin-left: 0;
        margin-right: 0;
    }

    /* large image */
    .desk-img-container{
        height: 420px;
    }

    .imagine-living-here .carousel-inner{
        height: 654px;
    }

    /* pivoting images */
    .pivoting-images .pivoting-image-container{
        justify-content: space-evenly;
    }

    .large-img-container{
        height: 654px;
    }    
}

/* Small screen */
@media screen and (min-width: 1200px) {
    .navbar-brand {
        width: 200px;
        flex-shrink: 0;
    }

    .nav-link {
        font-size: 15px;
    }

    .home-carousel-container,
    .subpage-banner {
        margin-top: 111px;
    }

    /* news item */
    .news-item img {
        height: 240px;
    }

    img.no-img-placeholder {
        padding: 40px;
    }

    /* large image */
    .desk-img-container{
        height: 516px;
    }

    .pivoting-images .pivoting-image-container{
        justify-content: space-between;
    }
}

/* Large screen */
@media screen and (min-width: 1400px) {

    /* news item */
    .news-item img {
        height: 270px;
    }

    img.no-img-placeholder {
        padding: 60px;
    }

    .committee-icon-item{
        min-width: 340px;
    }
}

/* ultra large */
@media screen and (min-width:1536px) {}



/*Styles*/

.econ-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #475467;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */


.reverse-string {
    direction: rtl;
    unicode-bidi: bidi-override;
}

#submit-loading {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    background: rgba(0, 0, 0, .4);
    margin: 0;
    padding: 0;
    z-index: 9999;
}

#submit-loading i {
    margin-top: 200px;
    position: relative;
    color: white;
    font-size: 3em;
    color: white;
}

.emoji-img-inline {
    width: 1em;
}

.cta-caption.mb-5 h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    text-transform: none;
}

@media (max-width: 767px) {
    .cta-caption.mb-5 h2 {
        font-size: 40px;
    }
}

p:empty {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
}
