@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap");

:root {
  --primary-text-color: #0000;
  --main-text-color: #fff;
  --main-font: "Cairo", sans-serif;
  --English-font: "Poppins", sans-serif;
  --primary-green: #046A37;
  --secondary-title-size: 2rem;
  --medium-title-size: 1.75rem;
  --small-title-size: 1.5rem;
  --title-letter-spacing: 0.02rem;
  --secondery-color: rgba(195, 156, 89, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body {
  overflow-x: hidden;
}

.flag-icon {
  position: absolute;
  bottom: 10;       /* position at bottom */
  left: 10;         /* position at left */
  height: 18px;    /* adjust flag size */
}

.logo-container {
  position: relative;
  display: inline-block;
}

.pdf-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 0;
}

.pdf-ticker-container h1 {
  font-size: 20px;
  padding: 5px 15px;
  margin: 0;
  color: #800028;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.pdf-ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}

.pdf-ticker-container:hover .pdf-ticker-track {
  animation-play-state: paused; /* Pause on hover */
}

.pdf-item {
  display: inline-block;
  margin: 0 30px;
  color: #800028;
  font-size: 16px;
  text-decoration: none;
}

.pdf-item i {
  margin-left: 8px;
  color: red;
}

.pdf-item:hover {
  text-decoration: underline;
}

/* Animation Keyframes */
@keyframes ticker-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}


.ask-button {
    background-color: #c29c51;
    color: #fff;
    margin-top: 20px;
    padding: 12px 25px 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}
.ask-button:hover {
    background-color: #b18943;
    color: #fff;
}


body {
  background-color: white;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--main-font);
}

.hero, .popular-questions, .footer-section {
  background: var(--primary-green);
}

.navbar {
  position: absolute;
  top: 29px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  height: 110px;
  z-index: 10;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-brand img {
  width: 113px;
  height: 54px;
}

.navbar-brand {
  margin-right: 0;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 422;
  line-height: 1.5;
  margin: 0 10px;
}

.nav-link:hover {
  color: #f8d7da;
}

.btn-account {
  height: 64px;
  width: 150px;
  border: 1px solid rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.btn-account:hover {
  background-color: #f8d7da;
  color: var(--primary-green);
}

.btn-account i {
  margin-left: 8px;
}

.btn-translate {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  text-decoration-skip-ink: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--main-font);
}

.btn-translate i {
  margin-right: 8px;
}

.btn-translate:hover {
  color: #f8d7da;
}

.dropdown-menu {
  background-color: #fff;
  border-radius: 5px;
}

.dropdown-item {
  color: var(--primary-green);
}

.dropdown-item:hover {
  background-color: #f8d7da;
  color: var(--primary-green);
}

.container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 180px;
}

.left-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  position: relative;
}
.left-section img {
  max-width: 800px;
}
.right-section {
  flex: 1;
  text-align: right;
  margin-bottom: 200px;
}

.hero {
  position: relative;
}

.hero h1 {
  font-size: 96px;
  color: rgba(255, 255, 255, 1);
}

.hero h2 {
  font-size: 48px;
  color: rgba(255, 255, 255, 1);
}

.hero h3 {
  font-size: 32px;
  color: rgba(255, 255, 255, 1);
}

.hero .custom-link {
  color: white;
  text-decoration: none;
}

.hero .custom-link .underlined-text {
  text-decoration: underline;
}

.hero p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
}
.hero .search-bar {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
  width: 80%;
  max-width: 600px;
}

.hero .search-bar input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: none;
  padding: 0 20px;
  font-size: 1rem;
  padding-right: 60px;
}

.hero .search-bar button {
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;
  background-color: var(--secondery-color);
  color: #fff;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.hero .search-bar button i {
  transform: scaleX(-1);
}

.trending-questions h5 {
  font-size: 1.5rem;
  color: white;
  margin: 50px 0px 30px 0;
}

.trending-questions .btn-container {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 20px;
}

.trending-questions .btn-trending {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 25px;
  padding: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  text-align: center;
}

.trending-questions .btn-trending i {
  margin-right: 12px;
  background-color: white;
  border-radius: 15%;
  padding: 5px;
  transform: scaleX(-1);
  color: var(--primary-green);
  font-size: 0.8rem;
}

.trending-questions .btn-trending:hover {
  background-color: #f8d7da;
  color: var(--primary-green);
}

.trending-questions .btn-trending:active {
  transform: scale(0.98);
}

.play-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: var(--primary-green);
  border-radius: 50%;
  margin-left: 10px;
  font-size: 1rem;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.Ellipse {
  position: absolute;
  right: -1%;
  top: 80%;
  transform: translateY(-70%);
  height: auto;
  z-index: 10;
}

/* -----------------------------------feature siction ----------------------------------- */
.features {
  background-image: url("../img/feature.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-section {
  padding: 10.13rem 5.41rem 5.88rem 13.69rem;
}

.main-title {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
  margin-bottom: 6rem;
  margin-right: 0;
}

.feature-card {
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  width: 30.875rem;
}

.feature-card-inner {
  padding: 1.69rem 0.94rem 0.69rem 2.19rem;
  display: flex;
}

.icon-circle {
  width: 1.5625rem;
  height: 1.5625rem;
  flex-shrink: 0;
  background: var(--primary-green);
  border-radius: 50%;
  margin-left: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}
.whatsapp-svg {
  text-decoration: none;
  margin-left: 0.56rem;
  width: 1.5rem;
  height: 1.5rem;
}
.feature-title {
  color: #000;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.0175rem;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.feature-content {
  display: flex;
  flex-direction: column;
}
/* AI Section */
.ai-section {
  padding: 10.81rem 10.56rem 13.09rem 7.9rem;
}

/* Image */
.ai-image {
  width: 19rem;
  height: 9.125rem;
  flex-shrink: 0;
}

/* Title */
.ai-title {
  color: #000;
  text-align: center;
  font-family: Cairo;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
  padding-bottom: 2.56rem;
}

/* Input and Button container */
.input-button-container {
  display: flex;
  flex-direction: column;
  gap: 2.06rem;
}

/* Input field */
.ai-input {
  display: flex;
  height: 13.41375rem;
  padding: 2.5rem 0.9375rem 0.9375rem 2.8125rem;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 2.8625rem 2.8625rem 0 0rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  margin-top: 60px;
}

.ai-button {
  border-radius: 1.5625rem;
  background: #3d3a36;
  display: flex;
  width: 14.25rem;
  padding: 0.75rem 1.5625rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: #fff;
}

.whatsapp-link {
  color: #3ec250;
  text-decoration: underline;
}

/* ---------------------------------End feature siction ------------------------------------- */

/* ------------------------------popular questions start -------------------------------------*/

.popular-questions .section-title {
  color: white;
  font-family: var(--main-font);
  font-size: var(--secondary-title-size);
  font-weight: 700;
  padding: 7.75rem 8.69rem;
  white-space: nowrap;
  text-align: right;
}

.custom-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 11.44rem 10.01rem 15.63rem;
  flex-wrap: wrap;
}
.custom-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.custom-card {
  width: calc(33.33% - 1rem);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0px 17px 58px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
  border: none;
  display: flex;
  flex-direction: column;
}

