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: capitalize;
  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-button.submit {
  border-radius: 5px;
}

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

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

.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: 68px;
}
.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);
  z-index: 1;
}
.bottom-line-title::before {
  width: 15%;
  height: 5px;
  bottom: -7px;
  background-color: white;
  z-index: 2;
}
.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: #00002e;
  border-radius: 50%;
  margin: 0px 4px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #931621;
  scale: 1.2;
}
.owl-carousel.community-slider .owl-dots {
  display: none;
}
.owl-carousel.community-slider .owl-nav {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66%;
}
.owl-carousel.community-slider .owl-nav .owl-next,
.owl-carousel.community-slider .owl-nav .owl-prev {
  filter: brightness(0.35);
}

.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 .banner-description {
  color: #fff;
  text-align: left;
  margin-bottom: 0px;
}
.banner .content .common-title {
  margin-bottom: 20px;
  font-size: 42px;
}
.banner .content .banner-description {
  font-weight: 500;
  font-size: 20px;
}
.banner.our_story {
  overflow: hidden;
}
.banner.our_story img {
  aspect-ratio: 10/2;
}

header {
  background-color: #f0eff4;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .logo img {
  width: auto;
  height: 48px;
  -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;
  position: relative;
}
header nav ul li a:before {
  content: "";
  opacity: 0;
  position: absolute;
  left: 0px;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: rgba(147, 22, 33, 0.6);
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover {
  color: #931621;
}
header nav ul li a:hover:before {
  width: 100%;
  opacity: 1;
}
header nav ul li a.active {
  color: #931621;
  font-weight: 600;
}
header nav ul li a.active:before {
  width: 100%;
  opacity: 1;
  background-color: rgba(147, 22, 33, 0.85);
}
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 {
  background: #f0eff4;
}
.footer.section-padding {
  padding-bottom: 30px;
}
.footer .footer-link-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
.footer .footer-link {
  padding-left: 0;
}
.footer .footer-link li {
  list-style: none;
  margin-bottom: 6px;
}
.footer .footer-link li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}
.footer .footer-link li a:hover {
  color: rgba(147, 22, 33, 0.95);
}
.footer .social-media ul {
  padding-left: 0px;
  padding-bottom: 0px;
}
.footer .social-media ul li {
  list-style: none;
  font-size: 16px;
  color: #000;
}
.footer .social-media ul li:first-child {
  display: block;
  margin-bottom: 16px;
}
.footer .social-media ul li:not(:first-child) {
  display: inline-block;
  margin-right: 20px;
  margin-right: 8px;
}
.footer .social-media ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer .social-media ul li a:hover {
  scale: 0.9;
}
.footer .social-media ul li img {
  width: 26px;
}
.footer p.email-text a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p.email-text a:hover {
  color: rgba(147, 22, 33, 0.95);
}
.footer .newsletter p {
  margin-bottom: 20px;
}
.footer .newsletter .input-wrapper {
  display: flex;
  align-items: center;
}
.footer .newsletter .input-wrapper input {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(33, 37, 41, 0.8);
  padding: 2px 24px 2px 4px;
  font-size: 14px;
  background: transparent;
  outline: 0px;
  width: 100%;
  font-style: italic;
}
.footer .newsletter .input-wrapper input::-moz-placeholder {
  font-style: italic;
}
.footer .newsletter .input-wrapper input::placeholder {
  font-style: italic;
}
.footer .newsletter .input-wrapper input:focus {
  border-bottom: 2px solid rgba(147, 22, 33, 0.6);
}
.footer .newsletter .input-wrapper .common-button {
  font-size: 14px;
  padding: 4px 14px;
}
.footer .newsletter .input-wrapper .arrow-btn {
  border: none;
  position: relative;
}
.footer .newsletter .input-wrapper .arrow-btn img {
  width: 20px;
  height: auto;
  position: absolute;
  right: 14px;
  bottom: -6px;
}
.footer .bottom-footer {
  text-align: center;
  margin-top: 16px;
}
.footer .bottom-footer p {
  margin-bottom: 0px;
  font-size: 14px;
}
.footer .bottom-footer p a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.checkbox-wrapper {
  margin-top: 10px;
}
.checkbox-wrapper .consent-box {
  display: flex;
  align-items: start;
  gap: 4px;
}
.checkbox-wrapper .consent-box input {
  width: 16px;
  height: 16px;
  scale: 1.2;
  border-radius: 0px;
  margin-right: 4px;
  margin-top: 2px;
  accent-color: #931621;
}
.checkbox-wrapper .consent-box .consent {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 6px;
}
.checkbox-wrapper .desclaimer-text {
  font-style: italic;
  font-size: 11px;
  display: none;
  margin-left: 21px;
}
.checkbox-wrapper.contct-page-checkbox {
  margin-top: 20px;
}
.checkbox-wrapper.contct-page-checkbox p {
  color: rgba(255, 255, 255, 0.85);
}
.checkbox-wrapper.contct-page-checkbox input[type=checkbox] {
  width: 13px;
  height: 13px;
  transform: scale(1.2);
  margin-right: 8px;
  margin-top: 4px;
  accent-color: #931621;
}
.checkbox-wrapper.contct-page-checkbox .consent-box .consent {
  font-size: 15px;
}
.checkbox-wrapper.contct-page-checkbox .desclaimer-text {
  font-size: 12px;
}

