/**
 * Created by Sushant Gauchan
 * Email : sushant.gauchan@gmail.com
*/
/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
.ex-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }

.ex-flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap; }

.ex-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.ex-transition {
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease; }

.ex-transition-medium {
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease; }

.ex-transition-large {
  -webkit-transition: all 1.8s ease;
  -moz-transition: all 1.8s ease;
  -ms-transition: all 1.8s ease;
  -o-transition: all 1.8s ease;
  transition: all 1.8s ease; }

/*--------------------------------------- Mixins Ends -------------------------------------*/
/*------------------------------------ Site Wide Starts -----------------------------------*/
/*------------------------------------- Site Wide Ends ------------------------------------*/
/*------------------------------------ Body Style Start -----------------------------------*/
/*------------------------------------- Body Style Ends -----------------------------------*/
/*--------------------------------- Header Wrapper Starts ---------------------------------*/
#header-wrapper {
  z-index: 999;
  width: 100%;
  transition: all .8s ease;
  background-color: #fff;
  position: relative; }
  #header-wrapper .common-logo-nav-wrapper .nav-container nav ul li {
    display: inline-block;
    vertical-align: top; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav ul li a {
      font-size: 14px;
      display: block;
      color: #1e1e1e;
      font-weight: 600;
      line-height: 1; }
  #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li {
    position: relative; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li:not(:last-of-type) {
      margin-right: 70px; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > a {
      padding: 40px 0;
      transition: all .6s ease; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > a:hover {
        color: #db2525;
        transition: all .6s ease; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul {
      box-shadow: 0 0 8px #27272712;
      min-width: 329px;
      position: absolute;
      left: -22px;
      top: 100%;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
      z-index: 9999; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul:after {
        content: '';
        position: absolute;
        top: -7px;
        left: 18px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #fff; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li {
        position: relative;
        width: 100%;
        border-left: 2px solid transparent;
        background-color: #fff;
        transition: all .6s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li a {
          font-size: 14px;
          padding: 18px 20px;
          line-height: 1em;
          color: #1e1e1e;
          transition: all .6s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover {
          border-left: 2px solid #db2525;
          background-color: #E8F6FF;
          transition: all .6s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover > a {
            color: #db2525;
            transition: all .6s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover ul {
            opacity: 1;
            pointer-events: initial;
            transition: opacity 0.5s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul {
          position: absolute;
          width: 329px;
          left: 100%;
          top: 0;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.5s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li {
            width: 100%;
            display: block;
            border-left: 2px solid transparent;
            background-color: #fff;
            transition: all .6s ease; }
            #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li a {
              color: #1e1e1e;
              transition: all .6s ease; }
            #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover {
              border-left: 2px solid #db2525;
              background-color: #E8F6FF;
              transition: all .6s ease; }
              #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover > a {
                color: #db2525;
                transition: all .6s ease; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a {
      position: relative;
      padding-right: 17px; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a:after {
        content: '';
        height: 6px;
        width: 10px;
        background-image: url("../img/icons/downarrow-icon.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all .4s ease; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li:hover > ul {
      opacity: 1;
      pointer-events: initial;
      transition: opacity 0.5s ease; }
  #header-wrapper .custom-container {
    padding-top: 0;
    padding-bottom: 0; }
  #header-wrapper:after {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #eae6e2;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none; }
  #header-wrapper.nav-scroll {
    position: fixed;
    background-color: #fff;
    top: 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.28);
    animation: ani-slide-down 0.7s;
    transition: all .5s ease-in-out; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .common-logo-container a {
      filter: brightness(100%) invert(0); }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a:after {
      filter: brightness(1) invert(0);
      transition: all .4s ease; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul:after {
      opacity: 0; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li {
      position: relative;
      background-color: #fff; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover > a {
        background-color: #E8F6FF; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li {
        background-color: #fff; }
        #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover > a {
          background-color: #E8F6FF; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .co-btn.color-invert.type-border {
      color: #db2525;
      border-color: #db2525; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .co-btn.color-invert.type-border:hover {
        background-color: #05312d;
        color: #fff;
        border-color: #05312d;
        transition: all .4s ease; }

.leaflet-container {
  background: #fff; }

.leaflet-control-container {
  display: none !important; }

.common-logo-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative; }
  .common-logo-nav-wrapper .action-container {
    display: flex;
    align-items: center; }
    .common-logo-nav-wrapper .action-container .action-item:nth-of-type(1) {
      margin-right: 20px; }
    .common-logo-nav-wrapper .action-container .action-item.get-involved a {
      display: flex;
      align-items: center;
      background-color: #db2525;
      padding: 16px 25px;
      color: #fff;
      line-height: 1; }
      .common-logo-nav-wrapper .action-container .action-item.get-involved a img {
        margin-right: 10px; }

.close-icon-container {
  display: none; }

/*--------------------------------- Header Wrapper Starts ---------------------------------*/
/*----------------------------------- Navigation Starts -----------------------------------*/
#navigation-wrapper {
  z-index: 11;
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #db2525;
  display: flex;
  flex-direction: column;
  clip-path: inset(0 0% 100% 0);
  transition: 0.8s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88);
  pointer-events: none; }

body.menu-open #navigation-wrapper {
  pointer-events: initial;
  clip-path: inset(0 0% 0 0);
  transition: 0.8s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88); }

/*------------------------------------ Navigation Ends ------------------------------------*/
/*-------------------------------- Content Wrapper Starts ---------------------------------*/
#content-wrapper #home-page .about-section {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #home-page .about-section .about-container .layout-container {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; }
    #content-wrapper #home-page .about-section .about-container .layout-container .layout-item {
      width: 50%;
      padding: 10px; }
      #content-wrapper #home-page .about-section .about-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
        background-color: #fff;
        padding: 80px; }
      #content-wrapper #home-page .about-section .about-container .layout-container .layout-item .layout-inner {
        width: 100%;
        height: 100%; }
        #content-wrapper #home-page .about-section .about-container .layout-container .layout-item .layout-inner .image-container {
          width: 100%;
          height: 100%; }
          #content-wrapper #home-page .about-section .about-container .layout-container .layout-item .layout-inner .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center; }
  #content-wrapper #home-page .about-section .report-container {
    margin-top: 10px; }
    #content-wrapper #home-page .about-section .report-container .layout-container {
      display: flex;
      flex-wrap: wrap;
      margin: -10px; }
      #content-wrapper #home-page .about-section .report-container .layout-container .layout-item {
        padding: 10px; }
        #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(1) {
          width: 490px; }
          #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(1) .layout-inner {
            background-color: #e9e1cf; }
            #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(1) .layout-inner .description {
              font-size: 16px; }
            #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(1) .layout-inner .background-image {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              padding: 20px;
              pointer-events: none; }
              #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(1) .layout-inner .background-image img {
                width: 100%;
                height: 100%; }
        #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) {
          width: calc(100% - 490px); }
          #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
            background-color: #fff; }
            #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .title {
              margin-bottom: 80px; }
              #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .title ul {
                display: flex;
                align-items: center;
                justify-content: space-between; }
                #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .title ul li a {
                  padding: 0px; }
            #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .info-list-container {
              display: flex;
              flex-wrap: wrap;
              margin: -30px; }
              #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .info-list-container .info-item {
                width: 33.33%;
                padding: 30px; }
                #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .info-list-container .info-item .text h3 {
                  margin-top: 40px;
                  margin-bottom: 10px;
                  color: #1e1e1e; }
                #content-wrapper #home-page .about-section .report-container .layout-container .layout-item:nth-of-type(2) .layout-inner .numbers-container .info-list-container .info-item .text span {
                  font-size: 16px;
                  display: block;
                  color: #797671; }
        #content-wrapper #home-page .about-section .report-container .layout-container .layout-item .layout-inner {
          position: relative;
          padding: 80px;
          padding-bottom: 105px;
          width: 100%; }
#content-wrapper #home-page .where-we-work-section .layout-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(1) {
    width: calc(100% - 370px);
    padding-right: 70px;
    position: sticky;
    top: 100px; }
    #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(1) .map-images-container .all-programs-map #naksa {
      width: 100%;
      height: 60vh; }
    #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(1) img {
      width: 100%; }
  #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) {
    width: 370px; }
    #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .title {
      border-bottom: 1px solid #eae6e2;
      padding-bottom: 20px;
      margin-bottom: 20px; }
      #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .title span {
        font-size: 16px;
        color: #797671; }
    #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container {
      margin-top: 40px; }
      #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-title {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eae6e2; }
        #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-title span {
          color: #797671; }
      #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-description ul {
        display: flex;
        align-items: center;
        line-height: 1; }
        #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-description ul li:nth-of-type(1) {
          width: 40px;
          height: 20px;
          background-color: #db2525;
          margin-right: 20px; }
        #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-description ul:not(:last-child) {
          margin-bottom: 20px; }
        #content-wrapper #home-page .where-we-work-section .layout-container .layout-item:nth-of-type(2) .legend-container .legend-description ul:nth-of-type(2) li:nth-of-type(1) {
          background-color: #E9E1CE; }
#content-wrapper #home-page .ongoing-projects-section {
  background-image: url("../img/background/temples.png");
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-color: #e9e1cf; }
  #content-wrapper #home-page .ongoing-projects-section .section-title {
    text-align: center;
    margin-bottom: 50px; }
#content-wrapper #home-page .articles-section {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #home-page .articles-section .section-title {
    margin-bottom: 45px; }
    #content-wrapper #home-page .articles-section .section-title ul {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #content-wrapper #home-page .articles-section .section-title ul li a {
        padding: 0;
        min-width: 0;
        background-color: transparent; }
  #content-wrapper #home-page .articles-section .section-content .common-featured-block-container {
    margin-bottom: 20px; }
#content-wrapper #home-page .collaboration-section {
  background-color: #fff; }
  #content-wrapper #home-page .collaboration-section .title {
    text-align: center;
    margin-bottom: 60px; }
    #content-wrapper #home-page .collaboration-section .title h4 {
      position: relative; }
      #content-wrapper #home-page .collaboration-section .title h4:after {
        content: '';
        width: 60px;
        height: 3px;
        background-color: #db2525;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px; }
  #content-wrapper #home-page .collaboration-section .colaboration-logo-container {
    display: flex;
    flex-wrap: wrap; }
    #content-wrapper #home-page .collaboration-section .colaboration-logo-container .logo-item {
      width: 16.66%; }
      #content-wrapper #home-page .collaboration-section .colaboration-logo-container .logo-item .image-container img {
        width: 100%; }
#content-wrapper #about-page .who-we-are-section .custom-container {
  padding-top: 50px; }
#content-wrapper #about-page .who-we-are-section .layout-container {
  display: flex; }
  #content-wrapper #about-page .who-we-are-section .layout-container .layout-item {
    width: 50%; }
    #content-wrapper #about-page .who-we-are-section .layout-container .layout-item:nth-of-type(1) {
      background-image: url("../img/background/main-background-image.png");
      background-size: cover; }
      #content-wrapper #about-page .who-we-are-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
        padding: 120px 130px; }
    #content-wrapper #about-page .who-we-are-section .layout-container .layout-item .layout-inner {
      width: 100%;
      height: 100%; }
      #content-wrapper #about-page .who-we-are-section .layout-container .layout-item .layout-inner .text-container span {
        font-weight: 700; }
      #content-wrapper #about-page .who-we-are-section .layout-container .layout-item .layout-inner .text-container h1 {
        line-height: 1;
        margin-bottom: 30px; }
      #content-wrapper #about-page .who-we-are-section .layout-container .layout-item .layout-inner .image-container {
        width: 100%;
        height: 100%; }
        #content-wrapper #about-page .who-we-are-section .layout-container .layout-item .layout-inner .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
#content-wrapper #about-page .tagline-section .tagline-container {
  max-width: 1140px;
  text-align: center;
  margin: auto; }
  #content-wrapper #about-page .tagline-section .tagline-container h1 {
    font-weight: 400;
    font-style: italic; }