.card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8125rem 1.875rem 1.875rem 1.875rem;
  gap: 1.6875rem;
  flex: 1;
}

.card-body-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 14.26175rem;
  padding: 0rem 0.17888rem 1.501rem 0rem;
  gap: 1.38575rem;
}

.popular-card .card-title {
  color: #404145;
  text-align: right;
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.275rem;
  text-decoration: none;
  margin-bottom: 1.39rem;
}

.popular-card .card-description {
  color: #7a7d85;
  text-align: right;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.93rem;
}

.popular-card .card-more {
  color: #8d0034;
  font-family: var(--main-font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: right;
}

.popular-card .card-more i {
  font-size: 1rem;
}

.tiny-section {
  text-align: center;
  padding-top: 4.19rem;
  padding-bottom: 1.44rem;
  background-color: #fff;
}

.tiny-section img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.custom-carousel {
  display: flex;
  height: 9.625rem;
  padding: 2rem 0rem;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  background: #8d0034;
}

.client-logo-wrapper {
  width: 12.25rem;
  height: 2.89238rem;
  flex-shrink: 0;
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------------------------------popular questions end ---------------------------------*/



/*------------------------------------categories start --------------------------------*/
.categories-section {
  padding: 11.81rem 15.5rem 7.36rem 13.25rem;
  background-color: #ffff;
}

.categories-section_tittle {
  color: #000;
  font-family: "Cairo", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6.31rem;
  padding-right: 1.63rem;
}

.categories-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.25rem;
  row-gap: 2.5rem;
}

.categories-section__item {
  width: 18.125rem;
  height: 7.75rem;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-decoration: none;
  border: #000 solid 0.6px;

  transition: all 0.3s ease-in-out;
}

.categories-section__item:hover {
  background: #8d0034;
  box-shadow: 0 6px 12px rgba(141, 0, 52, 0.3);
  transform: translateY(-2px);
  color: #fff !important;
}

.categories-section__toggle {
  margin-top: 3.75rem;
  color: #8d0034;
  font-family: "Cairo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.12rem;
  border: none;
  background: none;
  width: 100%;
  margin-bottom: 7.36rem;
}

.categories-section__arrow svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.categories-section__toggle[aria-expanded="true"]
  .categories-section__arrow
  svg {
  transform: rotate(180deg);
}

.categories-section__grid .row {
  margin-bottom: 2.5rem;
}

.categories-section__item-text {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.categories-section__collapse-wrapper {
  display: flex;
  flex-direction: column;
}

#moreCategories {
  order: 1;
}

.categories-section__toggle {
  order: 2;
}
/*----------------------------------------categories end-----------------------------------------*/






/* ------------------------------------expert-section start------------------------------------- */
.ask-experts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
}

/* Expert section container */
.expert-section {
  width: 83.5rem;
  height: 32.625rem;
  border-radius: 0.5rem;
  background-color: var(--primary-green);
  background-image: url("../img/Frame.png");
  background-size: auto;
  background-position: left -50px center;
  background-repeat: no-repeat;
  overflow: visible;
}

.contant {
  padding: 8.19rem 24.06rem 6.55rem 23.83rem;
}

/* Expert title styling */
.expert-title {
  margin-bottom: 4.81rem;
  color: #fff;
  text-align: center;
  font-family: Cairo;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.39rem;
}

/* Expert description styling */
.expert-description {
  margin-bottom: 3.88rem;
  display: flex;
  width: 34.75rem;
  height: 3.125rem;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-family: Cairo;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0125rem;
  text-transform: capitalize;
}

/* Button styling */
.expert-btn {
  display: flex;
  width: 14.5rem;
  height: 3.1875rem;
  padding: 0 1.5625rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: none;
  font-family: Cairo;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6875rem;
  margin: 0 1.47rem;
  transition: all 0.3s ease;
}

.expert-btn-white {
  background: #fff;
  color: #000;
}

.expert-btn-gold {
  background: #c39c59;
  color: #fff;
}

/* Hover effects for buttons */
.expert-btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

/*-----------------------------------expert-section end-------------------------------*/



/* -------------------------------team section start------------------------------------- */
.team-section {
  padding: 120px 154px 126px 148px;
  background-color: #fff;
}

.team-title {
  color: #252525;
  text-align: right;
  font-family: "Cairo", sans-serif;
  font-size: 48px;
  font-weight: 500;
  padding-right: 23px;
  margin-bottom: 0;
}

.team-card {
  width: 340px;
  height: 508px;
  flex-shrink: 0;
  background-color: #f3f3f3;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}



.team-card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 141px;
  background: rgba(4, 106, 55, 0.35);
  box-shadow: 0px 4px 300px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: height 0.3s ease-in-out;
}

.team-card:hover .team-card-info {
  height: 100%;
}

.team-name {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.team-position {
  font-size: 25px;
  font-weight: 600;
  color: #d9d9d9;
  margin-top: 15px;
}

.cards-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 90px;
  flex-wrap: nowrap;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.carousel-indicators {
  bottom: -126px;
  display: flex;
  gap: 9.33px;
  justify-content: center;
}

.carousel-indicators [data-bs-target="#teamCarousel"] {
  width: 1.71356rem;
  height: 0.4375rem;
  border-radius: 0.36456rem;
  background: #9d9d9d;
  border: 0;
}

.carousel-indicators button:hover {
  background-color: #8d0034;
}

.carousel-indicators .active {
  background-color: var(--primary-green);
  width: 36.167px;
}

/* -----------------------------------------team section end -----------------------*/





/* ---------------------------------service section start-------------------- */

.services-section {
  background-color: #fff;
}

.services-heading {
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.6px;
  padding-top: 45px;
  padding-bottom: 48px;
  text-align: center;
}

.services-section .carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
  overflow: hidden;
}

.carousel-track-top {
  margin-left: 142px;
  margin-right: -24px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  animation: scroll-top 20s linear infinite;
}

.carousel-track-bottom {
  margin-right: 142px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: nowrap;
  animation: scroll-bottom 20s linear infinite;
  padding-bottom: 89px;
}