.hero-section {
  background-color: #fff;
}
.hero-section .hero-div {
  position: relative;
}
.hero-section .hero-div .slider-image {
  position: relative;
}
.hero-section .hero-div .slider-image img {
  width: 100%;
  aspect-ratio: 10/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-section .hero-div .slider-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}
.hero-section .hero-div .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 45%;
}
.hero-section .hero-div .content h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 30px;
}
.hero-section .hero-div .content .common-button {
  background-color: transparent;
  border: 4px solid rgba(147, 22, 33, 0.8);
  padding: 6px 40px;
}
.hero-section .hero-div .content .common-button:hover {
  background-color: #931621;
}
.hero-section .new-hero-slider {
  height: calc(100vh - 68px);
  position: relative;
  background-color: #00002e;
  overflow: hidden;
}
.hero-section .new-hero-slider .hero-img {
  position: absolute;
  width: 56%;
  height: 100%;
  z-index: 1;
}
.hero-section .new-hero-slider .hero-img img {
  aspect-ratio: 16/10;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-left: -2px;
}
.hero-section .new-hero-slider .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #00002e 0%, rgba(0, 0, 46, 0.9) 2%, rgba(0, 0, 46, 0.8) 5%, rgba(0, 0, 46, 0.7) 10%, rgba(0, 0, 46, 0) 100%);
  pointer-events: none;
}
.hero-section .new-hero-slider .content-parent {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-section .new-hero-slider .content-parent .hero-content {
  position: relative;
  z-index: 2;
  width: 40%;
  float: right;
}
.hero-section .new-hero-slider .content-parent .hero-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
}
.hero-section .new-hero-slider .content-parent .hero-content h2 b {
  font-weight: 800;
}
.hero-section .new-hero-slider .content-parent .hero-content .common-button {
  background-color: transparent;
  border: 4px solid rgba(147, 22, 33, 0.8);
  padding: 6px 40px;
}
.hero-section .new-hero-slider .content-parent .hero-content .common-button:hover {
  background-color: #931621;
}
.hero-section .new-hero-slider.right-slider .hero-img {
  float: right;
  left: 44%;
  margin-left: 2px;
}
.hero-section .new-hero-slider.right-slider .hero-img img {
  margin-left: 2px;
}
.hero-section .new-hero-slider.right-slider .hero-img::after {
  background: linear-gradient(90deg, #00002e 0%, rgba(0, 0, 46, 0.9) 2%, rgba(0, 0, 46, 0.8) 5%, rgba(0, 0, 46, 0.7) 10%, rgba(0, 0, 46, 0) 100%);
}
.hero-section .new-hero-slider.right-slider .content-parent .hero-content {
  float: left;
}
.hero-section .boxes {
  padding: 40px 0px;
}
.hero-section .boxes a {
  text-decoration: none;
  color: inherit;
}
.hero-section .boxes .box {
  background-color: #00002e;
  border-radius: 12px;
  padding: 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: #e6e6e6;
}
.community-updates-section .common-title {
  margin-bottom: 40px;
}
.community-updates-section .community-updates {
  position: relative;
}
.community-updates-section .community-updates .story-image {
  border-radius: 16px;
  overflow: hidden;
  filter: blur(2px);
  opacity: 0.7;
}
.community-updates-section .community-updates .story-image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.community-updates-section .community-updates .content {
  position: absolute;
  bottom: 0px;
  left: 0;
  background: rgba(240, 239, 244, 0.85);
  width: 100%;
  padding: 10px 20px;
  min-height: 9em;
  display: none;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  transition: display 0.3s ease-in-out;
}
.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: 20px;
  color: #00002e;
}
.community-updates-section .community-updates .content p.bottom-line-title::after {
  background-color: #fff;
  width: 45%;
  min-width: 120px;
}
.community-updates-section .community-updates .content p.bottom-line-title::before {
  min-width: 60px;
}
.community-updates-section .community-updates .content p.tagline {
  font-size: 20px;
  margin: 16px 0px 2px;
  color: #000;
}
.community-updates-section .community-updates .content p.author {
  font-size: 12px;
  font-style: italic;
  color: #000;
  font-weight: 600;
}
.community-updates-section .community-updates .content a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
.community-updates-section .community-updates .content a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.community-updates-section .community-slider .owl-stage .owl-item {
  scale: 0.8;
}
.community-updates-section .community-slider .owl-stage .owl-item.center {
  scale: 1;
}
.community-updates-section .community-slider .owl-stage .owl-item.center .community-updates .story-image {
  border-radius: 0px;
  filter: blur(0px);
  opacity: 1;
}
.community-updates-section .community-slider .owl-stage .owl-item.center .content {
  opacity: 0;
  display: flex;
  transition: opacity 0.3s ease-in-out;
}
.community-updates-section .community-slider .owl-stage .owl-item .content {
  display: none;
}
.community-updates-section .community-slider .owl-stage .owl-item:hover.center .content {
  opacity: 1;
}