#content-wrapper #about-page .about-nset-section .about-nset-container .layout-container {
  display: flex;
  align-items: center;
  margin: -10px; }
  #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container .layout-item {
    width: 50%;
    padding: 10px; }
    #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
      padding: 0px 80px; }
    #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container .layout-item .layout-inner {
      width: 100%;
      height: 100%; }
      #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container .layout-item .layout-inner .image-container {
        width: 100%;
        height: 600px; }
        #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container .layout-item .layout-inner .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
  #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container:nth-of-type(even) .layout-item {
    width: 100% !important; }
  #content-wrapper #about-page .about-nset-section .about-nset-container .layout-container:not(:last-child) {
    margin-bottom: 60px; }
#content-wrapper #about-page .mission-vission-section .layout-container {
  display: flex;
  align-items: center; }
  #content-wrapper #about-page .mission-vission-section .layout-container .layout-item {
    width: 50%; }
    #content-wrapper #about-page .mission-vission-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
      padding: 0px 80px; }
    #content-wrapper #about-page .mission-vission-section .layout-container .layout-item:nth-of-type(2) .layout-inner img {
      width: 100%; }
    #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .title {
      margin-bottom: 60px; }
    #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .mission-vission-container ul {
      display: flex; }
      #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .mission-vission-container ul li h4 {
        margin-bottom: 15px;
        line-height: 1; }
      #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .mission-vission-container ul li:nth-of-type(1) {
        margin-right: 20px; }
      #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .mission-vission-container ul li:nth-of-type(2) {
        padding-top: 30px; }
      #content-wrapper #about-page .mission-vission-section .layout-container .layout-item .layout-inner .mission-vission-container ul:not(:last-child) {
        margin-bottom: 70px; }
#content-wrapper #strategic-plan-page .description-section .custom-container {
  padding-top: 40px; }
  #content-wrapper #strategic-plan-page .description-section .custom-container .title {
    margin-bottom: 30px; }
  #content-wrapper #strategic-plan-page .description-section .custom-container .content ul {
    padding-left: 30px; }
    #content-wrapper #strategic-plan-page .description-section .custom-container .content ul li {
      list-style-type: decimal; }
#content-wrapper #strategic-plan-page .goal-image-section .goal-image-container {
  position: relative; }
  #content-wrapper #strategic-plan-page .goal-image-section .goal-image-container .image-container {
    width: 890px; }
    #content-wrapper #strategic-plan-page .goal-image-section .goal-image-container .image-container img {
      width: 100%; }
  #content-wrapper #strategic-plan-page .goal-image-section .goal-image-container .text-container {
    text-align: right;
    position: absolute;
    top: 100px;
    right: 0; }
    #content-wrapper #strategic-plan-page .goal-image-section .goal-image-container .text-container h1 {
      color: #fff;
      background-color: #1e1e1e;
      line-height: 1;
      padding: 20px;
      width: max-content;
      margin-left: auto; }
      #content-wrapper #strategic-plan-page .goal-image-section .goal-image-container .text-container h1:not(:last-child) {
        margin-bottom: 20px; }
#content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; }
  #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list {
    width: 33.33%;
    padding: 10px; }
    #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list .inner {
      padding: 50px 40px;
      border: 1px solid #F6EEE3;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list .inner .title {
        margin-bottom: 40px; }
        #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list .inner .title h1 {
          color: #DED5C4; }
    #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list:nth-of-type(1) .inner {
      background-color: #1e1e1e; }
      #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list:nth-of-type(1) .inner .title {
        margin-bottom: 20px; }
        #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list:nth-of-type(1) .inner .title h1 {
          color: #fff; }
      #content-wrapper #strategic-plan-page .strategic-objectives-section .section-content .strategic-objectives-container .strategic-objectives-list:nth-of-type(1) .inner .description {
        color: #fff; }
#content-wrapper #team-page .team-members-list-section .team-list-container {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -10px; }
  #content-wrapper #team-page .team-members-list-section .team-list-container .team-item {
    padding: 30px 10px;
    width: 20%; }
    #content-wrapper #team-page .team-members-list-section .team-list-container .team-item .image-container img {
      width: 100%; }
    #content-wrapper #team-page .team-members-list-section .team-list-container .team-item .text-container {
      margin-top: 20px; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item .text-container .name {
        font-weight: 700;
        display: block;
        line-height: 1.4;
        margin-bottom: 5px; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item .text-container .common-medium-small-font {
        display: block;
        line-height: 1.6; }
    #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a {
      display: block; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a .image-container {
        position: relative; }
        #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a .image-container:after {
          content: 'read more';
          color: #fff;
          font-size: 16px;
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          background-color: #00000091;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          opacity: 0; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a .text-container .name {
        color: #1e1e1e; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a .text-container .common-medium-small-font {
        color: #1e1e1e; }
      #content-wrapper #team-page .team-members-list-section .team-list-container .team-item a:hover .image-container:after {
        opacity: 1; }
#content-wrapper #partners-page .description-section .custom-container {
  padding-top: 70px;
  padding-bottom: 60px; }
  #content-wrapper #partners-page .description-section .custom-container .details-container {
    margin-top: 60px; }
    #content-wrapper #partners-page .description-section .custom-container .details-container .details-list:not(:last-child) {
      margin-bottom: 60px; }
    #content-wrapper #partners-page .description-section .custom-container .details-container .details-list .details-title {
      margin-bottom: 20px; }
    #content-wrapper #partners-page .description-section .custom-container .details-container .details-list .details-description a {
      color: #db2525; }
      #content-wrapper #partners-page .description-section .custom-container .details-container .details-list .details-description a:hover {
        text-decoration: underline; }
#content-wrapper #partners-page .common-section .description-container a {
  color: #db2525; }
  #content-wrapper #partners-page .common-section .description-container a:hover {
    text-decoration: underline; }
#content-wrapper #partners-page .common-section .description-container ul {
  padding-left: 20px; }
  #content-wrapper #partners-page .common-section .description-container ul li {
    list-style-type: disc; }
    #content-wrapper #partners-page .common-section .description-container ul li a {
      color: #db2525; }
      #content-wrapper #partners-page .common-section .description-container ul li a:hover {
        text-decoration: underline; }
    #content-wrapper #partners-page .common-section .description-container ul li:not(:last-child) {
      margin-bottom: 20px; }
#content-wrapper #partners-page .logo-collection-section .logo-collection-container .item:not(:last-child) {
  margin-bottom: 120px; }
#content-wrapper #partners-page .complaint-form-section {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
#content-wrapper #programs-page .programs-list-section .custom-container {
  padding-top: 50px; }
#content-wrapper #programs-page .programs-list-section .section-title {
  text-align: center; }
#content-wrapper #programs-page .programs-list-section .common-filter-wrapper {
  padding: 30px 40px;
  background-color: #E9E1CF;
  margin: 60px 0px; }
  #content-wrapper #programs-page .programs-list-section .common-filter-wrapper .filter-container a {
    padding: 12px 20px;
    border: 1px solid #DED5C4;
    display: inline-block;
    color: #1e1e1e;
    text-align: center;
    font-weight: 700; }
    #content-wrapper #programs-page .programs-list-section .common-filter-wrapper .filter-container a ul {
      display: flex;
      align-items: center; }
      #content-wrapper #programs-page .programs-list-section .common-filter-wrapper .filter-container a ul li:nth-of-type(2) {
        width: 116px; }
#content-wrapper #programs-page .thematic-process-list-section .custom-container {
  padding-top: 100px; }
#content-wrapper #programs-page .nset-division-list-section .tagline-container {
  text-align: center;
  max-width: 760px;
  margin: auto;
  padding: 80px 0px; }
#content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section {
  background-image: url("../img/background/erm-background.png");
  background-size: cover;
  background-position: left 0 top 150px; }
  #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .earthquake-risk-management-content-container {
    max-width: 1020px;
    margin: auto;
    text-align: center; }
    #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .earthquake-risk-management-content-container .icon-title-container {
      margin-bottom: 30px; }
      #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .earthquake-risk-management-content-container .icon-title-container .icon {
        margin-bottom: 10px; }
  #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .thumnail-image-container {
    margin-top: 120px; }
    #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .thumnail-image-container .image-container {
      width: 100%;
      height: 630px; }
      #content-wrapper #earthquake-risk-management-page .earthquake-risk-management-section .thumnail-image-container .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
#content-wrapper #earthquake-risk-management-page .activities-section .title {
  text-align: center;
  margin-bottom: 110px; }
#content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list .layout-container {
  display: flex;
  flex-wrap: wrap;
  margin: -0px -60px; }
  #content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list .layout-container .layout-item {
    width: 50%;
    padding: 0px 60px; }
    #content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list .layout-container .layout-item .text-container h4 {
      margin-bottom: 25px; }
    #content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list .layout-container .layout-item .image-container img {
      width: 100%; }
#content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list:nth-of-type(even) .layout-container {
  flex-direction: row-reverse; }
#content-wrapper #earthquake-risk-management-page .activities-section .activities-list-container .list:not(:last-child) {
  margin-bottom: 80px; }
#content-wrapper #publications-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover;
  position: relative;
  z-index: 0; }
  #content-wrapper #publications-page .publications-list-section .layout-container {
    display: flex; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item:nth-of-type(1) {
      width: 330px; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item:nth-of-type(1) .inner {
        padding-right: 80px;
        border-right: 2px solid #DED5C4;
        position: sticky;
        top: 150px; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item:nth-of-type(2) {
      width: calc(100% - 330px); }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item:nth-of-type(2) .inner {
        padding-left: 70px; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .layout-sub-title {
      margin-bottom: 35px; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .layout-sub-title span {
        font-weight: 700; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .layout-title {
      margin-bottom: 15px; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list > .category-list-row {
      display: flex;
      align-items: center; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list > .category-list-row > a {
        color: #1e1e1e;
        display: block;
        transition: 0.6s;
        font-weight: 600; }
        #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list > .category-list-row > a:hover {
          font-weight: 600; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list:not(:last-child) {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e3dec9; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list > .subcategory-list {
      padding-left: 15px;
      padding-top: 10px;
      display: none; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container > .category-list > .subcategory-list.open {
        display: block; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container .subcategory-list > .category-list > .category-list-row > a {
      font-weight: 600;
      display: block;
      color: #1e1e1e; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container .subcategory-list > .category-list > .subcategory-list a {
      color: #1e1e1e;
      font-weight: 400;
      padding-left: 15px; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container .subcategory-list > .category-list > a {
      display: block;
      color: #1e1e1e;
      font-weight: 400; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .category-list-container .subcategory-list > .category-list:not(:last-child) {
      margin-bottom: 10px; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container {
      display: flex;
      flex-wrap: wrap;
      margin: -30px -10px; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container .publication-list {
        width: 33.33%;
        padding: 30px 10px; }
        #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container .publication-list a .image-container img {
          width: 100%; }
        #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container .publication-list a .title-container {
          margin-top: 20px; }
          #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container .publication-list a .title-container span {
            color: #1e1e1e;
            font-weight: 600;
            transition: .6s; }
            #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container .publication-list a .title-container span:hover {
              color: #db2525;
              transition: .6s; }
      #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .publications-list-container.reports-list .publication-list {
        width: 25%; }
    #content-wrapper #publications-page .publications-list-section .layout-container .layout-item .common-pagination-container {
      margin-top: 60px; }
  #content-wrapper #publications-page .publications-list-section.report-listing .layout-container {
    display: flex; }
    #content-wrapper #publications-page .publications-list-section.report-listing .layout-container .layout-item:nth-of-type(1) {
      width: 100%; }
      #content-wrapper #publications-page .publications-list-section.report-listing .layout-container .layout-item:nth-of-type(1) .inner {
        padding-right: 0px;
        border-right: none;
        position: inherit;
        top: 150px; }
#content-wrapper #vacancy-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #vacancy-page .title-section .custom-container {
    padding-bottom: 80px; }
  #content-wrapper #vacancy-page .title-section .text-container h1 {
    margin-bottom: 30px;
    line-height: 1; }
  #content-wrapper #vacancy-page .vacancy-list-section .title {
    margin-bottom: 60px; }
    #content-wrapper #vacancy-page .vacancy-list-section .title h4 {
      margin-bottom: 25px; }
    #content-wrapper #vacancy-page .vacancy-list-section .title .text-container ul {
      padding-left: 50px; }
      #content-wrapper #vacancy-page .vacancy-list-section .title .text-container ul li {
        list-style: disc; }
    #content-wrapper #vacancy-page .vacancy-list-section .title.no-bottom-margin {
      margin-bottom: 0px !important; }
  #content-wrapper #vacancy-page .vacancy-list-section .common-job-list-container {
    margin-bottom: 80px; }
  #content-wrapper #vacancy-page .how-to-apply-container > h4 {
    margin-bottom: 25px; }
  #content-wrapper #vacancy-page .how-to-apply-container ul {
    padding-left: 25px; }
    #content-wrapper #vacancy-page .how-to-apply-container ul li {
      list-style-type: disc; }
  #content-wrapper #vacancy-page .how-to-apply-container .common-form-wrapper {
    background-color: #fff;
    padding: 40px;
    margin-top: 40px; }