.services-section .carousel-items {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.service-card {
  display: flex;
  padding: 16px 24px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--Grey-50, #a1aebf);
  transition: all 0.3s ease;
  height: 80px;
  gap: 20px;
}

.service-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.service-card img {
  max-width: 100%;
  height: auto;
  height: 40px;
}

@keyframes scroll-top {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-bottom {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ------------------------------------service section end--------------------------- */

/* -----------------------------------main section page start--------------------------- */

.main-section {
  margin-top: 9rem;
  background-color: #fff;
}
.section-wrapper {
  padding-top: 50px;
}

.main-section .section-title {
  color: var(--primary-green);
  text-shadow: 0px 5px 13px rgba(255, 255, 255, 0.4);
  font-family: "Cairo", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  padding-top: 8rem;
  padding-bottom: 1rem;
  
}

.main-section .section-text {
  color: var(--dark-60, #778088);
  text-align: center;
  font-family: Cairo;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 3rem;
}

.main-section .custom-btn {
  display: flex;
  height: 2.75rem;
  padding: 0.3125rem 2rem;
  border-radius: 1.875rem;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--dark-80, #495560);
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  transition: 0.3s;
  border: 1px solid #000;
}

.main-section .custom-btn:hover {
  background: #8d0034;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  color: #fff;
  animation: pulse 0.5s infinite;
}

.main-content {
  background-color: #fff;
  padding-top: 10.75rem;
}

/* Info card styling */
.info-card img {
  height: 198px;
  object-fit: cover;
}

.title {
  text-shadow: 0px 5px 13px rgba(255, 255, 255, 0.4);
}



/* Button custom class */
.info-card .custom-btn {
  border-radius: 0.1875rem;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  border: none;
  padding: 0.3125rem 2rem;
  flex-direction: column;
  gap: 0.625rem;
  color: #8d0034;
  font-family: Cairo;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-wrapper {
  margin: 0 auto;
  padding: 10rem 20rem;
}

.main-wrapper .row {
  padding-bottom: 8.44rem;
}

.info-image {
  width: 32.5rem;
  height: 37.125rem;
  object-fit: cover;
  margin-bottom: 2.19rem;
  min-height: 100%;
}

.section-title {
  color: var(--primary-green);
  text-align: start;
  font-family: Cairo;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03rem;
}

.section-description {
  color: #0f0f0f;
  text-align: right;
  font-family: Cairo;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.0125rem;
  text-transform: capitalize;
  margin-bottom: 2.19rem;
}

.main-content .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.main-content .feature-item {
  color: #8d0034;
  font-family: Cairo;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.05rem;
}

.main-content .feature-item:nth-child(3n) {
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 0.62rem;
  padding-top: 0.65rem;
}
/* ---------------------------end main page --------------------------------*/





/* --------------------------answer page------------------------------------- */


.hero-answer {
  background-position: top center;  
  padding-top: 110px;  
  height: 693px;  
  z-index: 1;
  background-color: #8D0034;
  position: relative;
}
.content .answer{
  display: flex;
  position: relative;
  justify-content: space-between;
}

.hero-answer .left-column {
  position: absolute;
  top: 290.7px;         
  left: 350px;    
}

.hero-answer .hero-text{
  color: #FFF;
  text-align: right;
  font-family: Cairo;
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  transform: rotate(0.308deg);
  padding-top: 80px;
  padding-left:90px
}

.hero-answer .right-column{
  position: absolute;
  top: 85px;            
  right: 200px;
  margin: auto 0;
}





.hero-answer .ai-input {
  width: 650px;
  height: 320px;
  flex-shrink: 0;
  color: var(--Input-Color, #000);
  text-align: right;
  font-family: Cairo;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
  padding: 2.5rem 0.9375rem 0.9375rem 2.8125rem;
  border-radius: 2.8625rem 2.8625rem 2.8625rem 0rem;
  border: 1px solid #E0E0E0;
  background: #FFF;

}
.hero-answer .input-button-container {

  padding-top: 180px;
}


.hero-image-answer {
    position: absolute;
    left: 50px;
    top: 190px;
    z-index: 0;
    height: 220px;
}


.content .answer {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  background-color: #FFF;
}

.answer .answer-text {
  color: #1C2B38;
  text-align: right;
  text-shadow: 0px 5px 13px rgba(255, 255, 255, 0.40);
  font-family: Cairo;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 157px; 
  direction: rtl; 
  margin-top: 52px; 


}

.answer-icon {
  width: 40px; 
  height: auto;
}

.answer .answer-box {
  width: 1218px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1px solid var(--primary-green);
  margin-right: 157px;  
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  direction: rtl;
}

.answer-box-text {
  color: #000;
  text-align: right;
  font-family: Cairo;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start; 
  width: 100%;
  direction: rtl; 
  padding-right: 20px;

}


.contant .answer{
  background-color: #fff;

}




.resorces {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  padding-top: 52px;
  background-color: #fff;
}

.resorces .answer-text {
  color: #1C2B38;
  text-align: right;
  text-shadow: 0px 5px 13px rgba(255, 255, 255, 0.40);
  font-family: Cairo;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
  margin-right: 157px;
}

.resorces .custom-btn {
  border-radius: 0.1875rem;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  border: none;
  padding: 0.3125rem 2rem;
  flex-direction: column;
  gap: 0.625rem;
  color: #8D0034;
  font-family: Cairo;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  margin-right: 157px; 

}

.custom-btn:hover {
  background-color: #8D0034;
  color: #FFF;
  transition: background-color 0.3s ease;
}




.rating{
  background-color: #fff;
}
.rating-box {
 padding-top: 85px;
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 35px;
  border: 3px solid #CED9E3;
  box-shadow: 0px 3px 0px 0px #CED9E3;
  padding: 106px 60px;
  width: 100%;  
  max-width:930px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.rating-text {
  font-family: Cairo;
  font-size: 32px;
  font-weight: 400;
  color: #1C2B38;
  margin-right: 20px; /
}

.rating-btn {
  border-radius: 0.1875rem;
  background: #8D0034;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  border: none;
  padding: 0.3125rem 2rem;
  flex-direction: column;
  gap: 0.625rem;
  color: #FFF;
  font-family: Cairo;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  margin-left: 10px;
}

.rating-btn:hover {
  background-color: #FFF;
  color: #8D0034;
  transition: background-color 0.3s ease;
}




.read-more-section {
  background-color: #fff;
  display: flex;
  gap: 40px; 
  padding-top: 85px;
  justify-content: space-between;
}

.read-more-left-column {
  width: 50%;
  padding-left: 245px; 
  padding-right: 250px; 
}

.read-more-title p {
  color: #1C2B38;
  text-shadow: 0px 5px 13px rgba(255, 255, 255, 0.40);
  font-family: Cairo;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
}

.read-more-description p {
  display: flex;
  width: 438px;
  height: 137px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: var(--Color-Black, #0F0F0F);
  text-align: right;
  font-family: Cairo;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

.read-more-buttons {
  display: flex;
  justify-content: center;  
  align-items: center;    
  gap: 20px;         
  width: fit-content;     
  margin: 0 auto;     
     
}
.read-more-button {
  border-radius: 0.1875rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  border-radius: 25px;
  padding: 0.3125rem 2rem;
  font-family: Cairo;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  justify-content: center;  
  align-items: center;
  width: 10.375rem;
  height: 3.4375rem;

}

.read-more-button:hover {
  background-color: #8D0034;
  color: #FFF;
  transition: background-color 0.3s ease;
}



.read-more-right-column {
  width: 50%;
  display: flex;
  flex-wrap: wrap; 
  gap: 20px; 
  margin-left: 250px; 
}

.read-more-box {
  border-radius: 35px;
  background: #FFF;
  display: flex;
  width: 48%; 
  height: 184px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.read-more-box p {
  font-family: Cairo;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #1C2B38;
}




/* ----------------------------FOOTER START---------------------------- */

.footer-section {
  display: flex;
  height: 778px;
  width: 100%;
}

.footer-right {
  width: 540px;
  height: 100%;
}

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

.footer-left {
  flex: 1;
  height: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* ----------------------------FOOTER END---------------------------- */











@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .navbar-toggler {
    order: 2;
    margin-left: 20px;
  }

  .navbar-brand {
    order: 1;
  }

  .content-wrapper {
    flex-direction: column-reverse;
    padding-top: 30px;
  }

  .left-section {
    width: 100%;
    margin-top: 80px;
    justify-content: flex-start;
    display: flex;
    justify-content: center;
  }
  .right-section {
    margin-top: -85px;
  }

  .left-section img {
    width: 50%;
    max-width: 400px;
    height: auto;
    display: block;
    margin-left: 50px;
  }

  .left-section img.hero-image {
    content: url("../img/hero-small.png");
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero h3 {
    font-size: 22px;
  }

  .hero .search-bar {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }

  .hero .search-bar input {
    font-size: 0.9rem;
    padding-right: 50px;
  }

  .hero .search-bar button {
    width: 50px;
    height: 50px;
  }

  .trending-questions h5 {
    font-size: 1.2rem;
  }

  .trending-questions .btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .trending-questions .btn-trending {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .trending-questions .btn-trending i {
    margin-left: 5px;
    font-size: 0.8rem;
  }

  .play-icon-inline {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .Ellipse {
    position: absolute;
    right: -10%;
    top: 70%;
    transform: translateY(-50%);
    height: auto;
    z-index: 10;
  }

  .info-image {
    width: 100%;
    height: 37.125rem;
    object-fit: cover;
    margin-bottom: 2.19rem;
    min-height: 100%;
  }
  
  .team-section {
    padding: 40px 40px;
}
.cards-container {
    gap: 10px;
}
.team-card {
    width: 100%;
    max-width: 280px;
    height: 420px;
}
.team-title {
    font-size: 34px;
    margin-bottom: 5px;
}
.cards-container {
    margin-top: 30px;
}
.carousel-indicators {
    bottom: -40px;
}

.hero-answer .left-column {
  position: absolute;
  top: 240px;
  left: 145px; 
  text-align: right;
}

.hero-answer .hero-text {
  color: #FFF;
  text-align: right;
  font-size: 28px; 
  padding-top: 0; 
  margin-right: 50px; 
}

.hero-answer .hero-image-answer {
  position: absolute;
  padding-top: 100px; 
  transform: translateX(-50%); 
  top: 100px; 
  width: 100%; 
}

.hero-answer .right-column {
  position: relative;
  margin-top: 40px; 
  padding: 0 20px;
  width: 100%; 
}

.hero-answer .ai-input {
  width: 100%;
  height: 130px;
  font-size: 14px;
  margin: 13.75rem -12rem;
  border-radius: 8px;
}

.hero-answer .input-button-container {
  padding-top: 40px; 
}

.main-wrapper {
  padding:4rem !important; 
}

/* Rating Section */
.rating {
  width: 100%;
  padding: 1rem;
}

.rating .rating-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.rating-box .rating-btn {
  width: 100%;
  max-width: 300px;
  margin-top: 1rem;
  text-align: center;
}

.content .answer {
flex-direction: column;
align-items: center; 
padding: 20px;
margin-right: 0; 
}

.answer .answer-text {
text-align: center; 
font-size: 28px; 
margin-right: 0; 
margin-top: 20px; 
word-wrap: break-word; 
width: 100%; 
}

.answer-icon {
width: 30px; 
height: auto;
}

.answer .answer-box {
width: 100%; 
margin-right: 0; 
}

.answer-box-text {
text-align: justify; 
font-size: 18px;  
}


.resorces {
  display: flex;
  flex-direction: column; 
  padding-top: 30px; 
  background-color: #fff;
  text-align: right; 
  align-items: center;
}

.resorces .answer-text {
  font-size: 28px; 
  margin-top: 20px; 
  text-align: right; 
  width: 100%; 
}

.resorces .custom-btn {
  width: 80%; 
  padding: 0.5rem 1rem; 
  margin: 20px 0; 
  font-size: 16px; 
  text-align: center; 
}

.custom-btn:hover {
  background-color: #8D0034;
  color: #FFF;
  transition: background-color 0.3s ease;
}


.resorces .answer-text {
  text-align: right; 
}

.read-more-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}

.read-more-left-column {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

.read-more-right-column {
  width: 80%;
  margin-left: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.read-more-box {
  width: 100%;
  height: 184px;
  margin-bottom: 20px;
}

.read-more-title p {
  font-size: 32px;
}

.read-more-description p {
  font-size: 18px;
  width: 100%;
  padding-right: 20px;
}

.read-more-buttons {
  width: 100%;
  gap: 15px;
  justify-content: center;
}

.read-more-button {
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  text-align: center;
}
}




  @media (max-width: 1400px) {
    .team-section {
        padding: 60px 80px;
    }
    .team-card {
        width: 300px;
        height: 460px;
    }
    .team-title {
        font-size: 42px; 
        margin-bottom: 15px; 
    }
    .cards-container {
        margin-top: 50px;
    }
    .carousel-indicators {
        bottom: -60px;
    }
}

@media (max-width: 1024px) { 
    .cards-container {
        justify-content: space-around;
    }
    .team-card {
        width: 280px;
        height: 440px;
 
    }
    .team-title {
        font-size: 38px;
        margin-bottom: 10px; 
    }
    .cards-container {
        margin-top: 40px;
    }
    .carousel-indicators {
        bottom: -50px;
    }
}



@media (max-width: 576px) {
  .main-section .section-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .main-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 1600px) {
  .main-wrapper {
    padding: 4rem 7rem; 
  }

  .info-image {
    width: 100%;
    max-width: 35rem; 
    height: auto;
  }

  .main-content .features-list {
    grid-template-columns: repeat(3, 1fr); 
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-description {
    font-size: 1.3rem; 
  }

  .main-content .feature-item {
    font-size: 1.1rem; 
  }

  .main-section .custom-btn {
    font-size: 1rem; 
  }

  .main-section .section-text {
    font-size: 1.1rem;
  }
}




.left-section {
    margin-top: -40px;
}


.hero h2 {
    font-size: 35px;
    margin-bottom: 20px;
    margin-top: 29px;
}

.hero .search-bar input {
    padding-right: 20px;
}

.hero .search-bar button {
    left: -6px;
}

.content-wrapper {
    padding-top: 160px;
}

.trending-questions .btn-trending {
    font-size: 12px;
}


.hero .custom-link {
    font-size: 16px;
    margin-right: 10px;
}


.right-section {
    flex: 1;
    text-align: right;
    margin-bottom: -31px;
}

.left-section img {
    max-width: 670px;
    margin-top: 50px;
}

.hero h1 {
    font-size: 76px;
    margin-top: -76px;
}

.hero h3 {
    font-size: 27px;
}


.custom-cards-container {
    padding: 10px 40px 40px 40px;
}


.popular-questions .section-title {
    font-weight: 700;
    padding: 50px 40px;
    white-space: nowrap;
    text-align: right;
    padding-top: 70px;
}

.team-section {
    padding: 120px 0;
    background-color: #fff;
}

.team-title {
    padding-right: 49px;
    margin-bottom: -50px;
}

.btn-account i {
    margin-right: 8px;
}

.dropdown-item {
    direction: rtl;
    text-align: right;
}


.categories-section {
    padding: 35px;
}


.categories-section_tittle {
    color: #000;
    font-family: "Cairo", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 50px;
    padding-right: 0;
}

.categories-section__toggle {
    margin-bottom: 30px;  
}

.expert-section {
    width: 100%;
    height: 500px;
    border-radius: 0;
    margin-top: -51px;
}

.navbar {
    position: relative;
}

.main-section {
    margin-top: 65px;
}

.content-wrapper {
    padding-top: 50px;
}

.main-content {
    padding-top: 50px;
}

.hero p {
    color: rgb(0 0 0);
}

.hero h3 {
    margin-bottom: 20px;
}

.hero h2 {
    color: black;
}


.answer-box-text {
    font-size: 16px;
}


.answer .answer-text,
.resorces .answer-text {
    font-size: 25px;
}

.rating-box {
    padding: 50px 30px;
}

.rating-text {
    font-size: 19px;
    margin-left: 20px;
    margin-right: 0;
    vertical-align: middle;
    margin-bottom: 0;
}

.read-more-title p {
    font-size: 30px;
}

.read-more-box {
    width: calc(50% - 10px);
}

.read-more-box p {
    font-size: 16px;
    text-align: center;
    margin: 0;
    padding: 10px;
}

.resorces {
    margin-bottom: 30px;
}

.home-first h2,
.home-first p {
  color: white;
}

@media (max-width: 768px) {

    .hero {
        padding-top: 0px;
    }

.hero h1 {
    font-size: 46px;
    margin-top: 90px;
}

.container {
    padding: 0 0px;
}

.d-flex {
    display: block !important;
}

.ai-section, .text-section, .contant {
    padding: 50px 15px 50px 15px;
}
.custom-cards-container {
    display: block;
}

.custom-card {
    display: block;
    width: 100%;
}

.feature-card, .expert-description {
    width: 100%;
}

.left-section, .Ellipse, .footer-right {
  display: none;
}

.hero h2 {
    font-size: 26px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    background: #800328;
    padding: 20px;
    margin: -30px;
    box-shadow: 0px 5px 16px #0000008a;
    border-bottom: 1px solid #ffffff38;
    padding-bottom: 100px;
}

.home-first {
    padding-bottom: 60px;
}

.popular-card .card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: inherit;
    margin-bottom: 0;
}

.navbar .navbar-brand,
.navbar .navbar-toggler {
      margin-top: -48px;
}

.navbar {
    height: 80px;
    padding-top: 49px;
}

.navbar .d-flex {
  display: flex!important;
}

.navbar button {
  zoom: 0.8;
}

.ai-image {
    width: 170px;
    height: auto;
}

.custom-cards-container {
    padding: 10px 20px 40px 20px;
}

.ai-title, .main-title, .popular-questions .section-title, .categories-section_tittle, .expert-title, .team-title, .services-heading  {
    font-size: 28px;
    white-space: normal;
    font-weight: bold;
    letter-spacing: 0;
    padding-bottom: 0px;
    margin-right: 0;
    text-align: center;
}

.categories-section__item {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    text-align: center;
    text-decoration: none;
    border: #000 solid 0.6px;
    margin-bottom: 15px;
}

.mb-5 {
    margin-bottom: 0 !important;
}
.expert-description {
    margin-bottom: 30px;
    display: block;
    width: 100%;
    height: inherit;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: inherit;
    letter-spacing: 0;
    text-transform: inherit;
}

.expert-title {
    margin-bottom: 20px;
}
.expert-btn {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}

.expert-section {
    width: 100%;
    height: auto;
}
.team-title {
    padding-right: 0;
    margin-bottom: 0px;
    margin-top: -70px;
}

.team-name {
    font-size: 22px;
}
.team-position {
    font-size: 15px;
}

.services-heading {
    padding-top: 0;
    margin-bottom: 40px;
}
.ai-title {
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-card {
    padding: 19px 6px;
    width: 130px;
    height: 80px;
}

.ai-input {
  text-align: center;
}

    .features {
        background-image: url(../img/feature.png);
        background-size: cover;
        background-position: 0px 240px;
        background-repeat: repeat;
    }

}

.ai-input {
    padding-right: 60px;
    font-size: 20px;
    font-weight: bold;
    padding-top: 80px;
}

@media (max-width: 768px) {

.hero-image-answer {
    left: 0;
    height: 196px;
}

.ai-input {
    padding-right: 15px;
    font-size: 20px;
    font-weight: bold;
    padding-top: 60px;
}

}

.navbar-toggler {
  background-color: white;
}





.dropdown-menu>li>a {
    display: block;
    text-align: right;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu[data-bs-popper] {
    right: 0;
    left: inherit;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: white;
}


a {
    color: inherit;
    text-decoration: initial;
}

.categories-section__item {
    margin-bottom: 30px;
}

.custom-carousel {
    display: flex
;
    height: 122px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-shrink: 0;
    background: #ffffff;
    border-bottom: 3px solid #ddd;
}

.expert-description {
    margin-bottom: 3.88rem;
    display: flex
;
    width: auto;
    height: 3.125rem;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
    font-family: Cairo;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    text-transform: inherit;
}

.hero h2 {
    margin-top: -24px;
    padding-top: 29px;
}

.contac-items {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contac-items img {
  width: 40px;
  margin-bottom: 15px;
}

.contac-items h4 {

}

.contac-items h5 {

}


.directory-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

.directory-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.directory-item h3 {
    color: #b20041;
    font-size: 19px;
    margin-top: 15px;
}

.directory-item h4 {
    font-size: 15px;
    font-weight: 500;
}

.directory-item h5 {
    font-size: 13px;
}

.directory-item h5 a {
    color: black;
    text-decoration: none;
}

.schedule-box {
    display: none;
}

.search-bar {
  position: relative;
}

#searchInput {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
#autocompleteResults {
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  top: 53px;
  border-radius: 15px;
}
#autocompleteResults ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#autocompleteResults li {
  padding: 8px;
  cursor: pointer;
}
#autocompleteResults li.selected {
  background: #f0f0f0;
}
.highlight {
  font-weight: bold;
  color: #007bff;
}


.text-right {
  text-align: right;
}

.question-item h5 {
  cursor: pointer;
  padding: 40px 20px;border-radius: 10px;margin-bottom:30px;background: #fff;color: black; border:2px solid #ddd;
}

.question-item h5:hover {
  background: var(--primary-green);
  color: white;
  border:2px solid var(--primary-green);
}

.read-more-box {
  color: black;
}

.read-more-box p {
  color: inherit;
}



.read-more-box:hover {
  background: #8d0434;
  color: white;
}

.banner-ad {
    width: 100%;
    padding: 6px;
    border: 1px solid #DDD;
    border-radius: 9px;
    margin-bottom: 100px;
}

#autocompleteResults li {
    white-space: nowrap;
    overflow: hidden;
    width: calc(100% - 17px);


}

.page-item {
    margin-left: 10px;
}



.main-footer {
    background: black;
    color: white;
    padding-top: 80px;
    padding-bottom: 20px;
}

.main-footer a {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 11px;

}

.main-footer hr {

}

.main-footer .row img {
    width: 145px;
}

.main-footer .row a {
    font-size: 12px;
    margin: 0;
    margin-bottom: 10px;
    display: block;

}

.main-footer .row h4 {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 20px;
}


.about-icons {
    margin: 80px 0;
}

.about-icons h5 {
    color: #8D0034;
}

.about-icons p {
    font-size: 13px;
    color: #898989;
}

.about-icons img {
    width: 50px;
    margin-bottom: 20px;
}

.img-responsive {
  width: 100%;
}



#industries {
  direction: rtl;
  zoom: 0.85;
}

#industries .section-title.point {
  position: relative;
  margin-bottom: 3rem;
}

#industries .section-title.point:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 100%;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-right-color: #fdb940;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  #industries .section-title.point:before {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 0.75rem;
    border-right-color: #fdb940;
    top: 0;
    display: none;
  }
}

@media (max-width: 1399px) {
  #industries .section-title.point {
    padding-right: 3rem;
  }
}

@media (max-width: 1399px) and (max-width: 991.98px) {
  #industries .section-title.point {
    padding-right: 2rem;
  }
}

@media (max-width: 1399px) {
  #industries .section-title.point:before {
    left: auto;
    right: 0;
  }
}

@media (max-width: 991.98px) {
  #industries .section-title.point {
    padding-right: 0;
  }
}

#industries .bg-primary {
  background: #8d0034 !important;
}

#industries .btn-primary {
  background: #8d0034;
  border-color: #8d0034;
}

#industries .wheel-block-1 {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

#industries .wheel-block-1 i {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

#industries .wheel-block-2 {
  -webkit-transform: rotate(80deg);
  transform: rotate(80deg);
}

#industries .wheel-block-2 i {
  -webkit-transform: rotate(-80deg);
  transform: rotate(-80deg);
}

#industries .wheel-block-3 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

#industries .wheel-block-3 i {
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
}

