html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}

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

.common-button {
  display: inline-block;
  background-color: #931621;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 28px;
  border: 0px;
  outline: 0px;
  padding: 8px 30px;
  word-break: keep-all;
  cursor: pointer;
}
.common-button:hover {
  scale: 0.95;
  color: #fff;
}
.common-button.white-btn {
  background-color: #fff;
  color: #000;
}
.common-button.white-btn:hover {
  color: #000;
}

.common-title {
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 40px;
}

.subtitle {
  font-size: 26px;
  margin-bottom: 40px;
  color: #000;
  font-weight: 600;
}

.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.spiral-design {
  position: relative;
  overflow: hidden;
}
.spiral-design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00002e url("../images/spiral_design.png") no-repeat !important;
  background-size: 40% !important;
  background-position: 108% -30px !important;
  z-index: -1;
}

.spiral-design-2 {
  position: relative;
}
.spiral-design-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00002e url("../images/spiral_design_2.png") no-repeat !important;
  background-size: 174% !important;
  background-position: 95% -446px !important;
  z-index: 1;
}

.main-page {
  padding-top: 76px;
}
.main-page.login {
  padding-top: 44px;
}

.bottom-line-title {
  position: relative;
}
.bottom-line-title::after, .bottom-line-title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 40%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}
.bottom-line-title::before {
  width: 15%;
  height: 5px;
  bottom: -7px;
  background-color: white;
}
.bottom-line-title.red-line::after, .bottom-line-title.red-line::before {
  background-color: rgba(147, 22, 33, 0.8);
}
.bottom-line-title.red-line::before {
  width: 15%;
  height: 5px;
  bottom: -7px;
  background-color: #931621;
}

.owl-carousel {
  position: relative;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  width: 30px;
  height: 30px;
  background-image: url("../images/icons/next.png") !important;
  background-size: 24px 24px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.owl-carousel .owl-nav .owl-prev {
  rotate: 180deg;
  margin-left: 20px;
}
.owl-carousel .owl-nav .owl-next {
  margin-right: 20px;
}
.owl-carousel .owl-dots {
  display: none;
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
  justify-content: center;
}
.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0px 4px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #931621;
}
.owl-carousel.community-slider .owl-dots {
  display: flex;
}

.banner {
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.banner .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40%;
}
.banner .content .common-title,
.banner .content .common-subtitle {
  color: #fff;
  text-align: left;
  margin-bottom: 0px;
}
.banner .content .common-title {
  margin-bottom: 20px;
  font-size: 42px;
}
.banner .content .common-subtitle {
  font-weight: 500;
}

header {
  background-color: #f0eff4;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .logo img {
  width: auto;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px 0px;
}
header nav ul {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  display: inline-block;
  list-style: none;
  position: relative;
  padding: 20px 8px;
}
header nav ul li:last-child {
  padding: 20px 0px;
}
header nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}
header nav ul li a:hover {
  color: #931621;
}
header nav ul li a.active {
  color: #931621;
  font-weight: 500;
}
header nav ul li a .dropdown-icon {
  margin-left: 6px;
  font-size: 16px;
  transition: transform 0.3s ease;
}
header nav ul li:hover > a .dropdown-icon {
  transform: rotate(180deg);
}
header nav ul li.menu-item-has-children a {
  position: relative;
}
header nav ul li.menu-item-has-children a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
header nav ul li.menu-item-has-children:hover a::after {
  transform: rotate(180deg);
}
header nav ul li.menu-item-has-children .sub-menu li a::after {
  display: none;
}
header nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f0eff4;
  padding: 0;
  margin: 0;
  text-align: left;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header nav ul li .sub-menu li {
  display: block;
  padding: 10px 20px;
}
header nav ul li .sub-menu li a {
  color: #404040;
  white-space: nowrap;
}
header nav ul li .sub-menu li a:hover {
  color: #931621;
}
header nav ul li:hover .sub-menu {
  display: block;
}