#content-wrapper #history-page .page-banner-section {
  padding: 180px 0px;
  background-image: url("../img/background/history-page-banner.png");
  background-size: cover; }
  #content-wrapper #history-page .page-banner-section .title {
    text-align: center; }
    #content-wrapper #history-page .page-banner-section .title span {
      font-size: 84px;
      font-family: "PT Serif", serif;
      color: #1e1e1e;
      font-weight: 700; }
#content-wrapper #history-page .history-list-section .history-list-container {
  position: relative; }
  #content-wrapper #history-page .history-list-section .history-list-container:after {
    content: '';
    width: 2px;
    height: calc(100% - 140px);
    background-color: #D9D9D9;
    position: absolute;
    left: 50%;
    top: 142px;
    transform: translateX(-50%); }
  #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container {
    display: flex;
    flex-wrap: wrap;
    margin: -0px -30px; }
    #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item {
      width: 50%;
      padding: 0px 30px; }
      #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item:nth-of-type(1) .layout-inner {
        position: sticky;
        top: 140px; }
      #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item:nth-of-type(2) .layout-inner {
        padding-top: 120px; }
      #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .image-container {
        height: 330px; }
        #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
      #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container {
        position: relative; }
        #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container:after {
          content: '';
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background-color: #db2525;
          overflow: hidden;
          position: absolute;
          left: -36px;
          top: 20px;
          z-index: 1; }
        #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container h3, #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container h4, #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container h5, #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container h6, #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container b {
          margin-bottom: 20px; }
        #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container p {
          font-size: 16px; }
        #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container ul {
          padding-left: 40px; }
          #content-wrapper #history-page .history-list-section .history-list-container .history-list .layout-container .layout-item .layout-inner .text-container ul li {
            font-size: 16px;
            list-style-type: disc; }
  #content-wrapper #history-page .history-list-section .history-list-container .history-list:not(:last-child) {
    margin-bottom: 60px; }
#content-wrapper #job-description-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #job-description-page .job-details-section .layout-container {
    display: flex; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item:nth-of-type(1) {
      width: calc(100% - 310px); }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
        padding-right: 80px; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item:nth-of-type(2) {
      width: 310px; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item:nth-of-type(2) .layout-inner {
        position: sticky;
        top: 155px; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-details ul li {
      display: flex; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-details ul li span {
        display: block;
        font-weight: 700; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-details ul li:not(:last-child) {
        margin-bottom: 5px; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-description-container .common-description-item .description-title {
      margin-bottom: 10px; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-description-container .common-description-item .description-content ul {
      padding-left: 30px; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-description-container .common-description-item .description-content ul li {
        list-style-type: disc; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .job-description-container .common-description-item:last-child {
      margin-bottom: 0px !important; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .details-container .common-bottom-margin {
      margin-bottom: 45px; }
    #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container {
      padding: 35px 40px;
      background-color: #1e1e1e; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container .title h4 {
        color: #fff; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container .description {
        color: #fff; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container .apply-now-btn a {
        color: #1e1e1e;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        background-color: #fff;
        transition: all .4s ease; }
        #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container .apply-now-btn a:hover {
          background-color: #DED5C4;
          transition: all .4s ease; }
      #content-wrapper #job-description-page .job-details-section .layout-container .layout-item .layout-inner .apply-now-container .common-bottom-margin {
        margin-bottom: 35px; }
#content-wrapper #thematic-focus-page .thematic-focus-content-section .custom-container {
  padding-top: 60px; }
#content-wrapper #thematic-focus-page .thematic-focus-content-section .common-content-list-container .item {
  padding-bottom: 35px;
  margin-bottom: 55px;
  border-bottom: 1px solid #DED5C4; }
  #content-wrapper #thematic-focus-page .thematic-focus-content-section .common-content-list-container .item:last-child {
    margin-bottom: 0px; }
  #content-wrapper #thematic-focus-page .thematic-focus-content-section .common-content-list-container .item ul {
    display: flex; }
    #content-wrapper #thematic-focus-page .thematic-focus-content-section .common-content-list-container .item ul li:nth-of-type(1) {
      width: 480px; }
    #content-wrapper #thematic-focus-page .thematic-focus-content-section .common-content-list-container .item ul li:nth-of-type(2) {
      width: calc(100% - 480px);
      padding-left: 40px; }
#content-wrapper #thematic-focus-page .thematic-focus-content-section .image-breaker-container {
  padding: 60px 0px; }
#content-wrapper #reports-page .banner-section {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../img/background/report-page-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  #content-wrapper #reports-page .banner-section .custom-container {
    padding-top: 130px;
    padding-bottom: 130px; }
    #content-wrapper #reports-page .banner-section .custom-container .text-container {
      max-width: 500px;
      color: #fff; }
      #content-wrapper #reports-page .banner-section .custom-container .text-container h1 {
        margin-bottom: 25px;
        color: #fff; }
#content-wrapper #reports-page .featured-report-section .layout-container {
  display: flex; }
  #content-wrapper #reports-page .featured-report-section .layout-container .layout-item {
    width: 50%;
    position: relative; }
    #content-wrapper #reports-page .featured-report-section .layout-container .layout-item:nth-of-type(2) {
      background-color: #e9e1cf; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item:nth-of-type(2) .layout-inner {
        padding: 80px; }
    #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner {
      width: 100%;
      height: 100%;
      position: relative; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .image-container {
        width: 100%;
        height: 100%; }
        #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .tag-container {
        position: absolute;
        top: 20px;
        left: -10px; }
        #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .tag-container span {
          color: #fff;
          line-height: 1;
          padding: 7px 20px;
          background-color: #db2525; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .latest-report-container .title-description-container h4 {
        margin-bottom: 20px; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .latest-report-container .numbers-container {
        margin: 40px 0px; }
        #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .latest-report-container .numbers-container ul {
          display: flex;
          justify-content: space-between;
          margin: -5px; }
          #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .latest-report-container .numbers-container ul li {
            padding: 5px; }
            #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .latest-report-container .numbers-container ul li span {
              display: block;
              line-height: 1.3; }
      #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .pattern-background-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        pointer-events: none; }
        #content-wrapper #reports-page .featured-report-section .layout-container .layout-item .layout-inner .pattern-background-container img {
          width: 100%;
          height: 100%; }
#content-wrapper #reports-page .all-reports-section.type-background {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
#content-wrapper #reports-page .all-reports-section .title {
  border-bottom: 3px solid #1e1e1e;
  padding-bottom: 30px; }
#content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list {
  border-bottom: 2px solid #e9e1cf; }
  #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a {
    padding: 25px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e1e1e; }
    #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item ul {
      display: flex;
      align-items: center; }
      #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item ul li {
        line-height: 1; }
        #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item ul li:nth-of-type(1) {
          margin-right: 20px; }
    #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item .name li span {
      color: #797671;
      margin-top: 10px;
      display: block; }
    #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item .donwload-btn li span {
      font-weight: 600; }
    #content-wrapper #reports-page .all-reports-section .reports-list-container .reports-list a .item .donwload-btn li:nth-of-type(1) {
      margin-right: 10px; }
#content-wrapper #donation-page .banner-section {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../img/background/donation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  #content-wrapper #donation-page .banner-section .custom-container {
    padding-top: 150px;
    padding-bottom: 150px; }
    #content-wrapper #donation-page .banner-section .custom-container .text-container {
      max-width: 500px; }
      #content-wrapper #donation-page .banner-section .custom-container .text-container h1 {
        color: #fff; }
        #content-wrapper #donation-page .banner-section .custom-container .text-container h1 span {
          color: #db2525; }
#content-wrapper #donation-page .contribute-section {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #donation-page .contribute-section .layout-container {
    display: flex;
    flex-wrap: wrap; }
    #content-wrapper #donation-page .contribute-section .layout-container .layout-item:nth-of-type(1) {
      width: calc(100% - 500px);
      padding-right: 150px; }
    #content-wrapper #donation-page .contribute-section .layout-container .layout-item:nth-of-type(2) {
      width: 500px; }
    #content-wrapper #donation-page .contribute-section .layout-container .layout-item .layout-inner {
      width: 100%;
      height: 100%; }
      #content-wrapper #donation-page .contribute-section .layout-container .layout-item .layout-inner .description {
        margin-bottom: 50px; }
      #content-wrapper #donation-page .contribute-section .layout-container .layout-item .layout-inner .additional-description .title {
        margin-bottom: 20px; }
      #content-wrapper #donation-page .contribute-section .layout-container .layout-item .layout-inner .image-container {
        width: 100%;
        height: 100%; }
        #content-wrapper #donation-page .contribute-section .layout-container .layout-item .layout-inner .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
#content-wrapper #donation-page .ways-to-donation-section .title-container {
  margin-bottom: 50px; }
#content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -10px; }
  #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item {
    width: 33.33%;
    padding: 10px; }
    #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item .donation-ways-item-inner {
      background-color: #F6EEE3;
      height: 100%;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item .donation-ways-item-inner .title-description-container .item-title {
        margin-bottom: 10px; }
      #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item .donation-ways-item-inner .title-description-container .item-content ul {
        margin-top: 10px; }
      #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item .donation-ways-item-inner .link {
        margin-top: 20px; }
        #content-wrapper #donation-page .ways-to-donation-section .section-content .donation-ways-container .donation-ways-item .donation-ways-item-inner .link a {
          width: 100%;
          background-color: #1e1e1e;
          color: #e9e1cf;
          text-align: center;
          justify-content: center; }
#content-wrapper #donation-page .ways-to-donation-section .section-content .bottom-donation-content {
  margin-top: 40px; }
  #content-wrapper #donation-page .ways-to-donation-section .section-content .bottom-donation-content span {
    font-weight: 700;
    display: block;
    margin-top: 15px; }
#content-wrapper #contact-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #contact-page .contact-form-section .layout-container {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; }
    #content-wrapper #contact-page .contact-form-section .layout-container .layout-item {
      padding: 10px; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(1) {
        width: 500px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
          background-color: #e9e1cf; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(2) {
        width: calc(100% - 500px); }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(2) .layout-inner {
          background-color: #fff;
          padding: 0px !important; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner {
        padding: 75px;
        width: 100%;
        height: 100%; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .iframe-container {
          width: 100%;
          height: 100%; }
          #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .iframe-container iframe {
            width: 100%;
            height: 100%; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .subtitle {
          margin-bottom: 35px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .title {
          margin-bottom: 40px; }
          #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .title h1 {
            margin-bottom: 10px; }
          #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .title span {
            display: block;
            color: #797671; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .location {
          margin-bottom: 60px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .contacts ul li a {
          color: #1e1e1e; }
  #content-wrapper #contact-page .complaint-form-section .complaint-form-container {
    background-color: #fff;
    padding: 60px 40px; }
    #content-wrapper #contact-page .complaint-form-section .complaint-form-container .subtitle {
      margin-bottom: 40px;
      text-align: center; }
  #content-wrapper #contact-page .apply-tender-section .custom-container {
    padding-top: 80px;
    padding-bottom: 80px; }
    #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container {
      padding: 120px;
      background-image: url("../img/background/tender.jpg");
      background-size: cover;
      display: flex; }
      #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item {
        width: 50%; }
        #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item:nth-of-type(1) .layout-inner {
          padding-right: 120px;
          border-right: 1px solid #797671; }
        #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
          padding-left: 120px; }
        #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item .layout-inner .text-container h4 {
          color: #fff;
          margin-bottom: 20px; }
        #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item .layout-inner .text-container span {
          color: #fff;
          display: block;
          margin-bottom: 40px; }
        #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item .layout-inner .text-container .action a {
          padding: 0px;
          color: #fff;
          background-color: transparent; }
          #content-wrapper #contact-page .apply-tender-section .custom-container .layout-container .layout-item .layout-inner .text-container .action a img {
            filter: brightness(0) invert(1); }
