.section-title-board .hover-wrap-inner {
  margin-left: auto;
  margin-right: auto;
}

.section-board-chart {
  position: relative;
}
@media (max-width: 768px) {
  .section-board-chart {
    padding-top: 48px !important;
  }
}
.section-board-chart .row_col_wrap_12 {
  width: 100%;
}
.section-board-chart .taxonomy-filter {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.section-board-chart .taxonomy-filter .section-list-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 80%;
  display: inline-block;
  max-width: 440px;
}
.section-board-chart .taxonomy-filter .section-list-filter.open .custom-select__trigger {
  border: 1px solid #03b6b5;
  box-shadow: 0px 0px 5px 0px rgba(3, 182, 181, 0.2509803922);
}
.section-board-chart .taxonomy-filter .section-list-filter .custom-select__trigger {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 16px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.section-board-chart .taxonomy-filter .section-list-filter .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
}
.section-board-chart .taxonomy-filter .section-list-filter .custom-options__option {
  padding: 10px;
  font-size: 24px;
  color: #333a51;
  cursor: pointer;
  transition: background-color 0.3s;
}
.section-board-chart .taxonomy-filter .section-list-filter .custom-options__option.active {
  color: #03b6b5;
}
.section-board-chart .taxonomy-filter .section-list-filter .custom-options__option:hover {
  background-color: rgba(3, 182, 181, 0.1019607843);
}
.section-board-chart .taxonomy-filter .section-list-filter.open .custom-options {
  display: flex;
}
.section-board-chart .taxonomy-filter .section-list-filter .arrow {
  font-size: 16px;
  color: #333;
  margin-left: 10px;
  height: fit-content;
  display: flex;
}
@media (min-width: 767px) {
  .section-board-chart .taxonomy-filter .section-list-filter {
    width: 70%;
  }
}
.section-board-chart #loading-indicator {
  position: absolute;
  top: 0%;
  z-index: 5;
  left: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-board-chart #loading-indicator .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: blur(2px);
  filter: blur(0.6px);
}
.section-board-chart #loading-indicator .content-loading {
  position: relative;
  height: 0px;
  width: 100px;
  left: -70px;
  color: #666B7D;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.section-board-chart #loading-indicator .content-loading .text-loading {
  position: absolute;
  top: 56px;
}
.section-board-chart #loading-indicator .loading-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  animation: spin 1.5s linear infinite;
  overflow: hidden;
}
.section-board-chart #loading-indicator .loading-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(300deg, #00A8EF 25%, #FCDD26 71.43%);
  clip-path: ellipse(100% 100% at 50% 50%);
  mask: radial-gradient(circle at top right, transparent 30%, black 70%);
  -webkit-mask: radial-gradient(circle at top right, transparent 30%, black 70%);
}
.section-board-chart #loading-indicator .loading-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-board-chart .img-with-aniamtion-wrap .img-loaded {
  margin-left: auto;
  margin-right: auto;
}
.section-board-chart .text-sub-header {
  margin-bottom: 48px;
}
.section-board-chart .board-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1024px) {
  .section-board-chart .board-layout {
    gap: 32px;
  }
}
.section-board-chart .board-layout .highlight-order {
  width: 100%;
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-board-chart .board-layout .highlight-order .inner-highlight {
  width: 33%;
  padding: 20px;
}
@media (max-width: 1024px) {
  .section-board-chart .board-layout .highlight-order .inner-highlight {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .section-board-chart .board-layout .highlight-order .inner-highlight {
    width: 60%;
    min-width: 366px;
  }
}
.section-board-chart .board-layout .highlight-order .inner-highlight a {
  text-decoration: none;
  cursor: pointer;
}
.section-board-chart .board-layout .other-board {
  flex: 1 0 33%;
  max-width: 33%;
  box-sizing: border-box;
  padding: 20px;
}
.section-board-chart .board-layout .other-board a {
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .section-board-chart .board-layout .other-board {
    flex: 1 0 50%;
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .section-board-chart .board-layout .other-board {
    flex: 1 0 100%;
    max-width: 60%;
    min-width: 366px;
  }
}
.section-board-chart .board-layout .board-image {
  width: 100%;
  aspect-ratio: 4/3;
  padding-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), linear-gradient(32.51deg, #fadd27 4.48%, #15acde 104.36%);
  box-shadow: 0px 3px 16px 0px rgba(24, 74, 234, 0.0901960784);
  border-radius: 16px;
}
.section-board-chart .board-layout .board-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0px;
}
.section-board-chart .board-layout .section-content {
  padding-top: 24px;
}
.section-board-chart .board-layout .section-content .name-board {
  text-align: center;
  color: #001e7f;
}
.section-board-chart .board-layout .section-content .text-position .position li::marker {
  color: #00a8ef;
}
.section-board-chart .board-layout .section-content .text-position .position li {
  color: #474E62;
  font-size: 24px;
  line-height: 28.8px;
}
.section-board-chart .board-layout .nectar-cta polyline {
  animation: none;
  stroke-dashoffset: 0;
  stroke-dasharray: 0;
  stroke: #fa9370;
}
.section-board-chart .board-layout .nectar-cta .link_wrap .link_text .line {
  background-color: #fa9370 !important;
}
.section-board-chart .bg-bottom {
  position: absolute;
  right: 0px;
  bottom: 20px;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-board-chart .bg-bottom {
    bottom: -30px;
  }
}

.container .row #document_download_section_two_column_with_image-wrapper {
  z-index: 2;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section {
  display: flex;
  align-items: center;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item {
  z-index: 3;
  min-width: unset !important;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 1) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(250, 147, 112);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 2) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(116, 196, 29);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 3) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(0, 168, 239);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 4) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(179, 105, 170);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 5) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(247, 171, 31);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .nectar-hor-list-item:nth-of-type(6n + 6) .nectar-list-item::before {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(3, 182, 181);
  background-image: none !important;
  border-radius: 50%;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .section-bg-bottom-doc {
  position: relative;
  z-index: 1;
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section .section-bg-bottom-doc .bg {
  position: absolute;
  left: -76%;
  top: -86px;
}
@media (max-width: 1000px) {
  .container .row #document_download_section_two_column_with_image-wrapper .document_download-left-section {
    justify-content: center;
  }
}
.container .row #document_download_section_two_column_with_image-wrapper .document_download-right-section {
  max-height: 200px;
  margin-top: -140px;
  z-index: 2;
}
@media (max-width: 1000px) {
  .container .row #document_download_section_two_column_with_image-wrapper .document_download-right-section {
    margin-top: 0px;
    margin-bottom: 40%;
  }
}
@media (max-width: 1000px) {
  .container .row #document_download_section_two_column_with_image-wrapper .document_download-right-section {
    margin-bottom: 20%;
  }
}
@media (max-width: 1000px) {
  .container .row #document_download_section_two_column_with_image-wrapper {
    margin-top: 0px;
    margin-left: 0px !important;
  }
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 {
    margin-left: 0px !important;
  }
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-left-section {
    justify-content: flex-start;
  }
}