footer {
  padding: 40px 0px 20px;
  background-color: #f0eff4;
}
footer .footer .upper-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer .upper-footer .social-media ul {
  padding-left: 0px;
  padding-bottom: 0px;
}
footer .footer .upper-footer .social-media ul li {
  list-style: none;
  font-size: 16px;
  color: #000;
}
footer .footer .upper-footer .social-media ul li:first-child {
  display: block;
  margin-bottom: 8px;
}
footer .footer .upper-footer .social-media ul li:not(:first-child) {
  display: inline-block;
  margin-right: 20px;
  margin-right: 8px;
}
footer .footer .upper-footer .social-media ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
footer .footer .upper-footer .social-media ul li a:hover {
  scale: 0.9;
}
footer .footer .upper-footer .social-media ul li img {
  width: 26px;
}
footer .footer .upper-footer .newsletter p {
  color: #000;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: normal;
}
footer .footer .upper-footer .newsletter input {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  font-size: 14px;
  background-color: #f0eff4;
  outline: 0px;
}
footer .footer .upper-footer .newsletter input::-moz-placeholder {
  font-style: italic;
}
footer .footer .upper-footer .newsletter input::placeholder {
  font-style: italic;
}
footer .footer .upper-footer .newsletter input:focus {
  border: 1px solid rgba(147, 22, 33, 0.6);
}
footer .footer .upper-footer .newsletter .common-button {
  font-size: 14px;
  padding: 4px 14px;
}
footer .footer .middle-footer {
  margin-top: 50px;
}
footer .footer .middle-footer ul {
  display: flex;
  justify-content: space-evenly;
}
footer .footer .middle-footer ul li {
  list-style: none;
}
footer .footer .middle-footer ul li a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
footer .footer .middle-footer ul li a:hover {
  color: #931621;
}
footer .footer .bottom-footer {
  text-align: center;
  margin-top: 16px;
}
footer .footer .bottom-footer p {
  margin-bottom: 0px;
  font-size: 14px;
}
footer .footer .bottom-footer p a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.hero-section {
  background-color: #00002e;
  padding-bottom: 60px;
}
.hero-section .hero-div {
  position: relative;
}
.hero-section .hero-div .slider-content {
  display: flex;
  overflow: hidden;
}
.hero-section .hero-div .slider-content .slider-image {
  flex: 2;
  position: relative;
}
.hero-section .hero-div .slider-content .slider-image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-section .hero-div .slider-content .slider-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 46, 0) 60%, #00002e 100%);
  pointer-events: none;
}
.hero-section .hero-div .slider-content .blank-box {
  flex: 1;
}
.hero-section .hero-div .content {
  position: absolute;
  top: 50%;
  left: 62%;
  z-index: 2;
  margin-right: 60px;
  transform: translateY(-50%);
}
.hero-section .hero-div .content h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 40px;
}
.hero-section .boxes {
  margin-top: 40px;
}
.hero-section .boxes a {
  text-decoration: none;
  color: inherit;
}
.hero-section .boxes .box {
  background: linear-gradient(156deg, rgba(147, 22, 33, 0.4) 0%, rgba(147, 22, 33, 0.8) 40%, rgba(147, 22, 33, 0.6) 100%);
  border-radius: 12px;
  padding: 20px 40px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.hero-section .boxes .box .icon {
  text-align: center;
  margin-bottom: 10px;
}
.hero-section .boxes .box .icon img {
  width: 130px;
  height: auto;
}
.hero-section .boxes .box p {
  margin-bottom: 0px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.hero-section .boxes .box:hover {
  scale: 0.97;
}

.community-updates-section {
  background-color: #00002e;
  padding-bottom: 100px;
}
.community-updates-section .common-title {
  margin-bottom: 40px;
}
.community-updates-section .community-updates {
  display: flex;
  align-items: center;
  justify-content: start;
}
.community-updates-section .community-updates .story-image {
  width: 65%;
}
.community-updates-section .community-updates .story-image img {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.community-updates-section .community-updates .content {
  color: #fff;
  background: linear-gradient(115deg, rgba(147, 22, 33, 0.1) 0%, rgba(147, 22, 33, 0.7) 40%, rgba(147, 22, 33, 0.6) 100%);
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
  margin-left: -3%;
  width: 38%;
  min-height: 14em;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.community-updates-section .community-updates .content p {
  margin-bottom: 0px;
  position: relative;
}
.community-updates-section .community-updates .content p.headline {
  font-weight: 700;
  font-size: 24px;
}
.community-updates-section .community-updates .content p.tagline {
  font-size: 22px;
  margin: 40px 0px 16px;
}
.community-updates-section .community-updates .content p.author {
  font-size: 14px;
  font-style: italic;
}
.community-updates-section .community-updates .content a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.community-updates-section .community-updates .content a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.map-section {
  background-color: #00002e;
}
.map-section .world-map-div svg {
  width: 100%;
}
.map-section .world-map-div svg path {
  fill: #546a76;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1;
  z-index: 1;
}
.map-section .world-map-div svg path.secretariat-color {
  fill: #a7754d;
  cursor: pointer;
}
.map-section .world-map-div svg path.advisory-color {
  fill: #873d48;
  cursor: pointer;
}
.map-section .world-map-div svg path.partnering-color {
  fill: #7fb850;
  cursor: pointer;
}
.map-section .world-map-div .color-navigation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 70px;
}
.map-section .world-map-div .color-navigation .navigation {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-section .world-map-div .color-navigation .navigation span {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: transparent;
  border: 7px solid #a7754d;
}
.map-section .world-map-div .color-navigation .navigation span.advisory-color {
  border: 7px solid #873d48;
}
.map-section .world-map-div .color-navigation .navigation span.partnering-color {
  border: 7px solid #7fb850;
}
.map-section .world-map-div .tooltip {
  position: absolute;
  background: #a7754d;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  pointer-events: none;
  font-size: 14px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  opacity: 1 !important;
  z-index: 99;
  pointer-events: auto;
  overflow: hidden;
}
.map-section .world-map-div .tooltip a {
  text-decoration: none;
  color: #021945;
  font-weight: 700;
}
.map-section .world-map-div .tooltip a:hover {
  text-decoration: underline;
}

.secretariat-color {
  color: #a7754d;
}

.advisory-color {
  color: #873d48;
}

.partnering-color {
  color: #7fb850;
}

.partnering-bg {
  background: #7fb850;
  margin: 0 -10px -6px;
  padding: 10px;
}

.secretariat-bg {
  background: #a7754d;
  margin: 0 -10px -6px;
  padding: 10px;
}

.advisory-bg {
  background: #873d48;
  margin: 0 -10px -6px;
  padding: 10px;
}

.contact-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 342px);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/contact_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.contact-section .background-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: lighten;
  z-index: 0;
}
.contact-section .pos-rel {
  position: relative;
  z-index: 1;
}
.contact-section .common-title {
  text-align: left;
}
.contact-section .contact-details {
  position: relative;
  z-index: 1;
}
.contact-section .contact-details p {
  color: #fff;
}
.contact-section .contact-details p.c-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-section .contact-details p:not(.contact-section .contact-details p.c-title) {
  margin-left: 35px;
  font-size: 14px;
}
.contact-section .contact-details p img {
  width: auto;
  height: 20px;
  margin-right: 10px;
}
.contact-section .contact-details p a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.contact-section .contact-details p a:hover {
  color: #931621;
}
.contact-section .contact-form label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
}
.contact-section .contact-form .form-group {
  width: 100%;
}
.contact-section .contact-form input[type=checkbox] {
  width: 13px;
  height: 13px;
  transform: scale(1.5);
  margin-right: 8px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  background: transparent;
  border: 0px;
  border-bottom: 2px solid #fff;
  color: #fff;
  outline: 0px;
  border-radius: 0px;
}
.contact-section .contact-form input::-moz-placeholder, .contact-section .contact-form textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  font-size: 16px;
  font-weight: 500;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: 0px;
  box-shadow: none;
}
.contact-section .contact-form .common-button {
  border-radius: 6px;
  margin-top: 30px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 8px 98px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.chair-section {
  margin-top: 50px;
}
.chair-section .chair-image {
  height: 100%;
  display: flex;
  align-items: end;
  padding-top: 40px;
}
.chair-section .chair-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.chair-section .content {
  padding: 40px 0px;
  text-align: left;
}
.chair-section .content h2,
.chair-section .content p {
  color: #fff;
  text-align: left;
  margin-bottom: 0px;
}
.chair-section .content .common-subtitle {
  margin-bottom: 40px;
  padding-bottom: 10px;
}
.chair-section.spiral-design::before {
  background-size: 35% !important;
  background-position: -15% -125px !important;
}

.posts-section a {
  text-decoration: none;
  color: inherit;
}
.posts-section .post .image {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
}
.posts-section .post .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.posts-section .post .content-box .common-subtitle {
  font-size: 20px;
  margin: 6px 0px 4px;
}
.posts-section .post .content-box .post-tag {
  background-color: #931621;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.posts-section .post .content-box p {
  margin-bottom: 0px;
}
.posts-section .post .content-box p.author {
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}
.posts-section .post:hover .image img {
  scale: 1.05;
}
.posts-section .post:hover h3,
.posts-section .post:hover p {
  opacity: 0.85;
}

.member-profiles-section {
  background: linear-gradient(350deg, rgba(240, 239, 244, 0.5) 0%, rgba(255, 255, 255, 0.1) 30%);
}
.member-profiles-section .member-img {
  background: linear-gradient(130deg, rgba(239, 246, 253, 0.85) 0%, rgba(239, 246, 253, 0.1) 100%);
  height: 100%;
  display: flex;
  align-items: end;
}
.member-profiles-section .member-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.member-profiles-section .member-content {
  display: flex;
  align-items: end;
  height: 100%;
}
.member-profiles-section .member-content .quote-content {
  margin-left: -50px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.member-profiles-section .member-content .quote-content p {
  display: inline-block;
  color: #fff;
  padding: 4px 20px;
  font-size: 22px;
  margin: 0;
  background-color: #931621;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.member-profiles-section .member-content .about-member {
  margin-top: 30px;
}
.member-profiles-section .member-content .about-member .common-subtitle {
  margin-bottom: 4px;
}
.member-profiles-section .member-content .about-member p {
  margin-bottom: 0px;
  font-size: 16px;
  width: 55%;
}

.members-details .details-content h3 {
  color: #931621;
  margin-bottom: 16px;
}
.members-details .details-content p {
  font-size: 16px;
}
.members-details .member-img {
  height: 100%;
}
.members-details .member-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: sticky;
  top: 19%;
}
.members-details .member-btn {
  text-align: center;
}
.members-details .member-btn .common-button {
  border-radius: 0px;
  margin-top: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.single-post--page {
  background-color: rgba(245, 245, 245, 0.6);
}
.single-post--page .post-content {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 30px;
  padding: 60px 100px;
}
.single-post--page .post-content .date {
  color: #929292;
  font-size: 15px;
  margin: 0px 0 10px;
  font-weight: 400;
  text-align: center;
}
.single-post--page .post-content .tag-line {
  text-align: center;
}
.single-post--page .post-content .tag {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.single-post--page .post-content .tag a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: rgba(147, 22, 33, 0.95);
  padding: 1px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: auto;
}
.single-post--page .post-content .subtitle {
  width: 80%;
  line-height: 1.4;
  margin-bottom: 6px;
  text-align: center;
}
.single-post--page .post-content .post-banner {
  margin: 30px 0px 40px;
}
.single-post--page .post-content .post-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.single-post--page .post-content .content p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  text-align: left;
}
.single-post--page .post-content .post-author {
  margin-bottom: 0px;
  margin-top: 20px;
}
.single-post--page .post-content .post-author b {
  font-style: italic;
}

/***** Ritika CSS Section *****/
.our-story-section {
  overflow: hidden;
  position: relative;
}
.our-story-section .our-story-content {
  display: flex;
}
.our-story-section .our-story-content .content {
  width: 53%;
  padding: 30px 0px;
}
.our-story-section .our-story-content .content h2 {
  color: #000;
  text-align: left;
  margin-bottom: 20px;
}
.our-story-section .our-story-content .section-image {
  width: 45%;
  position: absolute;
  right: 0px;
  text-align: right;
}
.our-story-section .our-story-content .section-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/7;
  -o-object-fit: cover;
     object-fit: cover;
}