#industries .wheel-block-4 {
  -webkit-transform: rotate(160deg);
  transform: rotate(160deg);
}

#industries .wheel-block-4 i {
  -webkit-transform: rotate(-160deg);
  transform: rotate(-160deg);
}

#industries .wheel-block-5 {
  -webkit-transform: rotate(200deg);
  transform: rotate(200deg);
}

#industries .wheel-block-5 i {
  -webkit-transform: rotate(-200deg);
  transform: rotate(-200deg);
}

#industries .wheel-block-6 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

#industries .wheel-block-6 i {
  -webkit-transform: rotate(-240deg);
  transform: rotate(-240deg);
}

#industries .wheel-block-7 {
  -webkit-transform: rotate(280deg);
  transform: rotate(280deg);
}

#industries .wheel-block-7 i {
  -webkit-transform: rotate(-280deg);
  transform: rotate(-280deg);
}

#industries .wheel-block-8 {
  -webkit-transform: rotate(320deg);
  transform: rotate(320deg);
}

#industries .wheel-block-8 i {
  -webkit-transform: rotate(-320deg);
  transform: rotate(-320deg);
}

#industries .wheel-block-9 {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#industries .wheel-block-9 i {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

#industries .wheel-dots > .span-1 {
  -webkit-transform: rotate(63deg);
  transform: rotate(63deg);
}

