:root {
  scroll-behavior: smooth;
  /* Fonts */
  --font-primary: "Bronova", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  /*colors */
  --primary-color: #9747ff;
  --black-color: #121212;
  --black-light: #363636;
  /* font sizes */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-md: 1rem; /* 16px */
  --fs-l: 1.125rem; /*18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 1.75rem; /* 28px */
  --fs-3xl: 2rem; /* 32px */
  --fs-34: 2.125rem; /* 34px */
  --fs-36: 2.25rem; /* 36px */
  --fs-40: 2.5rem; /* 40px */
  /* font weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-bolder: 900;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  box-sizing: border-box;
  font-size: var(--fs-md);
  color: #212529;
}

/** Common Classes Section **/
i[class^=ri-] {
  font-size: 20px;
  vertical-align: middle;
}

.section-padding {
  padding: 60px 0px;
}

.common-title,
.banner-title {
  font-size: var(--fs-36);
  font-weight: var(--fw-bold);
  color: var(--black-color);
}
.common-title.bot-grad,
.banner-title.bot-grad {
  position: relative;
}
.common-title.bot-grad::after,
.banner-title.bot-grad::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e6d4ff 0%, #7572e3 25%, #f5aa83 72%, #db3227 100%);
}

.common-title {
  letter-spacing: 2px;
}
.common-title.primary-color {
  color: var(--primary-color);
}

.banner-title {
  color: var(--white-color);
  font-size: var(--fs-40);
  margin-bottom: 0px;
  line-height: 1.2;
  font-family: var(--font-secondary);
}

.common-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  min-width: 130px;
  text-align: center;
  vertical-align: middle;
  transition: scale 0.3s ease-in-out;
}
.common-btn img {
  width: 12px;
  margin-left: 4px;
}
.common-btn:hover {
  scale: 1.05;
  color: #fff;
}
.common-btn.secondary-btn {
  background-color: #fff;
  color: #672f8c;
  border-color: #fff;
}
.common-btn.secondary-btn:hover {
  background-color: #672f8c;
  color: #fff;
  border-color: #672f8c;
}

.main-padding {
  padding-top: 94px;
}

.view-more-link {
  display: inline-block;
  text-decoration: none;
  font-style: italic;
  color: var(--grey-color);
  font-weight: var(--fw-bold);
}

/** End Common Classes Section **/
/** Header Section **/
header {
  width: 100%;
  padding: 15px 0px;
  border-bottom: 1px solid #fff;
  position: relative;
}
header .logo img {
  width: auto;
  height: 34px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .logo img.gray-logo {
  display: none;
}
header .menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
  padding-left: 0;
  margin-bottom: 0px;
}
header .menu ul li {
  list-style: none;
}
header .menu ul li a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}
header .menu ul li:hover a {
  border-bottom: 1px solid #fff;
}

.toggle-menu-cont {
  display: none;
}

.toggle-menu {
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.toggle-menu i {
  display: block;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
.toggle-menu.active i:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.toggle-menu.active i:nth-child(2) {
  opacity: 0;
}
.toggle-menu.active i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 110%;
  background-position: right top;
  transition: background-position 3s ease-in-out;
}
.hero-section:hover {
  background-position: left center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 12, 0.98) 0%, rgba(5, 8, 18, 0.96) 15%, rgba(10, 15, 28, 0.92) 32%, rgba(15, 22, 40, 0.82) 48%, rgba(20, 30, 52, 0.6) 65%, rgba(28, 42, 70, 0.28) 82%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.hero-section > * {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 65px);
  color: #fff;
}
.hero-section .hero-content h1 {
  margin: 20px 0px;
}
.hero-section .hero-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0px;
}
.hero-section .hero-content p:first-child {
  font-size: 16px;
}
.hero-section .hero-content p.last-para {
  font-size: 18px;
  line-height: normal;
}
.hero-section .hero-content .cta-btn {
  margin-top: 40px;
}