.blue-section {
  background-color: #00002e;
}
.blue-section p {
  color: #fff;
  font-size: 28px;
  margin-bottom: 0px;
  text-align: center;
}

.our-principles-section {
  text-align: center;
}
.our-principles-section .common-title {
  color: #000;
  margin-bottom: 6px;
}
.our-principles-section .common-subtitle {
  margin: 10px 0px 5px;
}
.our-principles-section .principles-content img {
  width: auto;
  height: 80px;
  margin-bottom: 10px;
}
.our-principles-section .principles-content h4 {
  font-weight: 700;
  font-size: 22px;
}
.our-principles-section .principles-content p {
  margin-bottom: 0;
}

.common-lens-section {
  background-color: #00002e;
  text-align: center;
}
.common-lens-section .common-title {
  margin-bottom: 6px;
}
.common-lens-section .subtitle {
  color: #fff;
}
.common-lens-section .lens {
  text-align: center;
}
.common-lens-section .lens img {
  width: 220px;
  height: auto;
}

.key-action-section {
  text-align: center;
}
.key-action-section .common-title {
  color: #000;
  margin-bottom: 6px;
}
.key-action-section .key-action-content img {
  width: auto;
  height: 80px;
  margin-bottom: 10px;
}
.key-action-section .key-action-content h3 {
  margin: 10px 0px 5px;
}
.key-action-section .key-action-content p {
  margin-bottom: 0;
  font-size: 16px;
}

