@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: Inter;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li,
ol {
  list-style: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

h1 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.375rem;
  margin-bottom: 1.25rem;
}

h2 {
  color: #000;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.75rem;
}

p {
  color: var(--Paragraph, #535353);
  margin-bottom: 0;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 16px 10px;
  /* Add padding for better UI */
  background-color: #fff;
  /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

button:focus {
  outline: none !important;
}

.btn {
  padding: 0.875rem 1.875rem;
  gap: 0.625rem;
  border-radius: 1.875rem;
  background: #3b2a3f;
  color: #fff;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease-in;
}
.btn.gry {
  background-color: #5a6761;
}
.btn:hover {
  background: #32103a;
  color: #fff;
}

header {
  width: 100%;
  z-index: 9;
}
header .menu_area {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu_area .main_logo {
  max-width: 16.875rem;
}
header .menu_area .main_logo img {
  width: 100%;
}
header .menu_area .main_links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header .menu_area .main_links ul {
  gap: 1.2rem;
}
header .menu_area .main_links ul li {
  padding: 0;
}
header .menu_area .main_links ul li a {
  color: #111513;
  font-family: Inter;
  font-size: 1.025rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 2.75rem 0;
  position: relative;
}
header .menu_area .main_links ul li a::before {
  display: none;
}
header .menu_area .main_links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.25rem;
  border-radius: 0.25rem 0.25rem 0 0;
  background: var(--Color, #3b2a3f);
  opacity: 0;
  transition: all 0.4s ease;
}
header .menu_area .main_links ul li a:hover::after, header .menu_area .main_links ul li a.active::after {
  opacity: 1;
}
header .menu_area .main_links ul li.current-menu-item a::after {
  opacity: 1;
}
header .menu_area .main_links ul li.active a::after {
  opacity: 1;
}

.brdcamp {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brdcamp li {
  color: #fff;
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.brdcamp li a {
  color: #fff;
  position: relative;
  padding-right: 2.6rem;
}
.brdcamp li a::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/brdcamp-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.heroSec {
  position: relative;
}
.heroSec .bg {
  width: 100%;
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.heroSec .top {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 9.88rem 0 8rem;
}
.heroSec .top p {
  color: #fff;
  margin-bottom: 1.75rem;
  font-weight: 300;
  max-width: 39rem;
}
.heroSec #scrollDown {
  position: absolute;
  bottom: 5rem;
  right: 8.94rem;
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroSec #scrollDown img {
  width: 2.5rem;
  height: 2.5rem;
}
.heroSec.innerBanner .top {
  padding: 5.94rem 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.heroSec.innerBanner .top h1 {
  margin-bottom: 1.55rem;
}

.homeSec2 {
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
.homeSec2 .vectr1 {
  position: absolute;
  top: 42px;
  right: -102px;
  width: 13rem;
  height: 16rem;
}
.homeSec2 .row {
  align-items: center;
}
.homeSec2 .sideImg {
  width: 100%;
  border-radius: 0.75rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeSec2 h2 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.homeSec2 p {
  margin-bottom: 1.75rem;
}
.homeSec2 .link {
  color: var(--Color-3, #5a3f61);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border-bottom: 1px solid #5a3f61;
}

.homeSec3 {
  padding: 5rem 0;
  position: relative;
  background-color: #f7f5f7;
}
.homeSec3 .row {
  row-gap: 2rem;
}
.homeSec3 .vectr1 {
  position: absolute;
  top: 0;
  left: -104px;
  width: 16rem;
  height: 9.7rem;
}
.homeSec3 h2 {
  margin-bottom: 2.5rem;
}
.homeSec3 .cardWrp {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #ccc;
}
.homeSec3 .cardWrp .img {
  width: 100%;
}
.homeSec3 .cardWrp .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 18rem;
}
.homeSec3 .cardWrp .txt {
  padding: 1.25rem;
}
.homeSec3 .cardWrp .txt p {
  color: #000;
  font-weight: 300;
  margin-bottom: 1rem;
}
.homeSec3 .cardWrp .txt .rdMore {
  color: #000;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  display: inline-flex;
  gap: 0.62rem;
}
.homeSec3 .cardWrp .txt .rdMore img {
  width: 1.37rem;
}
.homeSec3 .cardWrp .txt h3 a {
  color: #000;
  transition: all 0.3s ease;
}
.homeSec3 .cardWrp .txt h3:hover a {
  color: #c4a7ca;
}
.homeSec3 .cardWrp .date {
  color: #000;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.87rem;
}
.homeSec3 .cardWrp .date img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) saturate(100%) invert(0%) sepia(90%) saturate(7461%) hue-rotate(157deg) brightness(89%) contrast(108%);
}
.homeSec3 .btn.gry {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
}

.homeSec4 {
  padding: 6.25rem 0 5.25rem;
  position: relative;
  overflow: hidden;
  background: #f7f5f7;
}
.homeSec4 h2 {
  text-align: center;
}
.homeSec4 p {
  text-align: center;
  max-width: 54rem;
  margin: 0 auto;
}
.homeSec4 .vectr1 {
  position: absolute;
  top: 14px;
  right: -44px;
  width: 13rem;
  height: 16rem;
}

footer {
  background-color: #3b2a3f;
  padding: 2.5rem 0 1.88rem;
}
footer .footLink {
  margin-bottom: 1.75rem;
  max-width: 14rem;
}
footer p {
  color: #e1e1e1;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem;
  margin-bottom: 1.75rem;
}
footer .social_links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer .social_links li a {
  width: 3.12rem;
  height: 3.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  color: #3b2a3f;
  font-size: 1.6rem;
}
footer .links h5 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.75rem;
}
footer .links ul li {
  margin-bottom: 1.25rem;
}
footer .links ul li:last-child {
  margin-bottom: 0;
}
footer .links ul li a {
  color: #e1e1e1;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
footer .row {
  border-bottom: 1px solid #fff;
  padding-bottom: 2.25rem;
  margin-bottom: 1.5rem;
}
footer .row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
footer .row:last-child p {
  text-align: center;
  margin-bottom: 0;
}

.aboutUsSec2 {
  padding: 6.44rem 0 6.75rem;
  position: relative;
  overflow: hidden;
}
.aboutUsSec2 .vectr1 {
  position: absolute;
  top: 146px;
  right: -98px;
  width: 13rem;
  height: 16rem;
}
.aboutUsSec2 h2 {
  margin-bottom: 1.25rem;
  text-align: left;
}
.aboutUsSec2 .txt p {
  margin-bottom: 2.67rem;
}
.aboutUsSec2 .txt p:last-child {
  margin-bottom: 0;
}
.aboutUsSec2 .sideImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}
.aboutUsSec2.strategic p {
  margin-bottom: 1.25rem;
}

.has-list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  margin-bottom: 1.87rem;
}
.has-list ul li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
  color: var(--Paragraph, #535353);
  /* Inter */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  /* 180% */
}
.has-list ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(105, 55, 105, 0.2);
  position: relative;
  border-radius: 50%;
  flex: 1 0 1.875rem;
  width: 1.375rem;
  height: 1.375rem;
  max-width: 1.375rem;
}
.has-list ul li span::before {
  content: "";
  /* width: 7px; */
  background-color: rgba(69, 6, 81, 0.06);
  border-radius: 50%;
  position: absolute;
  inset: -6px;
}
.has-list ul li span img {
  aspect-ratio: 1/1;
  width: 0.50313rem;
  height: 0.67188rem;
}
.has-list.white ul li {
  color: var(--White, #fff);
}
.has-list.white ul li span {
  background-color: rgba(255, 255, 255, 0.2);
}
.has-list.white ul li span::before {
  background-color: rgba(228, 219, 228, 0.08);
}

.purple-bg {
  background: #3b2a3f !important;
}

.aboutUsSec2.aboutUsSec3 {
  background-color: #3b2a3f;
  padding: 5rem 0;
}
.aboutUsSec2.aboutUsSec3 h2 {
  color: #fff;
}
.aboutUsSec2.aboutUsSec3 .txt p {
  color: #fff;
}
.aboutUsSec2.aboutUsSec3 .txt p:last-child {
  margin-bottom: 2.07rem;
}

.aboutUsSec2.aboutUsSec4 {
  background-color: #3b4742;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.aboutUsSec2.aboutUsSec4 .vectr2 {
  position: absolute;
  top: -46px;
  left: -57px;
  width: 16rem;
  height: 9.7rem;
}
.aboutUsSec2.aboutUsSec4 .row {
  flex-direction: row-reverse;
}
.aboutUsSec2.aboutUsSec4 h2 {
  color: #fff;
}
.aboutUsSec2.aboutUsSec4 h4 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.88rem;
}
.aboutUsSec2.aboutUsSec4 .txt p {
  color: #fff;
  margin-bottom: 1.27rem;
  font-weight: 300;
}

.aboutUsSec2.aboutUsSec5 {
  padding: 6.25rem 0;
}
.aboutUsSec2.aboutUsSec5 .row {
  align-items: center;
}
.aboutUsSec2.aboutUsSec5 .vectr1 {
  position: absolute;
  top: 15px;
  right: -41px;
  width: 13rem;
  height: 16rem;
}
.aboutUsSec2.aboutUsSec5 .sideImg {
  border-radius: 0;
}

.badge {
  color: var(--Color-5, #2f3a36);
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 1.3rem */
  display: inline-flex;
  padding: 0.625rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  border-radius: 3.125rem;
  border: 1px solid rgba(72, 72, 72, 0.23);
  background: rgba(90, 103, 97, 0.11);
}

.engage .container {
  position: relative;
}
.engage .engage-row {
  text-align: center;
}
.engage .engage-row + .row {
  flex-direction: row-reverse;
  align-items: stretch;
}
.engage .engage-row h2 {
  text-align: center;
  margin-bottom: 2.31rem;
}
.engage #textSlider,
.engage #imageSlider {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .engage #textSlider,
  .engage #imageSlider {
    height: unset;
  }
}
.engage .owl-carousel .owl-stage-outer {
  padding-top: 1.25rem;
}
.engage .owl-item,
.engage .owl-stage,
.engage .owl-stage-outer,
.engage .owl-carousel .owl-item,
.engage .item,
.engage .image-item,
.engage .text-card,
.engage .image-column {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .engage .owl-item,
  .engage .owl-stage,
  .engage .owl-stage-outer,
  .engage .owl-carousel .owl-item,
  .engage .item,
  .engage .image-item,
  .engage .text-card,
  .engage .image-column {
    height: unset;
  }
}
.engage .text-card {
  border-radius: 0.75rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 1.5rem;
  position: relative;
}
.engage .text-card .scenario-badge {
  position: absolute;
  top: -1.25rem;
  left: 1.56rem;
  display: flex;
  width: 8.3125rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.875rem;
  background: var(--Color-8, #5a6761);
  color: #fff;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.engage .text-card p {
  color: #e1e1e1;
  /* Inter */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  /* 180% */
  margin-bottom: 1rem;
}
.engage .text-card .card-title {
  margin-bottom: 0.75rem;
}
.engage .text-card ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.engage .text-card ul:last-of-type {
  margin-bottom: 0;
}
.engage .text-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e1e1e1;
  /* Inter */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  /* 180% */
}
.engage .text-card ul li span {
  width: 1.375rem;
  height: 1.375rem;
  aspect-ratio: 1/1;
  background-color: #5a6761;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1.375rem;
  flex: 1 0 1.375rem;
}
.engage .text-card ul li span:before {
  display: none;
}
.engage .text-card ul li span img {
  width: 0.68994rem;
}
.engage .image-item {
  border-radius: 0.75rem;
  overflow: hidden;
}
.engage .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.engage .custom-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}
.engage .custom-nav .nav-btn {
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--Color-8, #5a6761);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.engage .custom-nav .nav-btn:hover {
  background-color: #5a6761;
}

.greenbg {
  background: #4a5751 !important;
}

.reverse-normal .row {
  flex-direction: unset !important;
}

.aboutUsSec2.organizations h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
}
.aboutUsSec2.organizations .badge {
  border-radius: 1.875rem;
  background: var(--Color-8, #5a6761);
  color: #fff;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: -1.25rem;
  left: 1.56rem;
}
.aboutUsSec2.organizations .text {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 3.5rem 1.56rem 1.94rem;
  height: 100%;
}
.aboutUsSec2.organizations p {
  color: #e1e1e1;
  /* Inter */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  /* 180% */
  margin-bottom: 2.25rem;
}
.aboutUsSec2.organizations p:last-of-type {
  margin-bottom: 0;
}
.aboutUsSec2.speaker .badge {
  display: flex;
  width: 20.9375rem;
  padding: 2.25rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: var(--Color, #3b2a3f);
  color: var(--White, #fff);
  font-family: "Playfair Display";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  margin: -40px auto 0;
  position: relative;
}
.aboutUsSec2.cta {
  text-align: center;
}
.aboutUsSec2.cta .vectr1 {
  top: 0;
}
.aboutUsSec2.cta h2 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.88rem;
}
.aboutUsSec2.useful p {
  font-size: 1.25rem !important;
}

.insightouter {
  padding: 6.25rem 0;
}
.insightouter .row {
  gap: 1.87rem 0;
}
.insightouter .insight-bx {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}
.insightouter .insight-bx .insight-img img {
  width: 100%;
}
.insightouter .insight-bx .insight-text {
  padding: 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  border: 1px solid rgba(59, 42, 63, 0.3);
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: none;
}
.insightouter .insight-bx .insight-text p {
  margin-bottom: 0.31rem;
}
.insightouter .insight-bx .insight-text h3 {
  color: var(--Black, #000);
}
.insightouter .insight-bx .insight-text .date {
  color: var(--Color, #3b2a3f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 0.87rem;
}
.insightouter .insight-bx .insight-text .date i {
  color: var(--Color, #3b2a3f);
}
.insightouter .insight-bx .insight-text a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--Color, #3b2a3f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 162.5% */
}

.insight-bx {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}
.insight-bx .insight-img img {
  width: 100%;
  height: 17rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.insight-bx .insight-text {
  padding: 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  border: 1px solid rgba(59, 42, 63, 0.3);
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: none;
}
.insight-bx .insight-text p {
  margin-bottom: 0.31rem;
}
.insight-bx .insight-text h3 {
  color: var(--Black, #000);
}
.insight-bx .insight-text .date {
  color: var(--Color, #3b2a3f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 0.87rem;
}
.insight-bx .insight-text .date i {
  color: var(--Color, #3b2a3f);
}
.insight-bx .insight-text a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--Color, #3b2a3f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 162.5% */
}

.pagination-container {
  margin-top: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.375rem;
}
.pagination-container .page-count {
  color: #000;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 100% */
}
.pagination-container .next-page {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0.25rem;
  border: 1px solid var(--Color, #3b2a3f);
  background-color: white;
  /* Interactive States */
}
.pagination-container .next-page:hover {
  background-color: #f5f5f5;
  border-color: #6b6070;
}
.pagination-container .next-page:active {
  transform: scale(0.96);
}

.insightdetails-outer {
  padding: 3.75rem 0 6.25rem;
}
.insightdetails-outer h2 {
  text-align: left;
  margin-bottom: 2.19rem;
}
.insightdetails-outer img {
  width: 100%;
  margin-bottom: 2.06rem;
}
.insightdetails-outer .date {
  color: var(--Color, #3b2a3f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 0.87rem;
}
.insightdetails-outer .date i {
  color: var(--Color, #3b2a3f);
}
.insightdetails-outer h4 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  margin-top: 1.25rem;
}
.insightdetails-outer h4:first-of-type {
  margin-top: 0;
}
.insightdetails-outer p {
  color: var(--Paragraph, #535353);
  /* Inter */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  /* 180% */
  margin-bottom: 0.75rem;
}
.insightdetails-outer p:last-of-type {
  margin-bottom: 0;
}

.related-blogs {
  padding-bottom: 6.12rem;
}
.related-blogs h2 {
  margin-bottom: 2.19rem;
}
.related-blogs .row {
  gap: 1.87rem 0;
}
.related-blogs .insight-bx .insight-text h3 {
  min-height: 4rem;
}

.contact-sec {
  padding: 6.25rem 0;
}
.contact-sec .leftsec {
  display: flex;
  padding: 2.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
  border-radius: 1.5rem;
  background: #f7f5f7;
}
.contact-sec .leftsec h2 {
  margin-bottom: 0;
}
.contact-sec .leftsec ul {
  width: 100%;
}
.contact-sec .leftsec ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #dbd5d5;
}
.contact-sec .leftsec ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-sec .leftsec ul li .icon {
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.9375rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  color: white;
  font-size: 25px;
  border-radius: 0.41669rem;
  background: var(--Color-3, #5a3f61);
}
.contact-sec .leftsec ul li .text h3 {
  color: var(--Black, #000);
  margin-bottom: 0.5rem;
}
.contact-sec .leftsec ul li .text p {
  color: var(--Black, #000);
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-sec .leftsec ul li .text p a {
  color: var(--Black, #000);
}
.contact-sec .rightsec .img-top {
  width: 100%;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.contact-sec .rightsec .content-p p {
  margin-bottom: 2.25rem;
}
.contact-sec .rightsec .content-btn .btn {
  margin-top: 0;
}

.purple-bg.text-white {
  padding: 3rem 0 3.5rem;
}
.purple-bg.text-white p {
  color: white !important;
  margin: 0 auto 1rem;
}
.purple-bg.text-white p:last-of-type {
  margin-bottom: 0;
}

.comn_cls {
  background-color: #f8f9fa;
  padding: 5rem 0;
  color: #444;
}

.comn_cls h2 {
  font-weight: 600;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1.5625rem;
  margin-top: 1.25rem;
  position: relative;
  text-align: left;
}

.comn_cls h2:first-of-type {
  margin-top: 0;
}

.comn_cls h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 3.75rem;
  height: 0.25rem;
  background: #3b2a3f;
  border-radius: 0.125rem;
}

.comn_cls p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6b7c;
  margin-bottom: 1.25rem;
}

.comn_cls ul,
.comn_cls ol {
  padding: 0;
  margin: 1.875rem 0;
  list-style: none;
  display: grid;
  gap: 0.9375rem;
}

.comn_cls ul li,
.comn_cls ol li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6b7c;
  margin: 0;
}

.comn_cls ul li::before {
  content: "➔";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3b2a3f;
  font-weight: bold;
  font-size: 1.2rem;
}

.comn_cls ol {
  counter-reset: my-counter;
}

.comn_cls ol li::before {
  counter-increment: my-counter;
  content: counter(my-counter) ".";
  position: absolute;
  left: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3b2a3f;
  text-align: center;
  line-height: 1.5625rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.page-404 {
  padding: 5rem 0;
}
.page-404 .text-wraper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 56px;
  box-shadow: 0 30px 60px -20px rgba(0, 40, 60, 0.25), 0 8px 20px -8px rgba(0, 20, 40, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  padding: 3.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}
.page-404 .text-wraper h1 {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1.5rem 0;
  color: #3b2a3f;
  -webkit-background-clip: text;
          background-clip: text;
  text-shadow: 0 4px 20px rgba(20, 60, 100, 0.15);
  letter-spacing: -0.02em;
  text-align: center;
}
.page-404 .text-wraper h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #1e3349;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-404 .text-wraper h3 i {
  font-size: 0.9em;
  opacity: 0.8;
}
.page-404 .text-wraper p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2d425b;
  max-width: 550px;
  margin: 0 auto 2.4rem auto;
  background: rgba(255, 255, 255, 0.4);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}
.page-404 .text-wraper a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #3b2a3f;
  color: white;
  border: none;
  padding: 1rem 2.8rem;
  font-size: 1.25rem;
  font-weight: 520;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 22px -12px rgba(20, 50, 70, 0.4), 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  display: table;
  margin: 0 auto;
}
.page-404 .text-wraper a.btn i {
  font-size: 1.2rem;
  transition: transform 0.15s;
}
.page-404 .text-wraper a.btn:hover {
  background: #3b2a3f;
  transform: scale(1.02) translateY(-3px);
  box-shadow: 0 28px 28px -18px #102433, 0 8px 12px -4px rgba(0, 32, 64, 0.2);
}

.heroSec .bg {
  filter: brightness(3);
}

.aboutUsSec2 {
  text-align: left;
}
.aboutUsSec2 h2 {
  text-align: left !important;
}
.aboutUsSec2 .txt {
  text-align: left !important;
}
.aboutUsSec2 .txt p {
  margin-bottom: 1.25rem;
}

.purple-bg.text-white {
  text-align: left;
}
.purple-bg.text-white h2 {
  text-align: left !important;
}
.purple-bg.text-white p {
  text-align: left !important;
}

.heroSec #scrollDown {
  display: none;
}

@media (max-width: 1399px) {
  html {
    font-size: 80%;
  }
  .aboutUsSec2 .vectr1 {
    top: 110px;
    right: -75px;
  }
}
@media screen and (max-width: 1199px) {
  header .menu_area .main_logo {
    max-width: 14rem;
  }
  header .menu_area .main_links ul {
    gap: 1rem;
  }
  header .menu_area .main_links ul li a {
    font-size: 0.925rem;
  }
  .has-list ul li span::before {
    inset: -5px;
  }
  .has-list ul li span img {
    margin: 0 0 0 2px;
  }
  .engage .text-card {
    margin-right: 1px;
  }
  .insightdetails-outer {
    padding: 3.75rem 0 5rem;
  }
  .contact-sec {
    padding: 5rem 0;
  }
  .contact-sec .leftsec {
    padding: 1.2rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 70%;
  }
  header .menu_area .main_links ul li a {
    padding: 1.45rem 0.9rem;
    color: #fff;
  }
  .aboutUsSec2 .txt p {
    margin-bottom: 1.5rem;
  }
  header {
    padding: 2rem 0;
  }
  .aboutUsSec2.organizations .badge {
    font-size: 1rem;
  }
  .insightouter {
    padding: 5rem 0;
  }
  .related-blogs {
    padding-bottom: 5rem;
  }
  .insight-bx .insight-text p {
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.65rem;
    line-height: 3.275rem;
  }
  .heroSec .top {
    padding: 3rem 0;
  }
  .heroSec #scrollDown {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2.94rem;
  }
  .homeSec2,
  .homeSec4,
  .homeSec3,
  .aboutUsSec2 {
    padding: 4rem 0;
    text-align: center;
  }
  .homeSec2 h2,
  .heroSec .top,
  footer p,
  footer .links h5,
  footer .links ul li,
  .aboutUsSec2 h2 {
    text-align: center;
  }
  footer .row {
    row-gap: 2rem;
  }
  footer .links h5 {
    font-size: 1.65rem;
  }
  footer .links ul li a {
    font-size: 1.3rem;
  }
  footer {
    padding: 3rem 0 1.88rem;
  }
  footer p {
    font-size: 1.3rem;
  }
  .homeSec3 .cardWrp .date,
  .homeSec3 .cardWrp .txt .rdMore {
    font-size: 1.2rem;
  }
  header {
    padding: 2rem 0;
  }
  .heroSec #scrollDown img {
    height: 2.1rem;
  }
  .homeSec2 .row {
    row-gap: 2rem;
  }
  footer .footLink {
    margin: 0 auto 2rem;
    display: block;
  }
  footer .social_links {
    justify-content: center;
  }
  .homeSec4 .vectr1 {
    width: 10rem;
    height: 11rem;
  }
  .brdcamp {
    justify-content: center;
  }
  .aboutUsSec2 .sideImg {
    max-height: 400px;
  }
  .aboutUsSec2 .row {
    row-gap: 2rem;
  }
  .aboutUsSec2.aboutUsSec4 .txt ul li {
    text-align: left;
    font-size: 1.5rem;
  }
  .aboutUsSec2.aboutUsSec4,
  .aboutUsSec2.aboutUsSec5 {
    padding: 4rem 0;
  }
  .aboutUsSec2 .txt p {
    font-size: 1.25rem;
  }
  .has-list ul {
    padding: 0 0 0 10px;
  }
  .has-list ul li {
    font-size: 1.25rem;
    text-align: left;
  }
  .engage .custom-nav {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  .engage .text-card ul {
    text-align: left;
    padding-left: 0;
  }
  .engage .text-card ul li {
    gap: 1rem;
    font-size: 1.25rem;
    line-height: 1.65rem;
  }
  .aboutUsSec2.organizations .badge {
    font-size: 1rem;
    left: 0;
    right: 0;
    display: inline-flex;
    max-width: 230px;
    margin: 0 auto;
  }
  .insightouter {
    padding: 4rem 0;
  }
  .insight-bx .insight-text {
    text-align: center;
  }
  .insightdetails-outer {
    padding: 3.75rem 0 4rem;
  }
  .related-blogs {
    padding-bottom: 4rem;
  }
  .insightdetails-outer {
    padding: 3.75rem 0 4rem;
    text-align: center;
  }
  .insightdetails-outer h2 {
    text-align: center;
  }
  .contact-sec {
    padding: 4rem 0;
  }
  .contact-sec .leftsec ul li .icon {
    font-size: 20px;
  }
  .contact-sec .row {
    gap: 2rem;
  }
  .contact-sec .row .rightsec {
    text-align: center;
  }
  .related-blogs .insight-bx .insight-text h3 {
    min-height: unset;
  }
}
.pagination-container {
  margin-top: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.375rem;
}
.pagination-container span.page-count {
  color: #000;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.pagination-container a.next-page,
.pagination-container a.prev-page {
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
  border: 1px solid var(--Color, #3b2a3f);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container a.next-page i,
.pagination-container a.prev-page i {
  color: #000;
}

.insightouter .insight-bx .insight-text h3 {
  min-height: 4.0625rem;
}

.homeSec3 .cardWrp .txt h3 {
  min-height: 4.0625rem;
}

section.homeSec2 a.btn {
  display: table;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .insightouter .insight-bx .insight-text h3 {
    min-height: auto;
  }
  .homeSec3 .cardWrp .txt h3 {
    min-height: auto;
  }
  .comn_cls h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    margin-top: 1.25rem;
    line-height: 2.4375rem;
  }
  /* ADD CSS ON 17.02.2026 */
}/*# sourceMappingURL=style.css.map */