/** End Header Section **/
/***** Three Pillars Section *****/
.three-pillars--section {
  overflow: hidden;
  padding: 40px 0px 30px;
  background-image: url("../images/pillar_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.three-pillars--section .three-pillars-box {
  min-height: 480px;
  position: relative;
  padding: 75px 0px 20px 35px;
}
.three-pillars--section .three-pillars-box::after, .three-pillars--section .three-pillars-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px;
  background: linear-gradient(90deg, rgba(88, 88, 88, 0.42) 0%, rgba(88, 88, 88, 0.32) 78%, rgba(190, 190, 190, 0.5) 92%, rgba(190, 190, 190, 0) 100%);
}
.three-pillars--section .three-pillars-box::after {
  width: 200%;
  height: 0.6px;
}
.three-pillars--section .three-pillars-box::before {
  width: 0.6px;
  height: 80%;
  background: linear-gradient(180deg, rgba(88, 88, 88, 0.42) 0%, rgba(88, 88, 88, 0.32) 78%, rgba(190, 190, 190, 0.5) 92%, rgba(190, 190, 190, 0) 100%);
}
.three-pillars--section .three-pillars-box .threePillarsSlider {
  overflow: visible;
}
.three-pillars--section .three-pillars-box .threePillarsSlider .swiper-wrapper {
  flex-wrap: wrap;
}
.three-pillars--section .three-pillars-box .threePillarsSlider .swiper-slide {
  height: auto;
}
.three-pillars--section .three-pillars-box .threePillarsPagination {
  display: none;
}
.three-pillars--section .three-pillars-box .pillar-box {
  width: 100%;
  aspect-ratio: 7/10;
  border: 1px solid #672f8c;
  max-height: 450px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-sizing: content-box;
}
.three-pillars--section .three-pillars-box .pillar-box > * {
  position: relative;
  z-index: 4;
}
.three-pillars--section .three-pillars-box .pillar-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
  z-index: 2;
}
.three-pillars--section .three-pillars-box .pillar-box .border-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
  z-index: 3;
}
.three-pillars--section .three-pillars-box .pillar-box .border-box::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 75%;
  height: 10px;
  background-color: #672f8c;
  transition: width 0.3s ease-in-out;
}
.three-pillars--section .three-pillars-box .pillar-box.box-2 {
  margin-top: -25px;
}
.three-pillars--section .three-pillars-box .pillar-box.box-2 .content h3 {
  color: #fff;
}
.three-pillars--section .three-pillars-box .pillar-box.box-2 .full-content h3,
.three-pillars--section .three-pillars-box .pillar-box.box-2 .full-content p {
  color: #fff;
}
.three-pillars--section .three-pillars-box .pillar-box.box-2 .border-box:after {
  background-color: #eccfff;
}
.three-pillars--section .three-pillars-box .pillar-box.box-3 {
  margin-top: -50px;
}
.three-pillars--section .three-pillars-box .pillar-box img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 2;
}
.three-pillars--section .three-pillars-box .pillar-box .content,
.three-pillars--section .three-pillars-box .pillar-box .full-content {
  position: absolute;
  inset: 0;
  padding: 54px 20px 20px;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}