#industries .wheel-dots > .span-1 em {
  -webkit-transform: rotate(-63deg);
  transform: rotate(-63deg);
}

#industries .wheel-dots > .span-2 {
  -webkit-transform: rotate(103deg);
  transform: rotate(103deg);
}

#industries .wheel-dots > .span-2 em {
  -webkit-transform: rotate(-103deg);
  transform: rotate(-103deg);
}

#industries .wheel-dots > .span-3 {
  -webkit-transform: rotate(143deg);
  transform: rotate(143deg);
}

#industries .wheel-dots > .span-3 em {
  -webkit-transform: rotate(-143deg);
  transform: rotate(-143deg);
}

#industries .wheel-dots > .span-4 {
  -webkit-transform: rotate(183deg);
  transform: rotate(183deg);
}

#industries .wheel-dots > .span-4 em {
  -webkit-transform: rotate(-183deg);
  transform: rotate(-183deg);
}

#industries .wheel-dots > .span-5 {
  -webkit-transform: rotate(223deg);
  transform: rotate(223deg);
}

#industries .wheel-dots > .span-5 em {
  -webkit-transform: rotate(-223deg);
  transform: rotate(-223deg);
}

#industries .wheel-dots > .span-6 {
  -webkit-transform: rotate(263deg);
  transform: rotate(263deg);
}