.map-section .common-title {
  margin-bottom: 30px;
}
.map-section .world-map-div svg {
  width: 100%;
}
.map-section .world-map-div svg path {
  fill: #576a77;
  stroke: #576a77;
  stroke-width: 2;
  z-index: 1;
}
.map-section .world-map-div svg path.secretariat-color {
  cursor: pointer;
}
.map-section .world-map-div svg path.advisory-color {
  cursor: pointer;
}
.map-section .world-map-div svg path.partnering-color {
  cursor: pointer;
}
.map-section .world-map-div .color-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 0px;
  margin-bottom: 40px;
}
.map-section .world-map-div .color-navigation .navigation {
  color: #00002e;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0.75;
  transition: all 0.3s ease;
  scale: 0.9;
  cursor: pointer;
}
.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 #b0b0b0;
  background-color: #fff;
}
.map-section .world-map-div .color-navigation .navigation span.secretariat-color {
  border: 7px solid #b0b0b0;
}
.map-section .world-map-div .color-navigation .navigation span.secretariat-color.active {
  background-color: #b0b0b0;
}
.map-section .world-map-div .color-navigation .navigation span.advisory-color {
  border: 7px solid #873d48;
}
.map-section .world-map-div .color-navigation .navigation span.advisory-color.active {
  background-color: #873d48;
}
.map-section .world-map-div .color-navigation .navigation span.partnering-color {
  border: 7px solid #00002e;
}
.map-section .world-map-div .color-navigation .navigation span.partnering-color.active {
  background-color: #00002e;
}
.map-section .world-map-div .color-navigation .navigation.active {
  opacity: 1;
  scale: 1.05;
}
.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;
}