#content-wrapper #news-article-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #news-article-page .featured-news-section .category-list-container {
    margin: 80px 0px;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    background-color: #e9e1cf; }
    #content-wrapper #news-article-page .featured-news-section .category-list-container span {
      display: block;
      font-weight: 700;
      margin-right: 25px; }
    #content-wrapper #news-article-page .featured-news-section .category-list-container ul li {
      display: inline-block; }
      #content-wrapper #news-article-page .featured-news-section .category-list-container ul li a {
        line-height: 1;
        padding: 14px 40px;
        border: 2px solid #fff;
        border-radius: 50px;
        color: #1e1e1e; }
      #content-wrapper #news-article-page .featured-news-section .category-list-container ul li:not(:last-child) {
        margin-right: 25px; }
#content-wrapper #common-form-page .banner-section {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #common-form-page .banner-section .title-description-container .title-container {
    margin-bottom: 20px; }
  #content-wrapper #common-form-page .banner-section .title-description-container .vender-details-container ul li span {
    font-weight: 700; }
#content-wrapper #common-form-page .forms-section .custom-container {
  padding-top: 60px; }
#content-wrapper #common-form-page .common-width {
  max-width: 1020px;
  margin: auto; }
#content-wrapper #blog-details-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container {
    max-width: 1280px;
    margin: auto; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .blog-title {
      margin-bottom: 60px;
      text-align: center; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .blog-title .logo-container {
        text-align: center;
        margin-bottom: 25px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .blog-title .category {
        margin-bottom: 25px; }
        #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .blog-title .category h6 {
          font-family: "Inter", sans-serif;
          color: #fff;
          font-weight: 600;
          display: inline;
          padding: 10px 20px;
          border-radius: 20px;
          overflow: hidden;
          background-color: #797671; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .blog-title h1 {
        color: #1e1e1e;
        line-height: 1.3;
        margin-bottom: 20px; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .thumnail-image-container {
      width: 100%;
      height: 650px;
      margin-bottom: 80px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .thumnail-image-container img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
        object-fit: cover;
        object-position: center; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container {
      margin: 60px 0px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner {
        padding: 40px;
        background-color: #fff; }
        #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container {
          display: flex;
          justify-content: space-between;
          margin: -20px; }
          #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item {
            padding: 20px; }
            #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item:nth-of-type(2) {
              width: 30%; }
            #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item .block-container {
              display: flex;
              align-items: center; }
              #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item .block-container .block-item:nth-of-type(2) {
                padding-left: 16px; }
              #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item .block-container .block-item ul li:nth-of-type(1) {
                color: #797671; }
              #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .highlights-container .container-inner .items-container .highlights-item .block-container .block-item ul li:nth-of-type(2) {
                line-height: 1.2; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container b, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h1, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h2, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h3, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h4, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h5, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container h6, #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container img {
      margin-bottom: 10px;
      display: block; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container ul {
      padding-left: 40px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container ul li {
        list-style-type: disc; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container img {
      width: 100%;
      height: auto; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container p {
      margin-bottom: 25px; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .main-content-container a {
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: break-word;
      color: #db2525; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .events-gallery-container {
      margin-top: 120px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .events-gallery-container .gallery-title {
        margin-bottom: 40px; }
        #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .events-gallery-container .gallery-title span {
          font-weight: 600; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .common-padding {
      padding: 0px 120px; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .glimpses-container {
      text-align: center;
      margin-top: 40px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .glimpses-container .title {
        margin-bottom: 30px; }
    #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container {
      margin-top: 40px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container .container-inner .title {
        margin-bottom: 25px; }
      #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container .container-inner .updates-list ul {
        padding-left: 0px; }
        #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container .container-inner .updates-list ul li {
          list-style-type: none; }
          #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container .container-inner .updates-list ul li a {
            color: #1e1e1e;
            text-decoration: underline;
            transition: .6s; }
            #content-wrapper #blog-details-page .blogs-details-section .blogs-details-container .latest-updates-container .container-inner .updates-list ul li a:hover {
              color: #db2525;
              transition: .6s; }
  #content-wrapper #blog-details-page .blogs-details-section.type-ongoing-programs-page .custom-container {
    padding-top: 60px;
    padding-bottom: 60px; }
  #content-wrapper #blog-details-page .blogs-details-section.type-ongoing-programs-page .blogs-details-container .thumnail-image-container {
    height: 440px; }
#content-wrapper #nepal-localization-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #nepal-localization-page .common-width {
    max-width: 1020px;
    margin: auto; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .custom-container {
    padding-top: 65px; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .logo-title-container {
    text-align: center; }
    #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .logo-title-container .logo-container {
      width: 220px;
      margin: auto; }
      #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .logo-title-container .logo-container img {
        width: 100%; }
    #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .logo-title-container .title-container h1 {
      font-size: 84px;
      line-height: 1; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .thumnail-image-container {
    margin: 100px 0px; }
    #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .thumnail-image-container .image-container img {
      width: 100%; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .description-container .title {
    margin-bottom: 20px; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .objective-container {
    padding: 60px 0px; }
    #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .objective-container .objective-item .objective-title {
      display: flex;
      gap: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 2px solid #DED5C4; }
      #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .objective-container .objective-item .objective-title h6 {
        line-height: 1;
        background-color: #1e1e1e;
        color: #fff;
        padding: 8px 20px;
        font-family: "Inter", sans-serif;
        font-weight: 400; }
      #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .objective-container .objective-item .objective-title span {
        display: block;
        font-weight: 600; }
    #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .objective-container .objective-item:not(:last-child) {
      margin-bottom: 60px; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .middle-image-decription-container .image-container img {
    width: 100%; }
  #content-wrapper #nepal-localization-page .nepal-localization-section .block-container .inner .middle-image-decription-container .text-container {
    padding-top: 0px !important; }
  #content-wrapper #nepal-localization-page .tagline-section {
    background-color: #E9E1CE; }
    #content-wrapper #nepal-localization-page .tagline-section .custom-container {
      padding-top: 140px;
      padding-bottom: 140px; }
      #content-wrapper #nepal-localization-page .tagline-section .custom-container .tagline-container {
        text-align: center; }
  #content-wrapper #nepal-localization-page .info-logo-section .common-items-container .common-item .item-title {
    margin-bottom: 25px; }
  #content-wrapper #nepal-localization-page .info-logo-section .common-items-container .common-item .item-content ul {
    padding-left: 30px; }
    #content-wrapper #nepal-localization-page .info-logo-section .common-items-container .common-item .item-content ul li {
      list-style-type: disc; }
  #content-wrapper #nepal-localization-page .info-logo-section .common-items-container .common-item:not(:last-child) {
    margin-bottom: 60px; }
  #content-wrapper #nepal-localization-page .photos-section .title-container {
    margin-bottom: 70px; }
  #content-wrapper #nepal-localization-page .photos-section .common-photos-container .photos-list-item .image-list-container {
    display: flex;
    margin: -10px; }
    #content-wrapper #nepal-localization-page .photos-section .common-photos-container .photos-list-item .image-list-container .image-container {
      width: 33.33%;
      height: 375px;
      padding: 10px; }
      #content-wrapper #nepal-localization-page .photos-section .common-photos-container .photos-list-item .image-list-container .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        overflow: hidden; }
  #content-wrapper #nepal-localization-page .photos-section .common-photos-container .photos-list-item .image-tag-container {
    margin-top: 15px; }
  #content-wrapper #nepal-localization-page .photos-section .common-photos-container .photos-list-item:not(:last-child) {
    margin-bottom: 70px; }
#content-wrapper #disaster-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #disaster-page .disaster-info-section .custom-container {
    padding-top: 80px; }
  #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container {
    display: flex;
    flex-wrap: wrap; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item:nth-of-type(1) {
      width: calc(100% - 680px); }
      #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item:nth-of-type(1) .layout-inner {
        padding-right: 80px; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item:nth-of-type(2) {
      width: 680px; }
      #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
        padding: 55px;
        background-color: #fff;
        position: sticky;
        top: 121px; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .description-container .date-container {
      color: #797671;
      font-weight: 700;
      margin-bottom: 50px; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .description-container .text-container ul {
      padding-left: 20px; }
      #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .description-container .text-container ul li {
        list-style-type: disc; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .description-container .text-container img {
      width: 100%;
      height: auto; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .title {
      margin-bottom: 30px; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .numbers-container {
      display: flex;
      flex-wrap: wrap;
      margin: -0px -20px; }
      #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .numbers-container .item {
        width: 50%;
        padding: 0px 20px; }
        #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .numbers-container .item ul {
          height: 100%;
          display: flex;
          align-items: center;
          padding: 15px 0px;
          border-bottom: 1px solid #DED5C4; }
          #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .numbers-container .item ul li:nth-of-type(1) {
            min-width: 115px;
            padding-right: 20px; }
          #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .numbers-container .item ul li span {
            display: block;
            font-weight: 700;
            font-family: "PT Serif", serif;
            font-size: 24px; }
    #content-wrapper #disaster-page .disaster-info-section .top-highlight-container .layout-container .layout-item .layout-inner .report-link-container {
      margin-top: 30px; }
  #content-wrapper #disaster-page .sector-impacts-section .section-title {
    text-align: center;
    margin-bottom: 30px; }
  #content-wrapper #disaster-page .affected-area-section .section-title {
    margin-bottom: 40px; }
    #content-wrapper #disaster-page .affected-area-section .section-title .layout-container {
      display: flex;
      justify-content: space-between; }
      #content-wrapper #disaster-page .affected-area-section .section-title .layout-container .layout-item .layout-inner a {
        background-color: transparent;
        padding: 0px; }
      #content-wrapper #disaster-page .affected-area-section .section-title .layout-container .layout-item:nth-of-type(1) {
        width: 70%; }
  #content-wrapper #disaster-page .affected-area-section .section-content .source-container {
    color: #797671;
    margin-top: 20px; }
    #content-wrapper #disaster-page .affected-area-section .section-content .source-container a {
      color: #797671; }
      #content-wrapper #disaster-page .affected-area-section .section-content .source-container a:hover {
        color: #db2525; }
#content-wrapper #drm-page {
  background-image: url("../img/background/main-background-image.png");
  background-size: cover; }
  #content-wrapper #drm-page .data-display-section .data-wrapper .data-container:not(:last-child) {
    margin-bottom: 120px; }
  #content-wrapper #drm-page .data-display-section .data-wrapper .data-container:nth-of-type(even) .layout-container {
    flex-direction: row-reverse; }
    #content-wrapper #drm-page .data-display-section .data-wrapper .data-container:nth-of-type(even) .layout-container:nth-of-type(1) .layout-inner {
      padding-right: 0px;
      padding-left: 60px; }
  #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item:nth-of-type(1) {
      width: 40%; }
      #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item:nth-of-type(1) .layout-inner {
        padding-right: 60px; }
    #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item:nth-of-type(2) {
      width: 60%; }
    #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item .layout-inner .numbers-container {
      display: flex;
      flex-wrap: wrap;
      margin: -15px; }
      #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item .layout-inner .numbers-container .numbers-item {
        width: 33.33%;
        padding: 15px; }
        #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item .layout-inner .numbers-container .numbers-item .number-inner {
          background-color: #fff;
          text-align: center;
          height: 100%;
          padding: 30px 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column; }
        #content-wrapper #drm-page .data-display-section .data-wrapper .data-container .layout-container .layout-item .layout-inner .numbers-container .numbers-item h3 {
          color: #db2525;
          margin-bottom: 10px; }