#industries .wheel-dots > .span-6 em {
  -webkit-transform: rotate(-263deg);
  transform: rotate(-263deg);
}

#industries .wheel-dots > .span-7 {
  -webkit-transform: rotate(303deg);
  transform: rotate(303deg);
}

#industries .wheel-dots > .span-7 em {
  -webkit-transform: rotate(-303deg);
  transform: rotate(-303deg);
}

#industries .wheel-dots > .span-8 {
  -webkit-transform: rotate(343deg);
  transform: rotate(343deg);
}

#industries .wheel-dots > .span-8 em {
  -webkit-transform: rotate(-343deg);
  transform: rotate(-343deg);
}

#industries .wheel-dots > .span-9 {
  -webkit-transform: rotate(383deg);
  transform: rotate(383deg);
}

#industries .wheel-dots > .span-9 em {
  -webkit-transform: rotate(-383deg);
  transform: rotate(-383deg);
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-1 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-2 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-3 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-4 {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-5 {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-6 {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-7 {
  -webkit-transition-delay: 2.8s;
  transition-delay: 2.8s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-8 {
  -webkit-transition-delay: 3.2s;
  transition-delay: 3.2s;
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot.span-9 {
  -webkit-transition-delay: 3.6s;
  transition-delay: 3.6s;
}

#industries .metrics-box:first-child:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 5rem;
  margin-right: -0.1rem;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-right-color: #fff;
}

@media (max-width: 991.98px) {
  #industries .metrics-box:first-child:before {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 1.5rem;
    border-bottom-color: #fff;
    right: 50%;
    margin-right: -1.5rem;
    left: auto;
    top: auto;
    bottom: 100%;
    margin: 0;
  }
}

#industries .metrics-box:nth-child(2):before {
  content: "";
  position: absolute;
  right: 100%;
  top: 5rem;
  margin-right: -0.1rem;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-right-color: #fff;
}

@media (max-width: 991.98px) {
  #industries .metrics-box:nth-child(2):before {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 1.5rem;
    border-bottom-color: #fff;
    right: 50%;
    margin-right: -1.5rem;
    left: auto;
    top: auto;
    bottom: 100%;
    margin: 0;
  }
}

#industries .metrics-box:nth-child(3):before {
  content: "";
  position: absolute;
  right: 100%;
  top: 5rem;
  margin-right: -0.1rem;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-right-color: #fff;
}