#section-header-text-doc .row_col_wrap_12 {
  margin-left: 0px;
  margin-right: 0px;
}
#section-header-text-doc .section-header-text-doc {
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1000px) {
  #section-header-text-doc .section-header-text-doc {
    margin-top: 0px;
    margin-left: 0px !important;
  }
  #section-header-text-doc .section-header-text-doc .row_col_wrap_12 {
    margin: 0px;
  }
}
#section-header-text-doc .section-header-text-doc .gradient-green-text {
  margin-bottom: 0px;
}

#tabbed-section-full-with-horizontal-wrapper.d-none {
  display: none !important;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle.open .toggle-title {
  background-color: rgba(116, 196, 29, 0.04);
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle.open .toggle-title .toggle-heading i {
  background-color: rgb(116, 196, 29);
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle.open .toggle-title .toggle-heading i::before, #tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle.open .toggle-title .toggle-heading i::after {
  background-color: #fff !important;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle .toggle-title {
  border-left: 4px solid rgb(116, 196, 29);
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle .toggle-title .toggle-heading i {
  background-color: rgba(116, 196, 29, 0.2);
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle .toggle-title .toggle-heading i::before, #tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle .toggle-title .toggle-heading i::after {
  background-color: rgb(116, 196, 29) !important;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .section-accordion-the-nomination-and-remuneration-committee .toggles.accordion .toggle .toggle-title a::before {
  background: rgba(116, 196, 29, 0.08);
  color: rgb(116, 196, 29);
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 1) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 1) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 1) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(250, 147, 112);
  background-color: rgba(250, 147, 112, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 2) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 2) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 2) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(116, 196, 29);
  background-color: rgba(116, 196, 29, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 3) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 3) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 3) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(0, 168, 239);
  background-color: rgba(0, 168, 239, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 4) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 4) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 4) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(179, 105, 170);
  background-color: rgba(179, 105, 170, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 5) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 5) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 5) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(247, 171, 31);
  background-color: rgba(247, 171, 31, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 6) .tab-list-with-number .wpb_wrapper .nectar-responsive-text {
  counter-reset: toggle-counter;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 6) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p {
  counter-increment: toggle-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_wrapper .wpb_tab:nth-of-type(6n + 6) .tab-list-with-number .wpb_wrapper .nectar-responsive-text p::before {
  content: counter(toggle-counter);
  border-radius: 100%;
  padding: 20px 20px;
  width: 36px;
  height: 28px;
  display: flex;
  margin-bottom: auto;
  color: rgb(3, 182, 181);
  background-color: rgba(3, 182, 181, 0.08);
  font-size: 24px;
  line-height: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

#document_download_section_two_column_with_image-wrapper.d-none {
  display: none !important;
}

#content-section-full-with-accordion .toggles.accordion .toggle .inner-toggle-wrap,
#content-section-full-with-accordion-with-number .toggles.accordion .toggle .inner-toggle-wrap {
  background: #fff;
  padding: 0px;
}

#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_tabs_nav .tab-item a i {
  display: none;
}
#tabbed-section-full-with-horizontal-wrapper .horizontal-tab-wrapper .wpb_tabs_nav .tab-item a svg {
  fill: none;
}

.container .row .wpb_content_element.horizontal-tab-wrapper .wpb_wrapper.tabbed .wpb_tabs_nav.ui-tabs-nav {
  margin-bottom: 36px;
}

.container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(1) .img-wrap {
  transform: translateX(10%) translateY(-30%) !important;
}
@media (max-width: 999px) {
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(1) .img-wrap {
    transform: translateX(5%) translateY(-12%) !important;
  }
}
@media (max-width: 768px) {
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(1) .img-wrap {
    transform: translateX(-30%) translateY(12%) !important;
  }
}

.container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(2) .img-wrap {
  transform: translateX(-14%) translateY(-40%) !important;
}
@media (max-width: 999px) {
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(2) .img-wrap {
    transform: translateX(-20%) translateY(-15%) !important;
  }
}
@media (max-width: 768px) {
  .container .row #document_download_section_two_column_with_image-wrapper .row_col_wrap_12 .document_download-right-section.section-img-cascadding .vc_column-inner .wpb_wrapper .nectar_cascading_images .cascading-image:nth-child(2) .img-wrap {
    transform: translateX(-10%) translateY(-10%) !important;
  }
}

/*# sourceMappingURL=board-director.css.map */