.partners-section.section-padding {
  padding-top: 80px;
  padding-bottom: 20px;
}
.partners-section .partners {
  height: 100%;
  padding: 40px 0px;
}
.partners-section a {
  text-decoration: none;
  color: inherit;
}
.partners-section .partners-div {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 90px 25px 25px;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.partners-section .partners-div::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 62px;
  z-index: -1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 -6px 12px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.partners-section .partners-div .icon {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  padding: 35px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px inset;
}
.partners-section .partners-div .icon img {
  width: 90px;
  height: auto;
}
.partners-section .partners-div .content {
  position: relative;
}

/***** End Ritika CSS Section *****/
/***** Kirti CSS Section *****/
.common-subtitle {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.fs-18 {
  font-size: 18px;
}

.fs-15 {
  font-size: 15px;
}

.secretary-section {
  color: #fff;
}
.secretary-section .about-secretary {
  text-align: left;
  padding: 40px 0px;
}
.secretary-section .about-secretary h2 {
  text-align: left;
  margin-bottom: 6px;
}
.secretary-section .about-secretary h3 {
  color: #fff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.secretary-section .about-secretary p {
  margin-top: 0px;
}
.secretary-section .about-secretary .bottom-line-title::after {
  width: 100%;
}
.secretary-section .about-secretary .bottom-line-title::before {
  width: 35%;
}
.secretary-section .secretary-image {
  text-align: end;
}
.secretary-section .secretary-image img {
  max-width: 100%;
  height: auto;
}

.secretariat-section .common-title {
  color: #000;
}
.secretariat-section .about-secretariat {
  background-color: #f0eff4;
  height: 100%;
  overflow: hidden;
}
.secretariat-section .about-secretariat .secretariat-image {
  transition: all 0.3s ease;
  overflow: hidden;
}
.secretariat-section .about-secretariat .secretariat-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.secretariat-section .about-secretariat .secretariat-image.spiral-design-2::before {
  display: none;
}
.secretariat-section .about-secretariat .content {
  padding: 16px;
  text-align: center;
}
.secretariat-section .about-secretariat .content h3 {
  margin-bottom: 2px;
}
.secretariat-section .about-secretariat .content .designation {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: rgba(0, 0, 0, 0.65);
}
.secretariat-section .about-secretariat .content p {
  margin-bottom: 0px;
}
.secretariat-section .about-secretariat .content p.description {
  margin-top: 20px;
  font-size: 14px;
}
.secretariat-section .about-secretariat:hover .secretariat-image.spiral-design-2::before {
  display: block;
}

.advisory-board-section .post-content a {
  text-decoration: none;
  color: #000;
}
.advisory-board-section .post-content .post-thumbnail {
  border: 1px solid #000;
  transition: all 0.3s ease;
  overflow: hidden;
}
.advisory-board-section .post-content .post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}
.advisory-board-section .post-content .post-thumbnail.spiral-design-2::before {
  display: none;
}
.advisory-board-section .post-content h3 {
  margin-top: 10px;
  margin-bottom: 0px;
}
.advisory-board-section .post-content h3,
.advisory-board-section .post-content p {
  text-align: center;
  padding: 0px 10px;
}
.advisory-board-section .post-content p {
  margin-bottom: 0px;
}
.advisory-board-section .post-content p.country {
  margin-bottom: 6px;
  font-weight: 600;
}
.advisory-board-section .post-content:hover .post-thumbnail {
  background-color: #00002e;
}
.advisory-board-section .post-content:hover .post-thumbnail img {
  scale: 1.05;
}
.advisory-board-section .post-content:hover .post-thumbnail.spiral-design-2::before {
  display: block;
}

.default-page .common-title {
  color: #000;
  text-align: left;
  margin-bottom: 28px;
}
.default-page h2 {
  font-size: 28px;
}
.default-page h3 {
  font-size: 24px;
}
.default-page h4 {
  font-size: 20px;
}
.default-page h5 {
  font-size: 16px;
}
.default-page p,
.default-page li {
  font-size: 15px;
}

.page-numbers {
  width: 36px;
  height: 36px;
  background: #931621;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border: 1px solid #931621;
  transition: 0.3s ease;
}
.page-numbers:hover, .page-numbers.current {
  background: transparent;
  color: black;
  border: 1px solid #931621;
}
.page-numbers:hover .page-arrow, .page-numbers.current .page-arrow {
  filter: invert(1);
}
.page-numbers .page-arrow {
  width: 15px;
  height: 15px;
}

.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .nav-links {
  margin: auto;
  display: flex;
}
.pagination .nav-links .page-numbers {
  width: 36px;
  height: 36px;
  background: #931621;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border: 1px solid #931621;
  transition: 0.3s ease;
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers.current {
  background: transparent;
  color: black;
  border: 1px solid #931621;
}

.load-more.common-button {
  border-radius: 0px;
  margin-top: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

/***** End Kirti CSS Section *****//*# sourceMappingURL=custom.css.map */