* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Roboto", sans-serif; */
  font-family: "Roboto";
  scroll-behavior: smooth;
}
body {
  line-height: 1.45;
}
/* Fonts */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/RB-light-condensed.woff2") format("woff2"),
    url("../fonts/RB-light-condensed.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/RB-regular-condensed.woff2") format("woff2"),
    url("../fonts/RB-regular-condensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/RB-bold-condensed.woff2") format("woff2"),
    url("../fonts/RB-bold-condensed.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Common Css */
body.overflow-active {
  overflow-y: hidden;
}
.pos-rel {
  position: relative;
}
.container {
  max-width: 90%;
  margin: 0 auto;
}
ul {
  list-style-type: none;
}
ul.flex-list {
  display: flex;
}
a {
  text-decoration: none;
  color: #333333;
}
.d-lg-none {
  display: none;
}
.d-block {
  display: block;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.w-100 {
  width: 100%;
}
.section-last-element {
  padding-bottom: 2.5rem;
}
.bg-grey {
  background: linear-gradient(
    180deg,
    #eee -32.93%,
    rgba(255, 255, 255, 0) 129.03%
  );
}
.read-more {
  /* display: none; */
  color: #f83224;
  font-weight: 500;
  font-size: 1rem;
}
.read-more-download {
    color: #f83224;
    font-weight: 500;
    font-size: 1rem;

}
.red-btn {
  display: inline-block;
  border-radius: 15px;
  background: #ed3034;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 25px;
  filter: drop-shadow(0px 10px 29px rgba(237, 48, 52, 0.3));
}
.red-text-link {
  color: #ed3034;
  font-size: 1rem;
}
.sec-lg-padding {
  padding: 2.5rem 0;
}
.title {
  color: #524869;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.title-sm {
  color: #524869;
  font-size: 1.75rem;
  font-weight: 400;
}

/* Common Arrows */
.custom-prev-arrow {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 2rem;
  cursor: pointer;
}
.custom-next-arrow {
  top: 50%;
  position: absolute;
  transform: translateY(-50%) rotate(180deg);
  right: 2rem;
  cursor: pointer;
}
.custom-next-arrow svg,
.custom-prev-arrow svg {
  height: 40px;
}
.custom-prev-arrow:hover svg path,
.custom-next-arrow:hover svg path {
  stroke: #f83224;
}
.custom-next-arrow svg,
.custom-prev-arrow svg {
  height: 20px;
}
.banner-slider-parent .custom-next-arrow svg,
.banner-slider-parent .custom-prev-arrow svg {
  height: 40px;
}
.custom-prev-arrow {
  left: 0;
}
.custom-next-arrow {
  right: 0;
}

/* Common Slick Dots */
.slick-dots {
  bottom: -25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.slick-dots li {
  background-color: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid #e22e33;
  transition: 0.5s;
}
.slick-dots li.slick-active {
  background-color: #e22e33;
  height: 12px;
  width: 12px;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
  color: transparent;
}

/* Header */
.logo-block img {
  max-width: 110px;
  object-fit: contain;
  height: auto;
}
.header-container {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
}
.navigation {
  display: flex;
  align-items: end;
}
.navigation ul li a {
  padding: 10px 15px;
  display: inline-block;
  color: #333333;
  font-size: 1rem;
  letter-spacing: -0.5px;
  transition: 0.3s all;
}
.navigation ul li a.active {
  color: #f83224;
  border-bottom: 3px solid #f83224;
  font-weight: 600;
}
.hamburger {
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 99;
}
.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #ee3035;
  border-radius: 5px;
  transition: transform 0.3s;
  margin-bottom: 7px;
}
.hamburger .line:nth-child(2) {
  width: 80%;
  position: relative;
  right: 0;
  left: 20%;
}
.hamburger.active .line:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}
.social-icons-desktop {
  display: flex;
  align-items: end;
}
.social-icons ul {
  padding-bottom: 15px;
}
.social-icons li img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin: 0 15px;
}
.navigation ul li.dropdown a {
  position: relative;
  width: 100%;
}
.navigation ul li.dropdown a:hover {
  color: #ee3035;
}
.navigation ul li .dropdown-items {
  position: absolute;
  width: 250px;
  background-color: #fff;
  z-index: 2;
  display: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.navigation ul li.dropdown a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid #e22e33;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.dd-items li a::after {
  display: none;
}
.navigation ul li.dropdown:hover .dropdown-items {
  display: block;
}
/* Footer */
footer {
  background-color: #000000;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-container .block-one {
  width: 70%;
}
.footer-container .block-two {
  width: 100%;
  display: flex;
  justify-content: space-between;
    padding-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer-links ul li a {
  color: #fff;
}
.ft-offices {
  display: flex;
  gap: 25px;
}
.ft-offices .ft-office {
  width: calc((70% / 2) - 15px);
}
footer h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.81px;
  margin-bottom: 5px;
}
footer p ,
footer p a {
  color: #898989;
  font-size: 14px;
}
.map-ft-text {
  margin-top: 5px;
}
.map-ft-text img {
    flex-direction: column;
    width: 15px;
    height: auto;
    position: relative;
    top: 3px;
}
/* Homepage Banner */
.banner-slider {
  margin-bottom: 0 !important;
}
.banner-slider .slick-dots {
  bottom: 30px;
  display: flex !important;
  justify-content: right;
  padding-right: 50px;
}
.goals-news-container {
  display: flex;
  gap: 20px;
}
.goals-news-container .block-one {
  width: 70%;
}
.goals-news-container .block-two {
  width: 30%;
}
.three-blocks {
  display: flex;
  gap: 15px;
}
.three-blocks .block {
  width: calc((100% / 3) - 15px);
  margin-top: 1rem;
}
.goals-news-container .goal-image {
  position: relative;
  margin-top: 25px;
  width: fit-content;
}
.goals-news-container .goal-image .highlight-goal-number {
  position: absolute;
  width: 44px;
  height: 45px;
  background: #fff;
  box-shadow: 0px 15px 20px 10px rgba(0, 0, 0, 0.08);
  right: -5px;
  top: -5px;
  color: #524869;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2.16px;
  text-align: center;
  line-height: 2;
}
.goals-news-container .goal-text {
  color: #898989;
  font-size: 14px;
  margin-top: 0.5rem;
  min-height: 125px;
}
.goals-news-container .numbering {
  font-weight: 700;
  color: #000;
}
.goals-news-container .numbering span {
  border-top: 1px solid #898989;
}
.goals-news-container .latest-news {
  border: 1px solid #898989;
  padding: 20px 15px;
  position: relative;
}
.goals-news-container .latest-news::before {
  position: absolute;
  content: "";
  background-color: #1d344e;
  top: 0;
  left: -2px;
  height: 50px;
  width: 4px;
}
.goals-news-container .latest-news::after {
  position: absolute;
  content: "";
  background-color: #1d344e;
  left: -2px;
  top: -2px;
  width: 30px;
  height: 4px;
}
.latest-news .news-descp {
  background: #000000cc;
  color: #fff;
  font-size: 12px;
  padding: 10px 20px;
}
.quick-links {
  padding-top: 1.5rem;
}
.pins-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pins-tabs .pin {
  background-color: #f1f1f1;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.81px;
  padding: 5px 10px;
  border-radius: 5px;
}
.latest-news-design .single-slide .slide-data {
  display: flex;
  flex-direction: column;
}
/* About us Page */
.flex-start {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
/* Contact Us Page */
.first-section {
  min-height: 350px;
  margin-top: -250px;
}
.shadow-element-container {
  position: relative;
  background-color: #fff;
  padding: 2rem 4rem;
}
.shadow-element-container h2 {
  color: #524869;
  font-size: 1.5rem;
  font-weight: 400;
}
.office-contact {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}
.office-contact p {
  max-width: 60%;
}
.office-contact .block {
  width: calc((100% / 2) - 15px);
}
.office-contact h3 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-details ul li {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 42px;
}
.contact-details {
  padding-left: 4rem;
  padding-right: 4rem;
}

/* Membership Page */
.view-members {
  padding-top: 25px;
  text-align: center;
}
.membership-slider-design img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
  height: auto;
}
.membership-slider-design .single-slide {
  text-align: center;
}
.membership-slider-design .single-slide p {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 112.188%;
  letter-spacing: 0.99px;
  margin-top: 0.5rem;
  min-height: 36px;
}
.membership-slider-design .single-slide .member-img {
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.membership-slider-design .sm-designation {
  font-size: 12px !important;
  color: #898989 !important;
  text-align: center;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}
.advisiory-slider-parent .custom-next-arrow,
.advisiory-slider-parent .custom-prev-arrow {
  display: none;
}
.membership-slider-design.advisiory-slider {
  display: flex;
  gap: 15px;
}

.membership-slider-design.advisiory-slider .single-slide {
  width: calc((100% / 5) - 15px);
}
.joining-data-parent {
  margin-top: 1rem;
}
.joining-data {
  display: flex;
  gap: 15px;
}
.joining-data .single-block {
  width: calc((100% / 3) - 15px);
}
.joining-data .single-block:first-child {
  width: 50%;
}
.join-data img {
  max-width: 40px;
  height: 40px;
  object-fit: contain;
}
.join-data .join-descp {
  color: #898989;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 112.188%;
  font-style: normal;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* About Us Page */
.shadow-element-block {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.shadow-element-block .single-block {
  width: calc((100% / 2) - 15px);
}
.sm-text-descp {
  color: #898989;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 148.688%;
}
.message-parent {
  margin: 10px 0;
  border: 1px solid #898989;
}
.message-container {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
  position: relative;
}
.message-container::before {
  position: absolute;
  content: "";
  background-color: #1d344e;
  bottom: 0;
  right: -2px;
  height: 50px;
  width: 4px;
}
.message-container::after {
  position: absolute;
  content: "";
  background-color: #1d344e;
  right: -2px;
  bottom: -2px;
  width: 30px;
  height: 4px;
}
.message-container .single-block:first-child {
  width: 30%;
}
.message-container .single-block:nth-child(2) {
  width: 70%;
}

/* Media Publications Start */
.news-block {
  display: flex;
  gap: 20px;
}
.news-block .single-news-block {
  width: 60%;
}
.news-block .multiple-news-block {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.multiple-news-block .single-block {
  display: flex;
  gap: 10px;
}
.events-block {
  display: flex;
  flex-wrap: wrap;
}
.events-block .single-event {
  width: calc(100% / 4);
}
.events-block img {
  height: 100%;
}
.red-text-left {
  text-align: left;
  margin: 1rem 0 0.5rem;
}
.red-text-center {
  text-align: center;
  margin: 1rem 0 0.5rem;
}
.articles-block {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.articles-block .single-block {
  margin-right: 10px;
  margin-left: 10px;
}
.article-title {
  color: #524869;
  font-size: 1rem;
  font-weight: 400;
}
.article-title-lg {
  color: #524869;
  font-size: 1.25rem;
  font-weight: 400;
}
.article-descp {
  color: #898989;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
  /* Read More Functionality */
  .more-content {
    display: none;
  }
  a.read-more {
    display: inline-block;
  }
  .messagee {
    margin-top: 1rem;
  }
  #president-message {
    border-bottom: 1px solid #c9c9c9;
  }
  #president-message .title {
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  #president-message .title::after{
    position: absolute;
    content: "";
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 12px solid #e22e33;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: .3s all;
  }
  #president-message .title.active::after {
    border-top: 0;
    border-bottom: 12px solid #e22e33;
    transition: .3s all;
  }
/* Media Publications End */

/* Members Page */
.members-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.members-box .single-slide {
  width: calc((100% / 4) - 15px);
  text-align: center;
  margin-bottom: 15px;
}
.members-box .single-slide p {
  color: #000;
    font-size: 1rem;
    font-weight: 700;
    line-height: 112.188%;
    letter-spacing: 0.99px;
    margin-top: 0.5rem;
    min-height: 36px;
}
.members-box .single-slide .member-img img {
  min-height: 72px;
  object-fit: contain;
  max-width: 150px;
}

/* ------------------- Media Query Start ------------------- */
@media screen and (max-width: 991px) {
  /* Common Css */
  .d-lg-none {
    display: block;
  }
  .d-block {
    display: none !important;
  }
  /* Homepage */
  .ft-offices .ft-office {
    width: calc((100% / 2) - 15px);
  }
  /* Header */
  .header-container {
    align-items: center;
  }
  .navigation ul li.dropdown .dropdown-items {
    position: relative;
    left: 20px;
    width: 100%;
    box-shadow: none;
    z-index: 0;
    display: none;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    height: calc(100% - 84px);
    background-color: #ffffff;
    z-index: 22;
    padding: 25px 0;
  }
  .navigation nav {
    margin-left: 30px;
    width: 50%;
  }

  .navigation ul li a.active {
    border-bottom: 0px;
  }
  .navigation ul {
    flex-direction: column;
    align-items: end;
  }
  .navigation ul {
    align-items: start;
  }
  .social-icons ul {
    flex-direction: row;
    justify-content: start;
    margin-top: 30px;
    margin-left: 30px;
  }
  .social-icons li img {
    width: 25px;
    height: 25px;
  }
  /* First Section */
  .first-section {
    margin-top: -100px;
  }
  .shadow-element-container {
    padding: 1rem 1rem 2rem 1rem;
  }
  .shadow-element-block {
    flex-wrap: wrap;
  }
  .shadow-element-block .single-block {
    width: 100%;
  }
  .shadow-element-block .single-block:first-child {
    order: 1;
  }
  /* Advisory Block */
  .advisiory-slider-parent .custom-next-arrow,
  .advisiory-slider-parent .custom-prev-arrow {
    display: block;
  }
  /* About us Page */
  .message-container .single-block:first-child {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .message-container .single-block:first-child div:first-child {
    width: 60%;
  }


}

@media screen and (max-width: 480px) {
  /* Common */
  .title {
    font-size: 2rem;
  }
  .title-sm {
    font-size: 1.5rem;
  }
  .banner-slider-parent .custom-next-arrow svg,
  .banner-slider-parent .custom-prev-arrow svg {
    height: 20px;
  }
  /* Header */
  header {
    height: 84px;
  }
  .logo-block img {
    max-width: 110px;
  }
  .navigation ul li.dropdown:hover .dropdown-items {
    display: none;
  }
  .navigation ul li.dropdown a {
    width: fit-content;
  }
  .social-icons ul li a {
    padding: 10px;
  }
  /* Footer */
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .ft-offices {
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
  }
  .ft-offices .ft-office {
    width: calc((100% / 2) - 15px);
  }
  .footer-container .block-one,
  .footer-container .block-two {
    width: 100%;
    justify-content: space-between;
  }
  .footer-container .block-two {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer-container .block-two p{
    text-align: center;
    width: 100%;
  }
  .footer-links {
    margin-bottom: 10px;
    width: 100%;
  }
  /* Banner */
  .banner-slider .slick-dots {
    padding-right: 0;
    justify-content: center;
    bottom: -20px;
  }
  /* Homepage */
  .goals-news-container {
    flex-wrap: wrap;
    gap: 60px;
    padding-top: 1.5rem;
  }
  .goals-news-container .block {
    width: 100%;
  }
  .sec-lg-padding {
    padding: 2rem 0;
  }
  .three-blocks {
    flex-wrap: wrap;
  }
  .three-slide-mob .slick-list {
    padding: 0 15%;
    margin: 0 -20px;
  }
  .three-blocks .block {
    margin-right: 10px;
    margin-left: 10px;
  }
  .goals-news-container .goal-text {
    min-height: 110px;
  }
  /* Message Container */
  .message-container {
    flex-wrap: wrap;
  }
  .message-container .single-block:first-child,
  .message-container .single-block:nth-child(2) {
    width: 100%;
  }
  /* Joining Data */
  .joining-data {
    flex-wrap: wrap;
    gap: 30px;
  }
  .joining-data .single-block,
  .joining-data .single-block:first-child {
    width: 100%;
  }
  .first-section {
    min-height: 100%;
  }
  /* Contact Us */
  .office-contact {
    flex-wrap: wrap;
  }
  .office-contact .block,
  .office-contact p {
    width: 100%;
    max-width: 100%;
  }
  .contact-details {
    padding-left: 0;
    padding-right: 0;
  }
  /* Media Publications */
  .events-block .single-event {
    width: calc(100% / 2);
  }
  .articles-block .single-block {
    width: calc((100% / 2) - 15px);
  }
  .news-block {
    flex-wrap: wrap;
  }
  .news-block .single-block {
    width: 100%;
  }
  .multiple-news-block .single-block {
    flex-wrap: wrap;
  }
  .news-block .multiple-news-block {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .news-block .multiple-news-block .single-block {
    width: calc((100% / 2) - 15px);
  }
  /* Mobile Outside Arrows */
  .mob-outside-arrows .custom-next-arrow {
    right: -20px;
  }
  .mob-outside-arrows .custom-prev-arrow {
    left: -20px;
  }
  /* About us Page */
  .membership-slider-design img {
    max-width: 120px;
    height: auto;
  }
  .banner-inner img {
    min-height: 200px;
  }
  .articles-block .slick-list {
    padding: 0 15%;
    margin: 0 -20px;
  }
  .articles-block .single-block {
    margin-right: 10px;
    margin-left: 10px;
  }
  .shadow-element-container h2 {
    font-size: 1.25rem;
  }
  .office-contact h3 {
    font-size: 1.15rem;
  }
  /* Members Page */
  .members-box .single-slide {
    width: calc((100% / 2) - 15px);
  }
  .members-box .single-slide .member-img img {
    max-width: 100%;
  }
}

/* ------------------- Media Query End ------------------- */
