@-webkit-keyframes ishare-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes ishare-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes ishare-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ishare-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.ishare-hero {
  position: relative;
  padding: 0 !important;
}
.ishare-hero__banner {
  position: relative;
}
.ishare-hero__banner .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), color-stop(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
  pointer-events: none;
}
.ishare-hero__banner .text-box {
  z-index: 10;
}
.ishare-hero__eyebrow p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8A35A;
  margin-bottom: 16px;
}
.ishare-hero__heading h1 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ishare-hero__desc p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 520px;
}
.ishare-hero__btn.button {
  border: 2px solid #C8A35A !important;
  background: transparent !important;
  border-radius: 4px !important;
  padding: 12px 28px !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.ishare-hero__btn.button span {
  color: #C8A35A !important;
  font-family: "Inter", "Open Sans", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}
.ishare-hero__btn.button:hover {
  background: #C8A35A !important;
}
.ishare-hero__btn.button:hover span {
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .ishare-hero__heading h1 {
    font-size: 32px;
  }
  .ishare-hero__desc p {
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .ishare-hero__heading h1 {
    font-size: 42px;
  }
}

.ishare-features {
  position: relative;
  z-index: 20;
  margin-top: -80px !important;
  padding: 0 !important;
}
.ishare-features__row {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.ishare-features__col {
  padding: 0 !important;
}
.ishare-features__card {
  background-color: #1C1C1E;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px !important;
  height: 100%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.ishare-features__card:hover {
  background-color: #2a2a2e;
}
.ishare-features__col:last-child .ishare-features__card {
  border-right: none;
}
.ishare-features__icon {
  margin-bottom: 16px;
}
.ishare-features__icon p {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(200, 163, 90, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.ishare-features__icon p i {
  font-size: 18px;
  color: #C8A35A;
}
.ishare-features__card:hover .ishare-features__icon p {
  background-color: rgba(200, 163, 90, 0.1);
}
.ishare-features__title h3 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
}
.ishare-features__text p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .ishare-features {
    margin-top: -40px !important;
  }
  .ishare-features__row {
    border-radius: 0;
  }
  .ishare-features__card {
    padding: 24px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }
}

.ishare-about {
  background-color: #F9FAFB;
}
.ishare-about__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ishare-about__left {
  padding-right: 48px !important;
}
.ishare-about__eyebrow p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8A35A;
  margin-bottom: 12px;
}
.ishare-about__heading h2 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.ishare-about__desc p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 24px;
}
.ishare-about__btn.button {
  border: 1px solid #1a1a1a !important;
  background: transparent !important;
  border-radius: 4px !important;
  padding: 10px 24px !important;
  margin-bottom: 0 !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.ishare-about__btn.button span {
  color: #1a1a1a !important;
  font-family: "Inter", "Open Sans", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.ishare-about__btn.button:hover {
  background: #1a1a1a !important;
}
.ishare-about__btn.button:hover span {
  color: #ffffff !important;
}
.ishare-about__stats {
  margin-top: 40px !important;
  padding-top: 32px !important;
  border-top: 1px solid #e5e7eb;
}
.ishare-about__stat-number p {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 6px;
}
.ishare-about__stat-label p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 10px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0;
}
.ishare-about__right {
  padding-left: 24px !important;
}
.ishare-about__image {
  border-radius: 8px;
  overflow: hidden;
}
.ishare-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .ishare-about__left {
    padding-right: 0 !important;
    margin-bottom: 40px;
  }
  .ishare-about__right {
    padding-left: 0 !important;
  }
  .ishare-about__heading h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .ishare-about__heading h2 {
    font-size: 24px;
  }
  .ishare-about__stat-number p {
    font-size: 24px;
  }
  .ishare-about__stats {
    margin-top: 24px !important;
    padding-top: 24px !important;
  }
}

.ishare-sectors {
  background-color: #ffffff;
}
.ishare-sectors__header {
  text-align: center;
  margin-bottom: 48px;
}
.ishare-sectors__title h2 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.ishare-sectors__underline {
  width: 60px;
  height: 3px;
  background: #C8A35A;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.ishare-sectors__underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.7)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  -webkit-animation: ishare-shimmer 2.5s infinite;
          animation: ishare-shimmer 2.5s infinite;
}
.ishare-sectors__grid {
  gap: 0;
}
.ishare-sectors__item {
  padding: 0 12px !important;
  margin-bottom: 24px;
}
.ishare-sectors__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ishare-sectors__card .box-image {
  position: relative;
  overflow: hidden;
}
.ishare-sectors__card .box-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.ishare-sectors__card .box-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.ishare-sectors__card .box-text {
  padding: 20px 16px !important;
  text-align: center;
}
.ishare-sectors__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.ishare-sectors__card:hover .box-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.ishare-sectors__card-icon p {
  width: 40px;
  height: 40px;
  background: #C8A35A;
  border-radius: 50%;
  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;
  margin: 0 auto 12px;
}
.ishare-sectors__card-icon p i {
  font-size: 16px;
  color: #ffffff;
}
.ishare-sectors__card-title h4 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ishare-sectors__card-desc p {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .ishare-sectors__title h2 {
    font-size: 24px;
  }
  .ishare-sectors__item {
    padding: 0 8px !important;
  }
}
@media (max-width: 768px) {
  .ishare-sectors__title h2 {
    font-size: 20px;
  }
  .ishare-sectors__card .box-image img {
    height: 180px;
  }
}

.ishare-news {
  background-color: #f9f7f4;
}
.ishare-news__header-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.ishare-news__title h2 {
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.ishare-news__view-all p {
  margin: 0;
}
.ishare-news__view-all a {
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #C8A35A;
  text-decoration: none;
  letter-spacing: 0.5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.ishare-news__view-all a:hover {
  color: #A6853E;
}
.ishare-news__posts .col.post-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
}
.ishare-news__posts .col.post-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.ishare-news__posts .box-image {
  overflow: hidden;
}
.ishare-news__posts .box-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.ishare-news__posts .col.post-item:hover .box-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.ishare-news__posts .box-text {
  padding: 20px 24px !important;
}
.ishare-news__posts .blog-post-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ishare-news__posts .blog-post-inner .post-meta {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  margin-bottom: 10px;
  display: block;
}
.ishare-news__posts .blog-post-inner .post-title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-family: "Inter", "SF Pro Display", sans-serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}
.ishare-news__posts .blog-post-inner .post-title a {
  color: #1a1a1a !important;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.ishare-news__posts .blog-post-inner .is-divider {
  display: none !important;
}
.ishare-news__posts .blog-post-inner .from_the_blog_excerpt {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-family: "Inter", "Open Sans", sans-serif;
  font-size: 13px !important;
  color: #6B7280 !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ishare-news__posts .col.post-item:hover .post-title a {
  color: #C8A35A !important;
}
@media (max-width: 1024px) {
  .ishare-news__title h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .ishare-news__header-row {
    margin-bottom: 24px;
  }
  .ishare-news__title h2 {
    font-size: 20px;
  }
  .ishare-news__view-all a {
    font-size: 12px;
  }
}