@media (max-width: 991.98px) {
  #industries .metrics-box:nth-child(3):before {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 1.5rem;
    border-bottom-color: #fff;
    right: 50%;
    margin-right: -1.5rem;
    left: auto;
    top: auto;
    bottom: 100%;
    margin: 0;
  }
}

#industries .metrics-box:nth-child(4):before {
  content: "";
  position: absolute;
  right: 100%;
  top: 5rem;
  margin-right: -0.1rem;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-right-color: #fff;
}

.bg-map {
  position: relative;
  overflow: hidden;
}

.bg-map:before {
  content: "";
  position: absolute;
  right: -19rem;
  top: -44rem;
  bottom: 0;
  width: 76.3rem;
  height: 135.9rem;
  background: url("../images/jordan-map.png") no-repeat center;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .bg-map:before {
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 100%;
  }
}

.bg-map > .container {
  position: relative;
  z-index: 1;
}

#industries .industry-holder {
  position: relative;
  z-index: 5;
}

#industries .industry-holderInner {
  padding: 6rem;
}

@media (max-width: 991.98px) {
  #industries .industry-holderInner {
    padding: 0;
  }
}

#industries .industry-wheel .wheel-circle,
#industries .industry-wheel .wheel-dots,
#industries .industry-wheel .wheel-outer {
  margin: auto;
  width: 47rem;
  height: 47rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 0.1rem solid #d78542;
  padding: 1.5rem;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-circle,
  #industries .industry-wheel .wheel-dots,
  #industries .industry-wheel .wheel-outer {
    width: 32rem;
    height: 32rem;
  }
}

#industries .industry-wheel.activate .wheel-dots .wheel-dot {
  left: 32.5%;
  -webkit-transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  left: 22%;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel.activate .wheel-dots .wheel-dot {
    left: 28.5%;
    right: auto;
  }
}

#industries .industry-wheel .wheel-dots {
  border: none;
  height: 100%;
  padding: 2.5rem;
  position: relative;
  right: -5rem;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-dots {
    right: 0;
    padding: 0;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}

#industries .industry-wheel .wheel-dots .wheel-dot {
  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;
  position: absolute;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #fff;
  -webkit-transform-origin: 10.7rem 23.7rem;
  transform-origin: 10.7rem 23.7rem;
  left: 40%;
  top: 4.6%;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  left: 40%;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-dots .wheel-dot {
    width: 2.5rem;
    height: 2.5rem;
    top: -1.6%;
    right: 28.5%;
    -webkit-transform-origin: 7rem 16.5rem;
    transform-origin: 7rem 16.5rem;
  }
}

#industries .industry-wheel .wheel-dots .wheel-dot em {
  font-style: normal;
  display: none;
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 600;
  color: #344c60;
  position: relative;
  left: -65%;
  bottom: 100%;
  white-space: nowrap;
  margin-bottom: 4.5rem;
  border: 0.1rem solid rgba(190, 190, 190, 0.2);
  border-radius: 2.6rem;
  -webkit-border-radius: 2.6rem;
  -moz-border-radius: 2.6rem;
  padding: 1rem 2rem;
}

@media (min-width: 992px) {
  #industries .industry-wheel .wheel-dots .wheel-dot em {
    display: block;
  }
}

#industries .industry-wheel .wheel-dots .wheel-dot i {
  display: block;
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  background: #b79769;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  overflow: visible;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-dots .wheel-dot i {
    width: 1rem;
    height: 1rem;
  }
}

#industries .industry-wheel .wheel-dots .wheel-dot i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  content: "";
  background: #fff;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
  transform: translateY(-50%) translateX(-50%) scale(0);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

#industries .industry-wheel .wheel-dots .wheel-dot:first-child em {
  top: -11rem;
  right: -4rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(2) em {
  top: -12rem;
  right: 3rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(3) em {
  top: -10rem;
  right: 12.3rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(4) em {
  top: -4rem;
  right: 10.3rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(5) em {
  top: -8rem;
  right: -2.7rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(6) em {
  top: -17rem;
  right: -1.7rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(7) em {
  top: -7rem;
  right: 4.3rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot:nth-child(8) em {
  top: -5rem;
  right: 8.3rem;
  margin-bottom: 0.5rem;
}

#industries .industry-wheel .wheel-dots .wheel-dot.active i,
#industries .industry-wheel .wheel-dots .wheel-dot.selected i,
#industries .industry-wheel .wheel-dots .wheel-dot:hover i {
  background: #b79769;
  width: 3rem;
  height: 3rem;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

#industries .industry-wheel .wheel-dots .wheel-dot.active i:before,
#industries .industry-wheel .wheel-dots .wheel-dot.selected i:before,
#industries .industry-wheel .wheel-dots .wheel-dot:hover i:before {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

#industries .industry-wheel .wheel-dots .wheel-dot.active em,
#industries .industry-wheel .wheel-dots .wheel-dot.selected em,
#industries .industry-wheel .wheel-dots .wheel-dot:hover em {
  background: #b79769;
  border-color: #b79769;
  color: #fff;
}

#industries .industry-wheel .wheel-circle {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
  border: none;
}

#industries .industry-wheel .wheel {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-52.5%) translateX(-52.5%);
  transform: translateY(-52.5%) translateX(-52.5%);
  overflow: hidden;
  margin: auto;
  margin: 1rem;
  -webkit-transform: translateY(-52.5%) translateX(52.5%);
  transform: translateY(-52.5%) translateX(52.5%);
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel {
    width: 32rem;
    height: 32rem;
  }
}

#industries .industry-wheel .wheel:before {
  width: 20rem;
  height: 20rem;
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background: #f6f6f6 url("../images/jordan 2.png") no-repeat center;
  background-size: 40%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1rem solid #e3e3e3;
  z-index: 2;
  -webkit-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel:before {
    width: 15rem;
    height: 15rem;
  }
}

#industries .industry-wheel .wheel-block {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #eeeeee transparent;
  -webkit-transform-origin: 7rem 20.3rem;
  transform-origin: 7rem 20.3rem;
  left: 50%;
  top: 50%;
  margin-top: -20.5rem;
  margin-left: -7rem;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-width: 20rem 7.2rem 0;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-block {
    position: absolute;
    width: 11.5rem;
    height: 10rem;
    background: #eeeeee;
    -webkit-transform-origin: 4.6rem 16rem;
    transform-origin: 4.6rem 16rem;
    left: 11.4rem;
    top: 0;
    margin-top: 0;
    margin-left: 0;
    border-width: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 62% 100%, 25% 100%);
    clip-path: polygon(0 0, 100% 0, 62% 100%, 25% 100%);
    left: 12rem;
  }
}

#industries .industry-wheel .wheel-block i svg path {
  fill: #344c60;
}