.active-countries-list {
  position: relative;
}
.active-countries-list .list-toggle {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 2;
  cursor: pointer;
  margin-top: 10px;
}
.active-countries-list .list-toggle img {
  display: none;
  width: 22px;
  transition: transform 0.3s ease, scale 0.3s ease;
}
.active-countries-list .list-toggle img:hover {
  scale: 0.9;
}
.active-countries-list .list-toggle.open img {
  transform: rotate(180deg);
}
.active-countries-list .active-countries {
  height: 23em;
  overflow-y: auto;
  transition: max-height 0.3s ease;
  position: relative;
}
.active-countries-list .active-countries::-webkit-scrollbar {
  width: 4px !important;
  height: 8px !important;
  display: none;
}
.active-countries-list .active-countries::-webkit-scrollbar-track {
  background: transparent;
}
.active-countries-list .active-countries::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 46, 0.2);
  border-radius: 10px;
  width: 1px !important;
}
.active-countries-list .active-countries::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 46, 0.35);
}
.active-countries-list .active-countries:hover::-webkit-scrollbar {
  display: block;
}
.active-countries-list .active-countries li {
  display: flex;
  align-items: start;
  gap: 10px;
  list-style: none;
  margin-bottom: 16px;
  padding-bottom: 16px;
  transition: display 0.3s ease;
}
.active-countries-list .active-countries li:not(.active-countries-list .active-countries li:last-child) {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.active-countries-list .active-countries li .count {
  background-color: #931621;
  color: #fff;
  display: inline-block;
  width: 32px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.active-countries-list .active-countries li .count.secretariat-dot {
  background-color: #b0b0b0;
}
.active-countries-list .active-countries li .count.advisory-dot {
  background-color: #873d48;
}
.active-countries-list .active-countries li .count.partnering-dot {
  background-color: #00002e;
}
.active-countries-list .active-countries li p {
  margin-bottom: 0px;
  font-size: 14px;
}
.active-countries-list .active-countries li p.country-name {
  font-size: 16px;
  font-weight: 600;
}
.active-countries-list .active-countries li p a {
  display: inline-block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.active-countries-list .active-countries li p a:hover {
  scale: 0.9;
  opacity: 0.95;
}
.active-countries-list::before {
  content: "";
  position: absolute;
  top: 18em;
  left: 0;
  width: 100%;
  height: 25%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 1%, rgba(255, 255, 255, 0.45) 15%, rgba(255, 255, 255, 0.95) 80%, rgb(255, 255, 255) 100%);
  transition: display 0.3s ease-in-out;
}
.active-countries-list:hover .list-toggle {
  opacity: 0 !important;
  display: none !important;
}
.active-countries-list:hover::before {
  display: none;
}

.country-marker svg {
  display: block;
}
.country-marker svg path {
  fill: black !important;
}

.country-marker {
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.country-marker .pin-svg {
  transform-box: fill-box;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.country-marker.hovered {
  opacity: 1;
}
.country-marker.hovered .pin-svg {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

#world-map path {
  cursor: default;
}

#world-map path.advisory-color,
#world-map path.secretariat-color,
#world-map path.partnering-color {
  cursor: pointer;
}

.country-tooltip {
  position: absolute;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.country-tooltip.show {
  opacity: 1;
  transform: translate(-50%, -18px);
}

.country-marker.advisory path {
  fill: #873d48 !important;
}
.country-marker.secretariat path {
  fill: #b0b0b0 !important;
}
.country-marker.partnering path {
  fill: #00002e !important;
}

.secretariat-color {
  color: #b0b0b0;
}

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

.partnering-color {
  color: #00002e;
}

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

.secretariat-bg {
  background: #b0b0b0;
  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, 46, 0.45), rgba(0, 0, 46, 0.45)), url("../images/contact_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.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: 16px;
  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,
.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: #f0eff4;
}
.member-profiles-section.section-padding {
  padding-bottom: 0px;
}
.member-profiles-section .member-img {
  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 {
  margin-bottom: 10px;
}
.member-profiles-section .member-content .quote-content p span {
  display: inline-block;
  color: #fff;
  padding: 4px 20px;
  font-size: 20px;
  margin: 0;
  background-color: #931621;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.member-profiles-section .member-content .about-member {
  margin-top: 10px;
  margin-bottom: 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;
  font-weight: 600;
  font-style: italic;
}
.single-post--page .post-content .post-author b {
  font-style: normal;
}

/***** Ritika CSS Section *****/
.our-story-section {
  overflow: hidden;
  position: relative;
}
.our-story-section .content {
  text-align: justify;
}
.our-story-section .content h2 {
  color: #000;
  text-align: left;
  margin-bottom: 20px;
}
.our-story-section .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 .principles-content {
  text-align: center;
  transition: all 0.3s ease;
}
.our-principles-section .principles-content img {
  width: auto;
  height: 110px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.our-principles-section .principles-content h3 {
  font-size: 22px;
  margin: 10px 0px 5px;
  font-weight: 500;
}
.our-principles-section .principles-content p {
  margin: 0px auto;
  text-align: center;
  max-width: 80%;
}
.our-principles-section .principles-content h3,
.our-principles-section .principles-content p {
  transition: all 0.3s ease;
}
.our-principles-section .principles-content .filled-icon {
  display: none;
}
.our-principles-section .principles-content .unfilled-icon {
  display: inline-block;
}
.our-principles-section .principles-content:hover h3,
.our-principles-section .principles-content:hover p {
  font-weight: 700;
}
.our-principles-section .principles-content:hover .filled-icon {
  display: inline-block;
}
.our-principles-section .principles-content:hover .unfilled-icon {
  display: none;
}

.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 .parent-wheel {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-lens-section .parent-wheel .wheel {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 4px solid #8b1d24;
  margin: 40px auto;
  background: rgba(147, 22, 33, 0.25);
}
.common-lens-section .parent-wheel .wheel .center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: #8b1d24;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  word-break: break-all;
  font-size: 12px;
  text-align: center;
  padding: 5px;
}
.common-lens-section .parent-wheel .wheel .segment {
  position: absolute;
  width: 44%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: left bottom;
  border-bottom: 4px solid #8b1d24;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.common-lens-section .parent-wheel .wheel .segment span {
  position: absolute;
  top: 83%;
  left: 21%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #8b1d24;
  font-weight: 600;
  text-align: center;
  rotate: 51deg;
  word-break: break-all;
  line-height: 1;
}
.common-lens-section .parent-wheel .wheel .segment:hover {
  background-color: #8b1d24;
  scale: 1.1;
  border-bottom: 0;
}
.common-lens-section .parent-wheel .wheel .segment:hover span {
  color: #fff;
}
.common-lens-section .parent-wheel .wheel .segment:hover::before {
  display: block;
  transition: all 0.3s ease-in-out;
}
.common-lens-section .parent-wheel .wheel .segment::before {
  content: "";
  display: none;
  position: absolute;
  width: 20px;
  height: 100%;
  top: -4px;
  left: -3px;
  background-color: #8b1d24;
}
.common-lens-section .seg1 {
  transform: rotate(0deg) skewY(-30deg);
}
.common-lens-section .seg2 {
  transform: rotate(60deg) skewY(-30deg);
}
.common-lens-section .seg3 {
  transform: rotate(120deg) skewY(-30deg);
}
.common-lens-section .seg3 span {
  transform: translate(-50%, -50%) scaleY(-1) scaleX(-1) !important;
}
.common-lens-section .seg4 {
  transform: rotate(180deg) skewY(-30deg);
}
.common-lens-section .seg4 span {
  transform: translate(-50%, -50%) scaleY(-1) scaleX(-1) !important;
}
.common-lens-section .seg5 {
  transform: rotate(240deg) skewY(-30deg);
}
.common-lens-section .seg6 {
  transform: rotate(300deg) skewY(-30deg);
}

.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;
}

.key-action .box-container {
  border: 2px solid #000;
  padding: 8px 16px;
  height: 100%;
  transition: all 0.3s ease;
}
.key-action .box-container .flex-box {
  display: flex;
  justify-content: space-between;
}
.key-action .box-container .flex-box .image img {
  width: auto;
  height: 80px;
}
.key-action .box-container .flex-box .number {
  font-family: "Arial", sans-serif;
  font-size: 84px;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #747474;
  line-height: 1;
}
.key-action .box-container:hover {
  background: #e6e6e6;
  transition: all 0.3s ease;
}
.key-action .box-container:hover .common-subtitle {
  font-weight: 700;
}
.key-action .box-container:hover p {
  font-weight: 600;
}
.key-action .box-container:hover .flex-box .number {
  -webkit-text-stroke: 3px #747474;
}
.key-action .box-container p {
  margin-bottom: 0px;
}
.key-action .box-container .common-subtitle {
  font-weight: 400;
  margin-top: 20px;
}
.key-action .common-title {
  margin-bottom: 10px;
  color: #000;
}

.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 30px;
  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;
}
.partners-section .partners-div .content p {
  margin-bottom: 0px;
}
.partners-section .partners-div .common-subtitle {
  font-size: 22px;
  margin-bottom: 16px;
}

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

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

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

.secretary-section {
  margin-top: 50px;
  color: #fff;
}
.secretary-section .about-secretary {
  text-align: left;
  padding: 40px 0px;
}
.secretary-section .about-secretary h2 {
  text-align: left;
  margin-bottom: 6px;
  color: #fff;
}
.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 {
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.secretariat-section .about-secretariat .secretariat-image {
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid #00002e;
}
.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 {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.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: 600;
  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 .content .read-more {
  color: rgba(147, 22, 33, 0.75);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.secretariat-section .about-secretariat .content .read-more img {
  width: 14px;
}
.secretariat-section .about-secretariat:hover {
  transform: translateY(-5px);
}
.secretariat-section .about-secretariat:hover .secretariat-image.spiral-design-2::before {
  opacity: 1;
}
.secretariat-section .about-secretariat:hover .read-more {
  opacity: 1;
}

.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;
  font-size: 32px;
}
.default-page h2 {
  font-size: 24px;
}
.default-page h3 {
  font-size: 20px;
}
.default-page h4 {
  font-size: 16px;
}
.default-page h5 {
  font-size: 14px;
}
.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 *****/
/* Overlay */
#secretProfile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9998;
}

/* Popup Box */
#secretProfile-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 320px;
  max-width: 600px;
  background: #00002e;
  border-radius: 18px;
  display: none;
  z-index: 9999;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
#secretProfile-box::-webkit-scrollbar {
  width: 4px !important;
  height: 8px !important;
  display: none;
}
#secretProfile-box::-webkit-scrollbar-track {
  background: transparent;
}
#secretProfile-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  width: 1px !important;
}
#secretProfile-box .close-btn-box {
  display: inline-block;
  position: absolute;
  top: 14px;
  right: 14px;
}
#secretProfile-box .close-btn-box .secretProfile-close {
  width: 40px;
  height: 40px;
  background: #303967;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  transition: scale 0.3s ease, rotate 0.3s ease-in-out;
}
#secretProfile-box .close-btn-box .secretProfile-close:hover {
  background-color: rgba(147, 22, 33, 0.95);
  scale: 0.95;
  rotate: 90deg;
}
#secretProfile-box .outer-box {
  padding: 30px;
}
#secretProfile-box .outer-box.spiral-design-2::before {
  z-index: -1;
  background-size: 120% !important;
  background-position: 100% -446px !important;
}
#secretProfile-box .secretProfile-content .secretProfile-img {
  border: 1px solid rgba(147, 22, 33, 0.25);
  width: 220px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  background: #fff;
  border-radius: 14px;
  padding-top: 30px;
}
#secretProfile-box .secretProfile-content .secretProfile-name {
  margin: 20px 0px 10px;
}
#secretProfile-box .secretProfile-content .secretProfile-designation {
  display: inline-block;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  background: linear-gradient(135deg, rgba(147, 22, 33, 0.15) 0%, rgba(147, 22, 33, 0.45) 45%, rgba(147, 22, 33, 0.75) 100%);
  box-shadow: 0 8px 20px rgba(147, 22, 33, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  margin-top: 4px;
}
#secretProfile-box .secretProfile-content .secretProfile-description {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: start;
  margin-top: 10px;
  font-size: 14px;
}