.three-pillars--section .three-pillars-box .pillar-box .content h3,
.three-pillars--section .three-pillars-box .pillar-box .full-content h3 {
  color: var(--black-color);
  font-weight: 600;
  font-size: var(--fs-xl);
}
.three-pillars--section .three-pillars-box .pillar-box .content p,
.three-pillars--section .three-pillars-box .pillar-box .full-content p {
  margin-top: 20px;
  color: #555555;
}
.three-pillars--section .three-pillars-box .pillar-box .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.three-pillars--section .three-pillars-box .pillar-box .full-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  padding: 20px;
}
.three-pillars--section .three-pillars-box .pillar-box:hover {
  border: 0;
  border-bottom: 10px solid #672f8c;
}
.three-pillars--section .three-pillars-box .pillar-box:hover .border-box::after {
  width: 0px;
}
.three-pillars--section .three-pillars-box .pillar-box:hover::after {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 182, 193, 0.1);
}
.three-pillars--section .three-pillars-box .pillar-box:hover .content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
.three-pillars--section .three-pillars-box .pillar-box:hover .full-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .three-pillars--section .three-pillars-box .threePillarsSlider .swiper-wrapper {
    transform: none !important;
  }
  .three-pillars--section .three-pillars-box .threePillarsSlider .swiper-slide {
    flex-shrink: initial;
    width: 33.333333% !important;
  }
}
@media (max-width: 767px) {
  .three-pillars--section {
    padding: 30px 0px 0px;
  }
  .three-pillars--section .three-pillars-box {
    min-height: auto;
    padding: 45px 0px 20px 20px;
  }
  .three-pillars--section .three-pillars-box::after {
    left: 16px;
  }
  .three-pillars--section .three-pillars-box::before {
    left: 16px;
    height: 70%;
  }
  .three-pillars--section .three-pillars-box .threePillarsSlider {
    overflow: hidden;
    padding-right: 20px;
  }
  .three-pillars--section .three-pillars-box .threePillarsSlider .swiper-wrapper {
    flex-wrap: nowrap;
  }
  .three-pillars--section .three-pillars-box .threePillarsSlider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
  .three-pillars--section .three-pillars-box .threePillarsPagination {
    display: flex;
    text-align: center;
    margin-top: 20px;
  }
  .three-pillars--section .three-pillars-box .pillar-box {
    max-height: none;
    aspect-ratio: 7/10;
  }
  .three-pillars--section .three-pillars-box .pillar-box.box-2, .three-pillars--section .three-pillars-box .pillar-box.box-3 {
    margin-top: 0;
  }
  .three-pillars--section .three-pillars-box .pillar-box .content,
  .three-pillars--section .three-pillars-box .pillar-box .full-content {
    padding: 45px 18px 18px;
  }
  .three-pillars--section .three-pillars-box .pillar-box .full-content {
    padding: 18px;
  }
}
/***** End Three Pillars Section *****/
/***** Services Section *****/
.services-section {
  min-height: 80vh;
  background-image: url("../images/services_bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top;
  overflow: hidden;
  padding: 40px 0px;
}
.services-section .common-title {
  margin-top: 20px;
}
.services-section .common-title.bot-grad::after {
  display: none;
}
.services-section .services {
  min-height: 80vh;
  position: relative;
  padding: 70px 70px 20px 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services-section .services::before, .services-section .services::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background-color: rgba(88, 88, 88, 0.6);
}
.services-section .services::before {
  width: 200%;
  height: 0.6px;
}
.services-section .services::after {
  width: 0.6px;
  height: 100%;
}
.services-section .services .service-box {
  background: #fff;
  border-radius: 12px;
  max-width: 380px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}
.services-section .services .service-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 50px);
  height: 1.5px;
  width: 400px;
  background-color: rgba(174, 174, 174, 0.5);
}
.services-section .services .service-box .service-child-box {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 16px 20px 16px 26px;
}
.services-section .services .service-box .service-child-box .left-border {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 12px;
  background: linear-gradient(180deg, #d8b8ff 0%, #8b3dff 100%);
  height: 100%;
}
.services-section .services .service-box .service-child-box .service-content h3 {
  color: #363636;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  transition: 0.3s ease;
}
.services-section .services .service-box .service-child-box .service-content .service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.services-section .services .service-box .service-child-box .service-content p {
  color: #444444;
  font-size: 13px;
  margin-bottom: 0px;
  line-height: 1.7;
}
.services-section .services .service-box.active {
  box-shadow: 0 2px 12px rgba(138, 74, 243, 0.18);
}
.services-section .services .service-box.active .service-content h3 {
  border-bottom: 1.5px solid rgba(174, 174, 174, 0.5);
  padding-bottom: 7px;
  margin-bottom: 14px;
}
.services-section .services .service-box.active .service-content .service-description {
  max-height: 300px;
}

/***** End Services Section *****/
/***** Counter Section *****/
.counter-section .counter-box {
  width: 100%;
  aspect-ratio: 10/4;
  height: 100%;
  padding: 15px;
  min-height: 180px;
}
.counter-section .counter-box.box-1 {
  background: linear-gradient(135deg, #2d0f4a 0%, #4d1f7c 45%, #6b2db3 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.counter-section .counter-box.box-1 .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0px;
}
.counter-section .counter-box.box-1 .content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px;
}
.counter-section .counter-box.box-2 {
  border: 1px solid #9747ff;
}
.counter-section .counter-box.box-2 .stats-box {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.counter-section .counter-box.box-2 .stats-box h2 {
  color: #9747ff;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
  line-height: normal;
}
.counter-section .counter-box.box-2 .stats-box .divider {
  width: 70%;
  margin: 0px auto;
  height: 0.5px;
  background: rgba(151, 71, 255, 0.4);
}
.counter-section .counter-box.box-2 .stats-box p {
  margin-bottom: 0px;
  color: #555555;
}
.counter-section .counter-box.box-3 {
  padding: 0px;
}
.counter-section .counter-box.box-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.counter-section .counter-box.box-5 {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: end;
  align-items: center;
}
.counter-section .counter-box.box-5::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../images/box_5.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s ease;
}
.counter-section .counter-box.box-5:hover::before {
  transform: scale(1.12);
}
.counter-section .counter-box.box-5 .content {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  width: 45%;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 20px;
}

/***** End Counter Section *****/
/***** industary slider Section *****/
.industry-slider-section {
  background-image: url("../images/slider_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
}
.industry-slider-section .common-title {
  position: relative;
  z-index: 3;
  padding: 20px 30px;
  margin-bottom: -20px;
}
.industry-slider-section .slider-section {
  position: relative;
}
.industry-slider-section .slider-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 75%;
  background-color: #fff;
}
.industry-slider-section .slider-section .industry-slider-wrap {
  display: flex;
  align-items: center;
  gap: 70px;
}
.industry-slider-section .slider-section .industry-left {
  width: 55%;
  overflow: hidden;
}
.industry-slider-section .slider-section .industry-right {
  width: 45%;
  overflow: hidden;
}
.industry-slider-section .slider-section .industryTextSlider {
  height: 212px;
  overflow: hidden;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-wrapper {
  align-items: center;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-slide {
  height: 56px !important;
  opacity: 0.25;
  transform: scale(0.92);
  transition: all 0.5s ease;
  z-index: 1;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-slide .industry-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #eee;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #cfcfcf;
  cursor: pointer;
  transition: all 0.5s ease;
  text-align: center;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-slide.swiper-slide-prev, .industry-slider-section .slider-section .industryTextSlider .swiper-slide.swiper-slide-next {
  opacity: 0.45;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 3;
}
.industry-slider-section .slider-section .industryTextSlider .swiper-slide.swiper-slide-active .industry-item {
  color: #4b4b4b;
  box-shadow: 0 2px 12px rgba(138, 74, 243, 0.18);
}
.industry-slider-section .slider-section .industryImageSlider {
  height: 375px;
  overflow: hidden;
}
.industry-slider-section .slider-section .industryImageSlider .swiper-slide {
  height: 300px !important;
  overflow: hidden;
}
.industry-slider-section .slider-section .industryImageSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/***** End industary slider Section *****/
/***** Our leadership Section *****/
.our-leadership--section {
  padding-top: 30px;
}
.our-leadership--section .common-title {
  display: inline-block;
  margin-bottom: 30px;
}
.our-leadership--section .common-title::after {
  bottom: 0px;
}
.our-leadership--section .leader-slider {
  position: relative;
  overflow: hidden;
}
.our-leadership--section .leader-slider .leader-slide {
  height: auto;
}
.our-leadership--section .leader-box {
  display: flex;
  align-items: end;
  background: url("../images/leaders_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.our-leadership--section .leader-box .content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.our-leadership--section .leader-box .content .leader-img {
  width: 400px;
  position: relative;
  z-index: 2;
}
.our-leadership--section .leader-box .content .leader-img img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.our-leadership--section .leader-box .content .leader-img img.quote {
  position: absolute;
  z-index: 1;
  left: 0px;
  max-height: 100%;
}
.our-leadership--section .leader-box .content .about {
  width: calc(100% - 400px);
  position: relative;
  padding-right: 60px;
}
.our-leadership--section .leader-box .content .about h2 {
  font-size: 30px;
  font-weight: 700;
}
.our-leadership--section .leader-box .content .about .designation {
  color: #672f8c;
  font-weight: 700;
  margin: 24px 0px 14px;
}
.our-leadership--section .leader-box .content .about .description {
  color: #171c37;
  font-size: 15px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.our-leadership--section .leader-box .content .about .quote {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 35px;
  height: auto;
}
.our-leadership--section .leader-box .content .about .secondary-btn {
  background-color: #e7e7e7;
  border: 0px;
  font-weight: 500;
}
.our-leadership--section .leader-box .content .about .secondary-btn:hover {
  color: #672f8c;
}
.our-leadership--section .leader-box .content .about .leader-progress {
  margin-top: 20px;
  width: 80%;
  height: 8px;
  background: #f5f5f5;
}
.our-leadership--section .leader-box .content .about .leader-progress-fill {
  width: 0%;
  height: 100%;
  background: #9747ff;
}
.our-leadership--section .leader-box .content .about .leader-progress-fill.animate {
  animation: leaderProgress 6s linear forwards;
}
@keyframes leaderProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.our-leadership--section .leader-box .content .leader-slider-nav {
  position: absolute;
  top: 5rem;
  transform: translateY(-50%);
  right: 0px;
  z-index: 10;
}
.our-leadership--section .leader-box .content .leader-slider-nav .leader-nav-btn {
  border: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  background-color: #9747ff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}
.our-leadership--section .leader-box .content .leader-slider-nav .leader-nav-btn img {
  width: 8px;
}
.our-leadership--section .leader-box .content .leader-slider-nav .leader-nav-btn:hover {
  background: #672f8c;
  color: #fff;
}
.our-leadership--section .leader-box .content .leader-slider-nav .leader-nav-btn.leader-prev img {
  rotate: 180deg;
}

/***** End Our leadership Section *****/
/***** Trade Section *****/
.trade-section {
  min-height: 70vh;
  background-image: url("../images/map_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 40px 0px;
  display: flex;
  align-items: center;
}
.trade-section .trade-content .content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}
.trade-section .trade-content .content h2:first-child {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}
.trade-section .trade-content .content p {
  position: relative;
  padding: 0px 0px 10px 15px;
}
.trade-section .trade-content .content p span {
  color: #121212;
}
.trade-section .trade-content .content p a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}
.trade-section .trade-content .content p a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.trade-section .trade-content .content p::before, .trade-section .trade-content .content p::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.6);
  height: 1px;
  width: 40%;
}
.trade-section .trade-content .content p::after {
  height: 75%;
  width: 1px;
}

/***** End Trade Section *****/
/** Footer Section **/
footer {
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px 120px;
}
footer .left-box .footer-logo img {
  width: 100%;
}
footer .left-box .social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
footer .left-box .social-media a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .left-box .social-media a:hover {
  scale: 1.05;
}
footer .left-box .social-media img {
  width: 14px;
  height: auto;
}
footer .left-box .copy-para {
  color: rgba(54, 54, 54, 0.5);
  font-size: 8px;
  margin: 40px 0px 0px;
}
footer .right-box {
  padding-top: 16px;
}
footer .right-box p {
  color: #363636;
  font-size: 13px;
  line-height: 1.2;
}
footer .right-box .offers-listed {
  margin-top: 40px;
}
footer .right-box .offers-listed span {
  font-weight: 700;
  font-size: 14px;
}
footer .right-box .offers-listed ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-left: 8px;
  margin-bottom: 0px;
  margin-top: 8px;
}
footer .right-box .offers-listed ul li {
  list-style: none;
  position: relative;
}
footer .right-box .offers-listed ul li a {
  color: #585858;
  text-decoration: none;
  font-size: 12px;
}
footer .right-box .offers-listed ul li.popup {
  cursor: pointer;
  padding-right: 20px;
}
footer .right-box .offers-listed ul li.popup:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center center;
  width: 8px;
  height: 4px;
  background-image: url("../images/icons/top-angle.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
footer .right-box .offers-listed ul li:hover a, footer .right-box .offers-listed ul li.active a {
  color: #672f8c;
}
footer .right-box .offers-listed ul li:hover:before, footer .right-box .offers-listed ul li.active:before {
  filter: brightness(0) saturate(100%) invert(21%) sepia(38%) saturate(1718%) hue-rotate(251deg) brightness(89%) contrast(91%);
}
footer .right-box .offers-listed ul li.active:before {
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) saturate(100%) invert(21%) sepia(38%) saturate(1718%) hue-rotate(251deg) brightness(89%) contrast(91%);
}
footer .right-box .offers-listed ul li.active .address {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
footer .right-box .offers-listed ul li .address {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #f1d5f8;
  box-shadow: rgba(103, 47, 140, 0.12) 0px 1px 2px 0px;
  color: #655f68;
  width: 190px;
  font-size: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/** End Footer Section **/
@media screen and (min-width: 1400px) {
  .three-pillars--section .three-pillars-box .pillar-box {
    max-height: inherit !important;
  }
}/*# sourceMappingURL=custom.css.map */