#content-wrapper #error-page {
  z-index: 0;
  height: 100vh;
  position: relative;
  background-color: #db2525;
  display: flex;
  align-items: center;
  justify-content: center; }
  #content-wrapper #error-page .content-section .content-container {
    text-align: center; }
    #content-wrapper #error-page .content-section .content-container .title h1 {
      z-index: 0;
      font-size: 300px;
      font-weight: 900;
      letter-spacing: -18px;
      line-height: 1em;
      display: flex;
      justify-content: center;
      color: #efc88d;
      background: -webkit-linear-gradient(-41deg, #efc88d, #c59245);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    #content-wrapper #error-page .content-section .content-container .content h1 {
      font-weight: 900;
      color: #fff;
      margin-bottom: 15px; }
    #content-wrapper #error-page .content-section .content-container .content p {
      color: #ffffffd9; }

/*--------------------------------- Content Wrapper Ends ----------------------------------*/
/*--------------------------------- Footer Wrapper Starts ---------------------------------*/
#footer-wrapper {
  background-color: #e9e1cf; }
  #footer-wrapper .custom-container {
    padding-top: 80px;
    padding-bottom: 80px; }
  #footer-wrapper .top-footer .footer-container {
    display: flex;
    justify-content: space-between; }
    #footer-wrapper .top-footer .footer-container .footer-item .title {
      margin-bottom: 30px; }
    #footer-wrapper .top-footer .footer-container .footer-item .content ul li a {
      display: block;
      position: relative;
      color: #1e1e1e;
      padding-left: 30px;
      transition: .6s; }
      #footer-wrapper .top-footer .footer-container .footer-item .content ul li a img {
        position: absolute;
        left: 0;
        top: 6px; }
      #footer-wrapper .top-footer .footer-container .footer-item .content ul li a:hover {
        color: #db2525;
        transition: .6s; }
    #footer-wrapper .top-footer .footer-container .footer-item .content ul li:not(:last-child) {
      margin-bottom: 15px; }
    #footer-wrapper .top-footer .footer-container .footer-item .content.menu ul {
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
      -webkit-column-gap: 20px;
      -moz-column-gap: 20px;
      column-gap: 70px;
      text-align: left;
      padding-left: 0px; }
      #footer-wrapper .top-footer .footer-container .footer-item .content.menu ul li a {
        font-weight: 700;
        padding-left: 0px; }
      #footer-wrapper .top-footer .footer-container .footer-item .content.menu ul li:not(:last-child) {
        margin-bottom: 25px; }
    #footer-wrapper .top-footer .footer-container .footer-item .content .common-form {
      margin-bottom: 20px; }
    #footer-wrapper .top-footer .footer-container .footer-item .content span {
      color: #797671;
      line-height: 1.5;
      display: block; }
    #footer-wrapper .top-footer .footer-container .footer-item .subtitle span {
      font-weight: 600; }
    #footer-wrapper .top-footer .footer-container .footer-item .social-container {
      margin-top: 10px;
      margin-bottom: 40px; }
      #footer-wrapper .top-footer .footer-container .footer-item .social-container ul li {
        display: inline-block; }
        #footer-wrapper .top-footer .footer-container .footer-item .social-container ul li a {
          display: block;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          overflow: hidden;
          background-color: #fff;
          display: flex;
          align-items: center;
          justify-content: center; }
          #footer-wrapper .top-footer .footer-container .footer-item .social-container ul li a img {
            width: 100%; }
        #footer-wrapper .top-footer .footer-container .footer-item .social-container ul li:not(:last-child) {
          margin-right: 20px; }
    #footer-wrapper .top-footer .footer-container .footer-item.useful-links {
      max-width: 500px; }
  #footer-wrapper .bottom-footer {
    border-top: 1px solid #fff; }
    #footer-wrapper .bottom-footer .custom-container {
      padding-top: 60px;
      padding-bottom: 60px; }
    #footer-wrapper .bottom-footer .footer-container {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #footer-wrapper .bottom-footer .footer-container .footer-item .logo-container {
        width: 240px; }
        #footer-wrapper .bottom-footer .footer-container .footer-item .logo-container img {
          width: 100%;
          width: 100%; }
      #footer-wrapper .bottom-footer .footer-container .footer-item .subtitle {
        text-align: right; }
        #footer-wrapper .bottom-footer .footer-container .footer-item .subtitle span {
          font-weight: 600; }
          #footer-wrapper .bottom-footer .footer-container .footer-item .subtitle span a {
            color: #db2525; }
      #footer-wrapper .bottom-footer .footer-container .footer-item .social-container {
        margin-top: 10px; }
        #footer-wrapper .bottom-footer .footer-container .footer-item .social-container ul li {
          display: inline-block; }
          #footer-wrapper .bottom-footer .footer-container .footer-item .social-container ul li a {
            display: block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center; }
            #footer-wrapper .bottom-footer .footer-container .footer-item .social-container ul li a img {
              width: 100%; }
          #footer-wrapper .bottom-footer .footer-container .footer-item .social-container ul li:not(:last-child) {
            margin-right: 20px; }

/*---------------------------------- Footer Wrapper Ends ----------------------------------*/
/*----------------------------------- Components Starts -----------------------------------*/
.nsetifm-alert-success {
  margin-top: 30px !important; }

.common-logo-collection {
  display: flex;
  flex-wrap: wrap;
  margin: -20px; }
  .common-logo-collection .image-container {
    width: 16.66%;
    padding: 20px; }
    .common-logo-collection .image-container img {
      width: 100%; }
  .common-logo-collection.type-one {
    margin: -10px; }
    .common-logo-collection.type-one .image-container {
      padding: 10px;
      width: 25%; }

.common-filter-container {
  margin-bottom: 45px;
  text-align: right; }
  .common-filter-container select {
    padding: 12px 16px;
    border: 1px solid #DED5C4;
    font-size: 18px;
    width: 280px; }

.common-filter-wrapper .filter-container {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; }
  .common-filter-wrapper .filter-container .filter-item {
    width: 25%;
    padding: 10px; }
    .common-filter-wrapper .filter-container .filter-item .select-title {
      font-weight: 600;
      margin-bottom: 12px; }
    .common-filter-wrapper .filter-container .filter-item .select-container select {
      font-size: 14px;
      padding: 16px 20px;
      width: 100%;
      border: transparent; }

#clientTable {
  width: 100%; }

#rateTable {
  width: 100%; }

.remove-btn, .add-btn {
  padding: 5px 20px;
  font-size: 15px;
  border: none; }

.mobile-filter-text-container {
  margin-bottom: 30px;
  display: none; }

.publication-category-close-icon-container {
  display: none; }