.contact-page {
  width: 100%;
  min-height: calc(100vh - 420px);
  background-image: linear-gradient(0deg, rgba(0, 0, 46, 0.65), rgba(0, 0, 46, 0.65)), url("../images/contact_bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.contact-page .contact-details-section .common-title {
  text-align: left;
  margin-bottom: 30px;
}
.contact-page .contact-details-section .contact-box,
.contact-page .contact-details-section .contact-form {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease-in-out;
}
.contact-page .contact-details-section .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(0, 0, 46, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: scale 0.3s ease-in-out;
}
.contact-page .contact-details-section .icon img {
  width: 26px;
  height: auto;
}
.contact-page .contact-details-section .icon.bg-red {
  background-color: rgba(147, 22, 33, 0.8);
}
.contact-page .contact-details-section .contact-details .box-link {
  display: block !important;
  cursor: pointer;
}
.contact-page .contact-details-section .contact-details .contact-box {
  display: flex;
  justify-content: start;
  gap: 16px;
}
.contact-page .contact-details-section .contact-details .contact-box:not(:last-child) {
  margin-bottom: 30px;
}
.contact-page .contact-details-section .contact-details .contact-box .details {
  width: 100%;
}
.contact-page .contact-details-section .contact-details .contact-box .details h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}
.contact-page .contact-details-section .contact-details .contact-box .details a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  transition: scale 0.3s ease-in-out, color 0.3s ease-in-out;
}
.contact-page .contact-details-section .contact-details .contact-box .details a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.contact-page .contact-details-section .contact-details .contact-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-details-section .contact-details .contact-box:hover .icon {
  scale: 1.05;
}
.contact-page .contact-details-section .contact-details .scoial-media-box {
  display: flex;
  gap: 20px;
}
.contact-page .contact-details-section .contact-details .scoial-media-box .icon {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease-in-out;
}
.contact-page .contact-details-section .contact-details .scoial-media-box .icon img {
  width: auto;
  height: 24px;
}
.contact-page .contact-details-section .contact-details .scoial-media-box .icon:hover {
  background-color: #931621;
}
.contact-page .contact-details-section .contact-form .input-box label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.contact-page .contact-details-section .contact-form .input-box input,
.contact-page .contact-details-section .contact-form .input-box textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 14px;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 500;
}
.contact-page .contact-details-section .contact-form .input-box input::-moz-placeholder, .contact-page .contact-details-section .contact-form .input-box textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 600;
}
.contact-page .contact-details-section .contact-form .input-box input::placeholder,
.contact-page .contact-details-section .contact-form .input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 600;
}
.contact-page .contact-details-section .contact-form .input-box input:focus,
.contact-page .contact-details-section .contact-form .input-box textarea:focus {
  box-shadow: 0 0 0 0.1rem rgba(147, 22, 33, 0.45);
}
.contact-page .contact-details-section .contact-form .common-button {
  width: 100%;
  border-radius: 6px;
  margin-top: 24px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-page .contact-details-section .contact-form .common-button img {
  margin-left: 6px;
  width: 20px;
  height: auto;
}
.contact-page .contact-details-section .contact-form .common-button:hover {
  opacity: 0.9;
}/*# sourceMappingURL=custom.css.map */