#industries .industry-wheel .wheel-block.active,
#industries .industry-wheel .wheel-block.selected,
#industries .industry-wheel .wheel-block:hover {
  border-color: #b79769 transparent;
  -webkit-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-block.active,
  #industries .industry-wheel .wheel-block.selected,
  #industries .industry-wheel .wheel-block:hover {
    background: #b79769;
  }
}

#industries .industry-wheel .wheel-block.active i svg path,
#industries .industry-wheel .wheel-block.active i svg rect,
#industries .industry-wheel .wheel-block.selected i svg path,
#industries .industry-wheel .wheel-block.selected i svg rect,
#industries .industry-wheel .wheel-block:hover i svg path,
#industries .industry-wheel .wheel-block:hover i svg rect {
  fill: #fff !important;
  stroke: transparent !important;
}

#industries .industry-wheel .wheel-block i {
  margin-top: -17rem;
  display: block;
  font-size: 3rem;
  width: 4.2rem;
  height: 4.2rem;
  margin-right: -2.25rem;
  pointer-events: none;
}

#industries .industry-wheel .wheel-block i.ico {
  width: 4.2rem;
  height: 4.2rem;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #344c60;
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-block i.ico {
    margin-top: 0;
    width: 3.5rem;
    height: 5.5rem;
    margin-left: 0;
    position: relative;
    top: 25px;
    right: 35px;
    right: 6.7rem;
  }
}

@media (max-width: 991.98px) {
  #industries .industry-wheel .wheel-block i {
    margin-top: 0;
    width: 3.5rem;
    height: 5.5rem;
    margin-left: 0;
    position: relative;
    top: 25px;
    right: 35px;
    right: 6.7rem;
  }

  #industries .industry-wheel .wheel-block i svg {
    width: 100%;
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
}

#industries .industry-wheel .wheel-block.selected .ico,
#industries .industry-wheel .wheel-block:hover .ico {
  background-color: #fff;
}

#industries .metrics {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  #industries .metrics {
    top: -5rem;
  }
}

#industries .metrics-box {
  pointer-events: auto;
  position: absolute;
  left: 2.4rem;
  top: 0;
  bottom: auto;
  width: 39rem;
  padding: 3rem;
  padding-top: 6rem;
  background: #fff;
  border: 0.1rem solid #e3e3e3;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-box-shadow: 0 5.3rem 9rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 5.3rem 9rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-transform: translateY(0%) translateX(25rem);
  transform: translateY(0%) translateX(25rem);
  visibility: hidden;
  opacity: 0;
}

#industries .metrics-box:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 5rem;
  margin-left: -0.1rem;
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 1.5rem;
  border-left-color: #fff;
  display: none;
}

@media (max-width: 991.98px) {
  #industries .metrics-box:before {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 1.5rem;
    border-bottom-color: #fff;
    right: 50%;
    left: auto;
    top: auto;
    bottom: 100%;
    margin: 0;
    margin-right: -1.5rem;
    display: block;
  }
}

#industries .metrics-box.active {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-transform: translateY(0%) translateX(0);
  transform: translateY(0%) translateX(0);
  visibility: visible;
  opacity: 1;
}

#industries .metrics-box.active.d-hide {
  -webkit-transform: translateY(0%) translateX(25rem);
  transform: translateY(0%) translateX(25rem);
  visibility: hidden;
  opacity: 0;
}

#industries .metrics-box.activated,
#industries .metrics-box.activated.d-hide {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-transform: translateY(0%) translateX(0);
  transform: translateY(0%) translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991.98px) {
  #industries .metrics-box {
    top: 100%;
    bottom: auto;
    right: 0 !important;
    left: 0 !important;
    width: 100%;
    -webkit-transform: translateY(0%) translateX(0);
    transform: translateY(0%) translateX(0);
    padding: 1.5rem;
    padding-top: 6rem;
  }

  #industries .metrics-box.active {
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: translateY(-5%) translateX(0);
    transform: translateY(-5%) translateX(0);
    visibility: visible;
    opacity: 1;
  }

  #industries .metrics-box.active.d-hide {
    -webkit-transform: translateY(-5%) translateX(0rem);
    transform: translateY(-5%) translateX(0rem);
    visibility: hidden;
    opacity: 0;
  }

  #industries .metrics-box.activated,
  #industries .metrics-box.activated.d-hide {
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: translateY(-5%) translateX(0);
    transform: translateY(-5%) translateX(0);
    visibility: visible;
    opacity: 1;
  }
}

#industries .metrics-box .close {
  padding: 0;
  border: none;
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 1.5rem;
  top: 1.5rem;
}

#industries .metrics-box .close:after,
#industries .metrics-box .close:before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  background: #8d0034;
  display: block;
  pointer-events: none;
  right: 50%;
  top: 0;
}

#industries .metrics-box .close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#industries .metrics-box .close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#industries .metrics .h3,
#industries .metrics h3 {
  color: #8d0034;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 600;
}

#industries .metrics p {
  color: #344c60;
}

#industries .metrics-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  background: #f1f1f1;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
}

@media (max-width: 991.98px) {
  #industries .metrics-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

#industries .metrics-content .cell {
  padding: 3rem;
  border-top: 0.1rem solid #fff;
  width: 100%;
}

@media (max-width: 991.98px) {
  #industries .metrics-content .cell {
    padding: 1.5rem;
    border: 0.1rem solid #fff;
  }
}

#industries .metrics-content .h3,
#industries .metrics-content h3 {
  margin-bottom: 1rem;
}

#industries .metrics-content p:last-child {
  margin-bottom: 0;
}

#industries .metrics .btn-wrapper .btn {
  width: 100%;
}

#industries .metrics .nav-holder {
  padding-top: 1.2rem;
  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;
  gap: 0.5rem;
  position: absolute;
  right: 3rem;
  top: 1.2rem;
}

@media (max-width: 991.98px) {
  #industries .metrics .nav-holder {
    right: 1.5rem;
  }
}

#industries .metrics .nav-holder button.btn-next,
#industries .metrics .nav-holder button.btn-prev {
  border: none;
  background: transparent;
  border: 1px solid #858d9c;
  padding: 0;
  margin: 0;
  width: 2.4rem;
  height: 2.4rem;
  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;
}

#industries .metrics .nav-holder button.btn-next:before,
#industries .metrics .nav-holder button.btn-prev:before {
  content: "";
  border: 0.2rem solid #858d9c;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: transparent;
  display: block;
  position: relative;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#industries .metrics .nav-holder button.btn-next.disabled,
#industries .metrics .nav-holder button.btn-prev.disabled {
  opacity: 0.3;
}

#industries .metrics .nav-holder button.btn-prev:before {
  right: 0.2rem;
  border-left: none;
  border-top: none;
}

#industries .metrics .nav-holder button.btn-next:before {
  left: 0.2rem;
  border-right: none;
  border-bottom: none;
}


#industries {
  overflow: hidden
}

@media (max-width: 991.98px) {
  #industries {
      overflow:visible
  }
}

#industries .btn-primary {
    font-size: 27px;
}

.metrics-box p, .metrics-box p * {
  font-family: Cairo!important;
  zoom: 1.1;

}