.useful-links-container {
  display: flex;
  flex-wrap: wrap;
  margin: -0px -20px; }
  .useful-links-container .links-item {
    width: 50%;
    padding: 0px 20px; }
    .useful-links-container .links-item a {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #d3cab6; }
      .useful-links-container .links-item a img {
        margin-right: 12px; }
      .useful-links-container .links-item a h6 {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        transition: .6s;
        color: #1e1e1e; }
      .useful-links-container .links-item a:hover h6 {
        color: #db2525;
        transition: .6s; }

.color-primary {
  color: #00326E !important; }

.vacancy-page-form {
  display: none; }
  .vacancy-page-form.open {
    display: block; }

.vacancy-detail-page.hide {
  display: none; }

.filters-item-container {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
  padding-top: 60px;
  padding-bottom: 40px; }
  .filters-item-container .filter-item {
    width: 25%;
    padding: 20px; }
    .filters-item-container .filter-item select {
      padding: 12px 16px;
      border: 1px solid #DED5C4;
      font-size: 18px;
      width: 100%; }

.ideology-list-container .ideology-list:not(:last-child) {
  margin-bottom: 50px; }
.ideology-list-container .ideology-list .block-container {
  display: flex;
  flex-wrap: wrap; }
  .ideology-list-container .ideology-list .block-container .block-item:nth-of-type(1) {
    width: 140px; }
  .ideology-list-container .ideology-list .block-container .block-item:nth-of-type(2) {
    width: calc(100% - 140px);
    padding-left: 60px; }
  .ideology-list-container .ideology-list .block-container .block-item .icon-container img {
    width: 100%; }
  .ideology-list-container .ideology-list .block-container .block-item .text-container .title {
    margin-bottom: 5px; }
    .ideology-list-container .ideology-list .block-container .block-item .text-container .title span {
      font-weight: 600; }

.common-video-list-container {
  display: flex;
  flex-wrap: wrap;
  margin: -40px -10px; }
  .common-video-list-container .video-list {
    width: 50%;
    padding: 40px 10px; }
    .common-video-list-container .video-list .video-list-inner .video-thumnail-container {
      position: relative; }
      .common-video-list-container .video-list .video-list-inner .video-thumnail-container .image-container {
        width: 100%;
        height: 430px; }
      .common-video-list-container .video-list .video-list-inner .video-thumnail-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
      .common-video-list-container .video-list .video-list-inner .video-thumnail-container:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/icons/play-btn.png");
        background-size: 100px 100px;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #00000066; }
    .common-video-list-container .video-list .video-list-inner .video-title-category-container {
      margin-top: 15px; }
      .common-video-list-container .video-list .video-list-inner .video-title-category-container .catgeory-container span {
        line-height: 1;
        font-weight: 700;
        color: #797671; }
  .common-video-list-container.type-disaster-page .video-list .video-list-inner .video-thumnail-container:after {
    display: none; }

.common-thematic-process-container {
  max-width: 1280px;
  margin: auto; }
  .common-thematic-process-container.event-page {
    max-width: 100%; }
    .common-thematic-process-container.event-page .thematic-focus-item {
      background-image: url("../img/background/main-background-image.png");
      background-size: cover; }
      .common-thematic-process-container.event-page .thematic-focus-item:not(:last-child) {
        margin-bottom: 60px; }
      .common-thematic-process-container.event-page .thematic-focus-item .block-container {
        padding: 0px; }
        .common-thematic-process-container.event-page .thematic-focus-item .block-container .block-item .block-inner .image-container {
          width: 100%;
          height: 430px; }
  .common-thematic-process-container .thematic-focus-item {
    background-image: url("../img/background/main-background-image.png");
    background-size: cover; }
    .common-thematic-process-container .thematic-focus-item:nth-of-type(even) .block-container {
      flex-direction: row-reverse; }
    .common-thematic-process-container .thematic-focus-item .block-container {
      display: flex;
      align-items: center;
      padding: 20px; }
      .common-thematic-process-container .thematic-focus-item .block-container .block-item {
        width: 50%; }
        .common-thematic-process-container .thematic-focus-item .block-container .block-item:nth-of-type(2) {
          padding: 0px 80px; }
        .common-thematic-process-container .thematic-focus-item .block-container .block-item .block-inner .image-container {
          width: 100%;
          height: 380px; }
          .common-thematic-process-container .thematic-focus-item .block-container .block-item .block-inner .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center; }
        .common-thematic-process-container .thematic-focus-item .block-container .block-item .block-inner .text-container h4 {
          margin-bottom: 15px; }
        .common-thematic-process-container .thematic-focus-item .block-container .block-item .block-inner .action-container {
          margin-top: 15px; }
          .common-thematic-process-container .thematic-focus-item .block-container .block-item .block-inner .action-container a {
            padding: 0;
            background-color: transparent; }

.common-section-title .description {
  margin: 30px 0px; }
.common-section-title .action a {
  padding: 0px; }

.common-featured-block-container.type-with-background {
  background-image: url(../img/background/main-background-image.png);
  background-size: cover; }
  .common-featured-block-container.type-with-background .layout-container .layout-item:nth-of-type(2) {
    background-color: transparent; }
.common-featured-block-container .layout-container {
  display: flex; }
  .common-featured-block-container .layout-container .layout-item .layout-inner {
    width: 100%;
    height: 100%; }
    .common-featured-block-container .layout-container .layout-item .layout-inner .image-container {
      width: 100%;
      height: 100%; }
      .common-featured-block-container .layout-container .layout-item .layout-inner .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
  .common-featured-block-container .layout-container .layout-item:nth-of-type(1) {
    width: calc(100% - 580px); }
  .common-featured-block-container .layout-container .layout-item:nth-of-type(2) {
    width: 580px;
    background-color: #fff; }
    .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
      padding: 80px;
      padding-bottom: 190px; }
      .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .date-title-container {
        margin-bottom: 30px; }
        .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .date-title-container span {
          font-weight: 700;
          color: #797671;
          display: block;
          margin-bottom: 5px; }
        .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .date-title-container h4 a {
          transition: .6s;
          color: #00326e; }
        .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .date-title-container h4:hover a {
          color: #db2525;
          transition: .6s; }
      .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .description-container {
        margin-bottom: 30px; }
      .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .action-container ul {
        display: flex;
        gap: 20px; }
        .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .action-container ul li .co-btn {
          background-color: #e9e1cf;
          transition: .6s; }
          .common-featured-block-container .layout-container .layout-item:nth-of-type(2) .layout-inner .text-container .action-container ul li .co-btn:hover {
            color: #1e1e1e !important;
            background-color: #dbd4c2;
            transition: .6s; }
.common-featured-block-container.type-article .layout-container .layout-item:nth-of-type(1) {
  width: calc(100% - 520px); }
.common-featured-block-container.type-article .layout-container .layout-item:nth-of-type(2) {
  width: 520px; }
  .common-featured-block-container.type-article .layout-container .layout-item:nth-of-type(2) .layout-inner {
    padding: 80px !important; }

.common-select-container {
  height: 300px;
  overflow-x: auto; }
  .common-select-container ul li {
    display: block;
    /*for checkbox*/ }
    .common-select-container ul li input[type="radio"] {
      opacity: 0;
      position: absolute; }
    .common-select-container ul li input[type="radio"]:checked ~ label {
      font-weight: 700; }
      .common-select-container ul li input[type="radio"]:checked ~ label::after {
        background-color: #1e1e1e;
        border: none; }
    .common-select-container ul li input[type="radio"] + label {
      width: initial;
      height: initial;
      position: relative;
      padding-left: 35px;
      cursor: pointer; }
    .common-select-container ul li input[type="radio"] + label:after {
      z-index: 1;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      overflow: hidden;
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      cursor: pointer;
      background-repeat: no-repeat;
      background-position: 1px 2px;
      background-size: 18px;
      background-color: #e9e1cf; }
    .common-select-container ul li input[type="checkbox"] {
      opacity: 0;
      position: absolute; }
    .common-select-container ul li input[type="checkbox"]:checked ~ label::after {
      background-color: #1e1e1e;
      border: none;
      background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E "); }
    .common-select-container ul li input[type="checkbox"] + label {
      width: initial;
      height: initial;
      font-size: 15px;
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      font-weight: 500;
      color: #1e1e1e; }
    .common-select-container ul li input[type="checkbox"] + label:after {
      z-index: 1;
      width: 18px;
      height: 18px;
      content: "";
      border: 1px solid #bdb8b8;
      position: absolute;
      left: 0;
      top: 5px;
      cursor: pointer;
      background-repeat: no-repeat;
      background-position: 1px 2px;
      background-size: 18px; }
    .common-select-container ul li:not(:last-child) {
      margin-bottom: 12px; }

.common-banner-section .banner-slider .banner-item {
  z-index: 0;
  height: calc(100vh - 93px);
  overflow: hidden;
  background-color: #f4f7f6;
  position: relative;
  background-size: cover;
  background-position: center bottom; }
  .common-banner-section .banner-slider .banner-item .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: ani-banner infinite 30s cubic-bezier(0.25, 0.74, 0.22, 0.99); }
    .common-banner-section .banner-slider .banner-item .banner-img.type-mobile {
      display: none; }
  .common-banner-section .banner-slider .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  .common-banner-section .banner-slider .banner-item .text-container {
    z-index: 2;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0; }
    .common-banner-section .banner-slider .banner-item .text-container .custom-container {
      padding-top: 0px;
      padding-bottom: 0px; }
    .common-banner-section .banner-slider .banner-item .text-container .inner {
      width: 700px;
      padding: 26px 46px;
      max-width: 100%;
      background-color: #e9e1cf;
      opacity: 0;
      margin-bottom: -130px;
      transition: all .6s ease; }
      .common-banner-section .banner-slider .banner-item .text-container .inner .content {
        margin-top: 25px; }
        .common-banner-section .banner-slider .banner-item .text-container .inner .content a {
          padding: 5px 10px;
          font-size: 12px; }
  .common-banner-section .banner-slider .banner-item .scroll-down {
    z-index: 2;
    width: 40px;
    margin: auto;
    animation: ani-bounce 2s infinite;
    cursor: pointer;
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0; }
    .common-banner-section .banner-slider .banner-item .scroll-down img {
      width: 100%;
      max-width: 100%;
      height: auto; }
.common-banner-section.type-program-page .banner-slider .banner-item {
  height: 500px; }
  .common-banner-section.type-program-page .banner-slider .banner-item .text-container {
    width: initial;
    top: initial;
    transform: initial;
    bottom: 0;
    left: 190px; }
    .common-banner-section.type-program-page .banner-slider .banner-item .text-container .inner {
      width: inherit;
      padding: 35px; }
      .common-banner-section.type-program-page .banner-slider .banner-item .text-container .inner .title h1 {
        line-height: 1; }
.common-banner-section.align-center .banner-slider .banner-item .text-container .inner {
  margin: auto;
  text-align: center; }
.common-banner-section.height-small .banner-slider .banner-item {
  height: 70vh; }
.common-banner-section.visible .banner-slider .banner-item .text-container .inner {
  margin-bottom: 0;
  opacity: 1;
  transition: all .6s ease; }

.common-content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .common-content-container .content-item:nth-of-type(1) {
    width: calc(100% - 600px);
    padding-right: 100px; }
  .common-content-container .content-item:nth-of-type(2) {
    width: 600px; }
    .common-content-container .content-item:nth-of-type(2) .image-container {
      box-shadow: 0px 70px 100px -55px #4a2311; }
      .common-content-container .content-item:nth-of-type(2) .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }

.common-box-container {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -10px; }
  .common-box-container .box-item {
    width: 33.33%;
    padding: 30px 10px; }
    .common-box-container .box-item .box-inner {
      background-color: #fff; }
      .common-box-container .box-item .box-inner .image-container {
        width: 100%;
        height: 300px; }
        .common-box-container .box-item .box-inner .image-container a {
          display: block;
          width: 100%;
          height: 100%; }
          .common-box-container .box-item .box-inner .image-container a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center; }
      .common-box-container .box-item .box-inner .text-container {
        padding: 35px 40px; }
        .common-box-container .box-item .box-inner .text-container span {
          color: #797671;
          font-weight: 700;
          display: block;
          margin-bottom: 5px; }
        .common-box-container .box-item .box-inner .text-container a h4 {
          color: #00326e;
          transition: .2s; }
        .common-box-container .box-item .box-inner .text-container a:hover h4 {
          color: #db2525;
          transition: .2s; }
  .common-box-container.programs-page {
    margin: -35px -20px; }
    .common-box-container.programs-page .box-item {
      padding: 35px 20px; }
      .common-box-container.programs-page .box-item .box-inner .text-container {
        padding-left: 0px; }
        .common-box-container.programs-page .box-item .box-inner .text-container .link-container {
          margin-top: 25px; }
          .common-box-container.programs-page .box-item .box-inner .text-container .link-container a {
            color: #1e1e1e;
            font-weight: 700;
            display: flex;
            align-items: center; }
            .common-box-container.programs-page .box-item .box-inner .text-container .link-container a:hover {
              color: #db2525; }
              .common-box-container.programs-page .box-item .box-inner .text-container .link-container a:hover .red-arrow {
                display: block; }
              .common-box-container.programs-page .box-item .box-inner .text-container .link-container a:hover .default-arrow {
                display: none; }
            .common-box-container.programs-page .box-item .box-inner .text-container .link-container a .red-arrow {
              display: none; }
            .common-box-container.programs-page .box-item .box-inner .text-container .link-container a img {
              margin-left: 30px; }
  .common-box-container.type-glimse .box-item {
    width: 50%; }
    .common-box-container.type-glimse .box-item .box-inner {
      background-color: transparent; }
      .common-box-container.type-glimse .box-item .box-inner .text-container {
        padding: 0; }
  .common-box-container.type-glimse.type-disaster-update .box-item {
    width: 33.33%; }
  .common-box-container.news .box-item .box-inner {
    height: 100%; }

.common-gallery-container {
  display: flex;
  flex-wrap: wrap;
  margin: -5px; }
  .common-gallery-container .gallery-item {
    width: 33.33%;
    padding: 5px; }
    .common-gallery-container .gallery-item a {
      display: block;
      width: 100%;
      height: 225px; }
      .common-gallery-container .gallery-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
  .common-gallery-container.gallery-page .gallery-item a {
    height: 225px; }

.common-page-top-section {
  position: relative; }
  .common-page-top-section:after {
    content: '';
    width: 100%;
    height: 440px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e1cf;
    z-index: -1; }
  .common-page-top-section .custom-container {
    padding-top: 80px; }
  .common-page-top-section .layout-container {
    display: flex; }
    .common-page-top-section .layout-container .layout-item:nth-of-type(1) {
      width: 520px; }
      .common-page-top-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
        padding-top: 70px;
        padding-right: 90px; }
    .common-page-top-section .layout-container .layout-item:nth-of-type(2) {
      width: calc(100% - 520px); }
    .common-page-top-section .layout-container .layout-item .layout-inner .text-container span {
      font-weight: 700;
      line-height: 1;
      margin-bottom: 20px; }
    .common-page-top-section .layout-container .layout-item .layout-inner .image-container {
      width: 100%;
      height: 440px; }
      .common-page-top-section .layout-container .layout-item .layout-inner .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }

.common-layout-title {
  margin-bottom: 60px; }
  .common-layout-title h4 {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px; }
    .common-layout-title h4:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #db2525; }

.common-recognition-list-wrapper .recognition-list-container .layout-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item {
    width: 50%; }
    .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item:nth-of-type(2) .layout-inner {
      padding-left: 120px; }
    .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item .layout-inner .image-container img {
      width: 100%; }
    .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item .layout-inner .text-container h4 {
      margin-bottom: 20px; }
    .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item .layout-inner .text-container a {
      color: #db2525; }
      .common-recognition-list-wrapper .recognition-list-container .layout-container .layout-item .layout-inner .text-container a:hover {
        text-decoration: underline; }
.common-recognition-list-wrapper .recognition-list-container:nth-of-type(even) .layout-container {
  flex-direction: row-reverse; }
  .common-recognition-list-wrapper .recognition-list-container:nth-of-type(even) .layout-container .layout-item:nth-of-type(2) .layout-inner {
    padding-left: 0px;
    padding-right: 120px; }
  .common-recognition-list-wrapper .recognition-list-container:nth-of-type(even) .layout-container .layout-item .layout-inner .image-container img {
    width: 100%; }
.common-recognition-list-wrapper .recognition-list-container:not(:last-child) {
  margin-bottom: 80px; }

.common-page-banner-section .custom-container {
  padding-top: 80px;
  padding-bottom: 80px; }
.common-page-banner-section .image-container {
  width: 100%;
  height: 400px; }
  .common-page-banner-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.common-team-container {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -15px; }
  .common-team-container .team-item {
    width: 33.33%;
    padding: 30px; }
    .common-team-container .team-item .image-container {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background-color: #f4f7f6;
      padding-bottom: 120%;
      cursor: pointer; }
      .common-team-container .team-item .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        right: 0;
        filter: grayscale(0);
        transition: all .4s ease; }
      .common-team-container .team-item .image-container:hover img {
        filter: grayscale(1);
        transition: all .4s ease; }
    .common-team-container .team-item .text-container .name {
      margin-top: 28px;
      margin-bottom: 12px; }
      .common-team-container .team-item .text-container .name h4 {
        color: #1e1e1e;
        cursor: pointer;
        transition: all .4s ease; }
        .common-team-container .team-item .text-container .name h4:hover {
          color: #db2525;
          transition: all .4s ease; }
    .common-team-container .team-item .text-container .designation p {
      font-size: 18px;
      line-height: 1em; }

.common-nset-division-container {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; }
  .common-nset-division-container .nset-division-list {
    position: relative;
    width: 50%;
    padding: 10px; }
    .common-nset-division-container .nset-division-list .image-container {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      z-index: 0;
      width: 70%; }
      .common-nset-division-container .nset-division-list .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .common-nset-division-container .nset-division-list .text-container {
      width: 100%;
      position: relative;
      z-index: 1;
      margin-left: auto;
      height: 100%; }
      .common-nset-division-container .nset-division-list .text-container .number-container {
        padding: 40px 80px;
        text-align: right; }
        .common-nset-division-container .nset-division-list .text-container .number-container span {
          font-size: 120px;
          color: #DED5C4;
          font-style: italic;
          display: block;
          line-height: 1; }
      .common-nset-division-container .nset-division-list .text-container .description-container {
        height: 100%; }
        .common-nset-division-container .nset-division-list .text-container .description-container .description-inner {
          padding: 70px 80px;
          background-color: #F6EEE3;
          height: 100%; }
          .common-nset-division-container .nset-division-list .text-container .description-container .description-inner .title {
            margin-bottom: 20px; }
    .common-nset-division-container .nset-division-list:not(:last-child) {
      margin-bottom: 40px; }

.common-faq-container .card {
  width: 100%;
  border: 0;
  padding: 40px;
  background-color: #fff; }
  .common-faq-container .card:not(:last-of-type) {
    margin-bottom: 30px; }
  .common-faq-container .card .card-inner .card-header {
    border: 0;
    background-color: transparent;
    padding: 0; }
    .common-faq-container .card .card-inner .card-header button {
      width: 100%;
      line-height: 1em;
      background-color: #fff;
      position: relative;
      display: flex;
      outline: none;
      text-align: left;
      border: 0;
      padding: 0; }
      .common-faq-container .card .card-inner .card-header button:active, .common-faq-container .card .card-inner .card-header button:focus {
        outline: none; }
      .common-faq-container .card .card-inner .card-header button span {
        display: block; }
        .common-faq-container .card .card-inner .card-header button span:nth-of-type(1) {
          width: 30px;
          font-weight: bold; }
        .common-faq-container .card .card-inner .card-header button span:nth-of-type(2) {
          width: calc(100% - 30px);
          margin-top: -2px; }
  .common-faq-container .card .card-inner .card-body {
    padding: 0;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #CECECE; }

.common-instagram-section .instagram-container {
  display: flex;
  flex-wrap: wrap; }
  .common-instagram-section .instagram-container .instagram-item {
    width: 20%; }
    .common-instagram-section .instagram-container .instagram-item a {
      position: relative;
      display: block;
      padding-bottom: 110%; }
      .common-instagram-section .instagram-container .instagram-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        right: 0; }

.common-background {
  background-color: #E9E1CE; }

.common-table {
  width: 100%;
  border-collapse: collapse; }
  .common-table thead {
    border-bottom: 2px solid #000; }
    .common-table thead th {
      text-align: left;
      padding: 25px 8px;
      padding-left: 0px;
      font-size: 14px;
      line-height: 1; }
      .common-table thead th:nth-of-type(1) {
        width: 450px; }
  .common-table tbody tr {
    border-bottom: 2px solid #DED5C4; }
    .common-table tbody tr .semi-bold {
      font-weight: 600; }
    .common-table tbody tr a {
      color: #1e1e1e; }
    .common-table tbody tr td {
      padding: 43px 8px;
      padding-left: 0px; }
      .common-table tbody tr td .apply-btn {
        color: #1e1e1e;
        font-size: 14px; }
        .common-table tbody tr td .apply-btn:hover {
          text-decoration: underline; }
      .common-table tbody tr td:last-child {
        text-align: right; }
  .common-table.type-disaster-page thead th {
    padding: 25px 0px;
    padding-right: 10px; }
    .common-table.type-disaster-page thead th:nth-of-type(1) {
      width: inherit; }
  .common-table.type-disaster-page tbody tr td {
    padding: 20px 0px;
    padding-right: 10px; }
    .common-table.type-disaster-page tbody tr td:last-child {
      text-align: inherit; }

.pagination {
  margin-top: 50px;
  width: 100%; }
  .pagination ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -5px; }
    .pagination ul .active span {
      background-color: #1e1e1e;
      color: #fff; }
    .pagination ul li {
      padding: 10px 5px; }
      .pagination ul li span {
        line-height: 1;
        padding: 17px 24px;
        color: #1e1e1e;
        transition: all .4s ease;
        background-color: #DED5C4; }
      .pagination ul li a {
        line-height: inherit;
        display: block;
        padding: 15px 24px;
        color: #1e1e1e;
        transition: all .4s ease;
        background-color: #DED5C4; }
        .pagination ul li a:hover {
          background-color: #DED5C4;
          transition: all .4s ease; }
    .pagination ul .active a {
      background-color: #1e1e1e;
      color: #fff; }
  .pagination.center-align {
    justify-content: center; }

.common-form-wrapper .form-container .form-title {
  margin-bottom: 25px; }
  .common-form-wrapper .form-container .form-title.type-flex {
    display: flex;
    align-items: baseline; }
    .common-form-wrapper .form-container .form-title.type-flex span {
      font-size: 14px;
      font-weight: 500; }
.common-form-wrapper .form-container:not(:last-child) {
  margin-bottom: 40px; }

.download-btn {
  display: flex;
  align-items: center;
  padding: 12px 34px !important;
  line-height: 1;
  background-color: #1e1e1e;
  color: #fff;
  width: fit-content;
  height: 40px;
  transition: .6s; }
  .download-btn img {
    margin-right: 14px; }
  .download-btn:hover {
    color: #fff;
    background-color: #db2525;
    transition: .6s; }
  .download-btn.full-width {
    width: 100%;
    justify-content: center; }

.common-title {
  margin-bottom: 30px; }
  .common-title h5 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px; }

.common-tagline {
  margin-bottom: 15px; }
  .common-tagline i {
    display: block;
    line-height: 1em;
    color: #db2525;
    margin-bottom: 10px; }
  .common-tagline h6 {
    font-family: "Inter", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #db2525; }

.common-action {
  margin-top: 40px; }
  .common-action.align-center {
    text-align: center; }
    .common-action.align-center .action-inner {
      justify-content: center; }
  .common-action .action-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .common-action .action-inner .action-item {
      display: flex;
      align-items: center; }
      .common-action .action-inner .action-item:not(:last-of-type) {
        margin-right: 20px; }

.common-logo-container a {
  width: 210px;
  display: inline-block; }
  .common-logo-container a img {
    width: 100%;
    max-width: 100%;
    height: auto; }

.common-icon {
  margin-bottom: 40px; }
  .common-icon img {
    width: 85px;
    height: auto; }

.common-toggle {
  display: none; }

.common-copyright-container p a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  line-height: 1em;
  color: #BEA24E;
  /*color: #F9C741;
  background: -webkit-linear-gradient(-41deg, #F9C741 0%, #FFE294 15%, #FFE294 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/ }

.common-form {
  position: relative; }
  .common-form .fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; }
    .common-form .fields .form-group {
      position: relative;
      width: 100%;
      margin-bottom: 0;
      padding: 0 10px;
      /* shared option layout */
      /* ================= RADIO ================= */
      /* ================= CHECKBOX ================= */
      /* for upload btn */ }
      .common-form .fields .form-group:not(:last-of-type) {
        margin-bottom: 20px; }
      .common-form .fields .form-group.half-width {
        width: 50%; }
      .common-form .fields .form-group.small-width {
        width: 20%; }
      .common-form .fields .form-group.type-two {
        width: 33.33%; }
      .common-form .fields .form-group.has-error input, .common-form .fields .form-group.has-error select, .common-form .fields .form-group.has-error textarea {
        border: 1px solid #e74c3c; }
      .common-form .fields .form-group.has-error label {
        color: #e74c3c; }
      .common-form .fields .form-group.has-error .floating-label {
        color: #e74c3c; }
      .common-form .fields .form-group .info-container {
        margin-top: 20px;
        padding: 40px;
        background-color: #F6EEE3; }
        .common-form .fields .form-group .info-container .info-title {
          display: flex;
          margin-bottom: 20px; }
          .common-form .fields .form-group .info-container .info-title .item:nth-of-type(1) {
            margin-right: 10px; }
        .common-form .fields .form-group .info-container .info-description ul {
          padding-left: 30px; }
          .common-form .fields .form-group .info-container .info-description ul li {
            list-style-type: disc; }
            .common-form .fields .form-group .info-container .info-description ul li span {
              font-weight: 700; }
      .common-form .fields .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #1e1e1e;
        margin-bottom: 8px; }
        .common-form .fields .form-group label span {
          color: #e74c3c; }
      .common-form .fields .form-group input, .common-form .fields .form-group select, .common-form .fields .form-group textarea {
        width: 100%;
        padding: 14px 15px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        line-height: 1em;
        border-radius: 0;
        background-color: transparent;
        border: 1px solid #DED5C4;
        color: #797671;
        transition: all .3s ease;
        height: 50px; }
        .common-form .fields .form-group input::placeholder, .common-form .fields .form-group select::placeholder, .common-form .fields .form-group textarea::placeholder {
          transition: all .3s ease; }
        .common-form .fields .form-group input:focus, .common-form .fields .form-group select:focus, .common-form .fields .form-group textarea:focus {
          outline: none;
          color: #1e1e1e;
          transition: all .3s ease; }
          .common-form .fields .form-group input:focus::placeholder, .common-form .fields .form-group select:focus::placeholder, .common-form .fields .form-group textarea:focus::placeholder {
            color: #eae6e2;
            transition: all .3s ease; }
      .common-form .fields .form-group textarea {
        height: 100px;
        vertical-align: top;
        border: 1px solid #DED5C4; }
      .common-form .fields .form-group .option-group {
        display: flex;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
        margin-top: 5px; }
      .common-form .fields .form-group .option-item {
        display: flex; }
      .common-form .fields .form-group .option-label {
        display: inline-flex;
        align-items: center;
        cursor: pointer; }
        .common-form .fields .form-group .option-label span {
          color: #1e1e1e;
          font-weight: 400;
          font-size: 14px; }
      .common-form .fields .form-group input[type="radio"],
      .common-form .fields .form-group input[type="checkbox"] {
        display: none; }
      .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group {
        gap: 40px; }
        .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group .option-item {
          width: 100%;
          display: block; }
          .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group .option-item label span {
            font-size: 20px;
            font-weight: 600; }
          .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group .option-item ul {
            padding-left: 40px;
            margin-top: -10px; }
            .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group .option-item ul li {
              font-size: 16px;
              display: inline-block;
              list-style-type: disc; }
              .common-form .fields .form-group .custom-radio-group.type-fullwidth .option-group .option-item ul li:not(:last-child) {
                margin-right: 20px; }
      .common-form .fields .form-group .custom-radio-group input[type="radio"] + .option-text {
        position: relative;
        padding-left: 45px; }
        .common-form .fields .form-group .custom-radio-group input[type="radio"] + .option-text::before {
          content: "";
          width: 30px;
          height: 30px;
          border: 2px solid #e9e1cf;
          border-radius: 50%;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%); }
      .common-form .fields .form-group .custom-radio-group input[type="radio"]:checked + .option-text::after {
        content: "";
        width: 16px;
        height: 16px;
        background: #e9e1cf;
        border-radius: 50%;
        position: absolute;
        left: 7px;
        top: 50%;
        transform: translateY(-50%); }
      .common-form .fields .form-group .custom-checkbox-group input[type="checkbox"] + .option-text {
        position: relative;
        padding-left: 45px; }
        .common-form .fields .form-group .custom-checkbox-group input[type="checkbox"] + .option-text::before {
          content: "";
          width: 30px;
          height: 30px;
          border: 2px solid #e9e1cf;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%); }
      .common-form .fields .form-group .custom-checkbox-group input[type="checkbox"]:checked + .option-text::after {
        content: "";
        width: 15px;
        height: 15px;
        background: #e9e1cf;
        position: absolute;
        left: 7px;
        top: 50%;
        transform: translateY(-50%); }
      .common-form .fields .form-group .file-upload {
        width: 100%; }
        .common-form .fields .form-group .file-upload-label {
          position: relative;
          display: flex;
          align-items: center;
          padding: 14px 50px 14px 16px;
          border: 1px solid #e6d5c3;
          border-radius: 2px;
          font-size: 16px;
          color: #9b9b9b;
          cursor: pointer; }
          .common-form .fields .form-group .file-upload-label::after {
            content: "";
            position: absolute;
            right: 14px;
            top: 50%;
            width: 20px;
            height: 20px;
            transform: translateY(-50%);
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000'%3E%3Cpath stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 16v2a2 2 0 002 2h12a2 2 0 002-2v-2M7 10l5-5 5 5M12 5v11'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain; }
          .common-form .fields .form-group .file-upload-label:hover {
            border-color: #c9b39a; }
          .common-form .fields .form-group .file-upload-label span {
            color: #797671;
            font-size: 14px; }
        .common-form .fields .form-group .file-upload-text {
          pointer-events: none; }
        .common-form .fields .form-group .file-upload input[type="file"] {
          position: absolute;
          inset: 0;
          opacity: 0;
          cursor: pointer; }
      .common-form .fields .form-group .floating-label {
        font-size: 15px;
        display: inline-block;
        padding: 2px 6px;
        line-height: 1em;
        pointer-events: none;
        color: black;
        position: absolute;
        left: 11px;
        top: 16px;
        transition: 0.2s ease all;
        background: black; }
      .common-form .fields .form-group input:focus ~ .floating-label,
      .common-form .fields .form-group select:focus ~ .floating-label,
      .common-form .fields .form-group textarea:focus ~ .floating-label,
      .common-form .fields .form-group input:not(:focus):valid ~ .floating-label,
      .common-form .fields .form-group select:not(:focus):valid ~ .floating-label,
      .common-form .fields .form-group textarea:not(:focus):valid ~ .floating-label {
        top: -7px;
        transform: translateY(0);
        font-size: 13px; }
  .common-form.type-footer .fields .form-group input, .common-form.type-footer .fields .form-group select, .common-form.type-footer .fields .form-group textarea {
    background-color: #fff;
    border: none; }
  .common-form.type-footer .form-action {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%; }
    .common-form.type-footer .form-action input {
      width: 100%;
      height: 100%;
      border: 0;
      background-color: #1e1e1e;
      background-image: url("../img/icons/send-icon.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 19px;
      cursor: pointer;
      font-size: 0;
      color: transparent;
      transition: all 0.3s ease; }
      .common-form.type-footer .form-action input:hover {
        opacity: 0.9; }
  .common-form .form-action {
    margin-top: 45px; }
    .common-form .form-action .wpcf7-spinner {
      position: absolute;
      top: 35%;
      transform: translateX(-50%);
      right: -50px;
      margin: 0; }
    .common-form .form-action input, .common-form .form-action button {
      background-color: #1e1e1e;
      color: #fff;
      width: 100%;
      height: 50px;
      width: 100%;
      border: none;
      font-size: 16px;
      text-align: center;
      justify-content: center; }
  .common-form .wpcf7-not-valid-tip {
    font-size: 15px;
    line-height: 1em;
    margin-top: 20px; }
  .common-form .wpcf7 form.invalid .wpcf7-response-output,
  .common-form .wpcf7 form.unaccepted .wpcf7-response-output,
  .common-form .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fef8ed;
    color: #d08404;
    border: 0;
    border-left: 4px solid #f59e0b;
    font-size: 16px;
    padding: 20px 18px 19px;
    line-height: 1em;
    border-radius: 8px; }

.common-remove-tab-style {
  border-bottom: 0;
  margin-bottom: 20px; }
  .common-remove-tab-style li:not(:last-of-type) {
    margin-right: 30px; }
  .common-remove-tab-style li .nav-link {
    position: relative;
    font-weight: 600;
    color: #797671;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    border: 0; }
    .common-remove-tab-style li .nav-link:after {
      content: '';
      height: 2px;
      width: 0px;
      background-color: #db2525;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: all .4s ease; }
    .common-remove-tab-style li .nav-link:hover, .common-remove-tab-style li .nav-link.active {
      border: 0;
      color: #db2525;
      background-color: transparent; }
      .common-remove-tab-style li .nav-link:hover:after, .common-remove-tab-style li .nav-link.active:after {
        width: 100%;
        transition: all .4s ease; }

/*------------------------------------ Components Ends ------------------------------------*/
/*---------------------------------- Slick Slider Starts ----------------------------------*/
.common-banner-section .banner-slider .banner-item:not(:first-of-type) {
  display: none; }

.common-banner-section .banner-slider.slick-initialized .banner-item {
  display: block; }

.slick-slider .slick-prev, .slick-slider .slick-next {
  z-index: 1;
  height: 16px;
  width: 11px; }
  .slick-slider .slick-prev:after, .slick-slider .slick-next:after {
    content: '';
    height: inherit;
    width: inherit;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .slick-slider .slick-prev:before, .slick-slider .slick-next:before {
    display: none; }
.slick-slider .slick-prev {
  left: -60px; }
  .slick-slider .slick-prev:after {
    background-image: url("../img/icons/leftarrow.png"); }
.slick-slider .slick-next {
  right: -60px; }
  .slick-slider .slick-next:after {
    background-image: url("../img/icons/rightarrow.png"); }
.slick-slider.slick-dotted {
  margin-bottom: 0; }
  .slick-slider.slick-dotted .slick-dots {
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: inherit; }
    .slick-slider.slick-dotted .slick-dots li {
      height: 16px;
      width: 16px;
      border-radius: 100%;
      margin: 0;
      background-color: #e9e1cf; }
      .slick-slider.slick-dotted .slick-dots li.slick-active {
        background-color: #fff; }
      .slick-slider.slick-dotted .slick-dots li:not(:last-of-type) {
        margin-right: 18px; }
      .slick-slider.slick-dotted .slick-dots li button {
        height: 13px;
        width: 13px;
        padding: 0;
        opacity: 0; }

/*----------------------------------- Slick Slider Ends -----------------------------------*/
/*-------------------------------------- Modal Starts -------------------------------------*/
.modal .modal-dialog {
  max-width: 700px;
  margin: 157px auto;
  position: relative; }
  .modal .modal-dialog .modal-header {
    padding: 0;
    border: 0; }
    .modal .modal-dialog .modal-header button {
      z-index: 1;
      height: 35px;
      width: 35px;
      margin: 0;
      padding: 0;
      color: #fff;
      opacity: 1;
      outline: none;
      position: absolute;
      top: -45px;
      right: -7px;
      background: #fff;
      border-radius: 50%; }
      .modal .modal-dialog .modal-header button i {
        color: #fff;
        font-size: 13px; }
      .modal .modal-dialog .modal-header button img {
        width: 18px; }
  .modal .modal-dialog .modal-content {
    background: #fff;
    border: 0;
    border-radius: 0px; }
    .modal .modal-dialog .modal-content .modal-body {
      padding: 30px 26px; }
      .modal .modal-dialog .modal-content .modal-body .notice-image-container img {
        width: 100%; }
      .modal .modal-dialog .modal-content .modal-body .text-container .title {
        margin-bottom: 30px; }
      .modal .modal-dialog .modal-content .modal-body .text-container .content p, .modal .modal-dialog .modal-content .modal-body .text-container .content ul li {
        font-size: 18px; }
      .modal .modal-dialog .modal-content .modal-body .text-container .content ul {
        padding-left: 20px; }
        .modal .modal-dialog .modal-content .modal-body .text-container .content ul li {
          list-style: disc; }
.modal.type-video .modal-dialog {
  max-width: 1000px; }
  .modal.type-video .modal-dialog .modal-content {
    background-color: black; }
    .modal.type-video .modal-dialog .modal-content .modal-body {
      padding: 0; }
      .modal.type-video .modal-dialog .modal-content .modal-body .video-container iframe {
        width: 100%;
        height: 560px;
        vertical-align: top;
        border: 0; }
.modal.publications .modal-dialog, .modal.teammodal .modal-dialog {
  max-width: 1020px; }
  .modal.publications .modal-dialog .modal-content, .modal.teammodal .modal-dialog .modal-content {
    background-color: #e9e1cf;
    padding: 60px; }
    .modal.publications .modal-dialog .modal-content .close, .modal.teammodal .modal-dialog .modal-content .close {
      position: absolute;
      top: 20px;
      right: 20px; }
    .modal.publications .modal-dialog .modal-content .modal-background-image, .modal.teammodal .modal-dialog .modal-content .modal-background-image {
      position: absolute;
      right: 0;
      bottom: 0;
      pointer-events: none;
      z-index: 1; }
    .modal.publications .modal-dialog .modal-content .layout-container, .modal.teammodal .modal-dialog .modal-content .layout-container {
      display: flex;
      position: relative;
      z-index: 2; }
      .modal.publications .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(1), .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(1) {
        width: 370px; }
      .modal.publications .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(2), .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(2) {
        width: calc(100% - 370px); }
        .modal.publications .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(2) .layout-inner, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item:nth-of-type(2) .layout-inner {
          padding: 55px 60px;
          padding-right: 0px !important; }
      .modal.publications .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li {
        display: flex; }
        .modal.publications .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li span, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li span {
          font-weight: 700;
          display: block;
          min-width: 90px; }
        .modal.publications .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li:not(:last-child), .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .details ul li:not(:last-child) {
          margin-bottom: 5px; }
      .modal.publications .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .common-bottom-margin, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .publication-details-container .common-bottom-margin {
        margin-bottom: 35px; }
      .modal.publications .modal-dialog .modal-content .layout-container .layout-item .image-container, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .image-container {
        width: 100%;
        height: 530px; }
        .modal.publications .modal-dialog .modal-content .layout-container .layout-item .image-container img, .modal.teammodal .modal-dialog .modal-content .layout-container .layout-item .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }

/*--------------------------------------- Modal Ends --------------------------------------*/
/*------------------------------------ Animation Starts -----------------------------------*/
@keyframes ani-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 0.9;
    transform: translateY(0); } }
@keyframes ani-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }
@keyframes ani-banner {
  0% {
    transform: scale(1.2);
    100% {
      transform: scale(1); } } }
.animation-area .ani-fade-top {
  opacity: 0;
  padding-top: 30px;
  transition: all .5s ease; }
  .animation-area .ani-fade-top.normal {
    opacity: 1;
    padding-top: 0;
    transition: all .5s ease; }
  .animation-area .ani-fade-top.delay-1.normal {
    transition: all .5s ease;
    transition-delay: .2s; }
  .animation-area .ani-fade-top.delay-2.normal {
    transition: all .5s ease;
    transition-delay: .4s; }
  .animation-area .ani-fade-top.delay-3.normal {
    transition: all .5s ease;
    transition-delay: .6s; }
  .animation-area .ani-fade-top.delay-4.normal {
    transition: all .5s ease;
    transition-delay: 1s; }

/*------------------------------------- Animation Ends ------------------------------------*/

/*# sourceMappingURL=thestyles.css.map */
