
@layer base {
  
  body, :host {
    /* Color */
      --grey-50: #FAFAFA;
--grey-100: #F5F5F5;
--grey-200: #E5E5E5;
--grey-300: #D4D4D4;
--grey-400: #A3A3A3;
--grey-500: #737373;
--grey-600: #525252;
--grey-700: #404040;
--grey-800: #262626;
--grey-900: #171717;
--red-50: #FEF2F2;
--red-100: #FEE2E2;
--red-200: #FECACA;
--red-300: #FCA5A5;
--red-400: #F87171;
--red-500: #EF4444;
--red-600: #DC2626;
--red-700: #B91C1C;
--red-800: #991B1B;
--red-900: #7F1D1D;
--blue-50: #EFF6FF;
--blue-100: #DBEAFE;
--blue-200: #BFDBFE;
--blue-300: #93C5FD;
--blue-400: #60A5FA;
--blue-500: #3B82F6;
--blue-600: #2563EB;
--blue-700: #1D4ED8;
--blue-800: #1E40AF;
--blue-900: #1E3A8A;
--lime-50: #F7FEE7;
--lime-100: #ECFCCB;
--lime-200: #D9F99D;
--lime-300: #BEF264;
--lime-400: #A3E635;
--lime-500: #84CC16;
--lime-600: #65A30D;
--lime-700: #4D7C0F;
--lime-800: #3F6212;
--lime-900: #365314;
--pink-50: #FDF2F8;
--pink-100: #FCE7F3;
--pink-200: #FBCFE8;
--pink-300: #F9A8D4;
--pink-400: #F472B6;
--pink-500: #EC4899;
--pink-600: #DB2777;
--pink-700: #BE185D;
--pink-800: #9D174D;
--pink-900: #831843;
--teal-50: #F0FDFA;
--teal-100: #CCFBF1;
--teal-200: #99F6E4;
--teal-300: #5EEAD4;
--teal-400: #2DD4BF;
--teal-500: #14B8A6;
--teal-600: #0D9488;
--teal-700: #0F766E;
--teal-800: #115E59;
--teal-900: #134E4A;
--green-50: #ECFDF5;
--green-100: #D1FAE5;
--green-200: #A7F3D0;
--green-300: #6EE7B7;
--green-400: #34D399;
--green-500: #10B981;
--green-600: #059669;
--green-700: #047857;
--green-800: #065F46;
--green-900: #064E3B;
--purple-50: #F5F3FF;
--purple-100: #EDE9FE;
--purple-200: #DDD6FE;
--purple-300: #C4B5FD;
--purple-400: #A78BFA;
--purple-500: #8B5CF6;
--purple-600: #7C3AED;
--purple-700: #6D28D9;
--purple-800: #5B21B6;
--purple-900: #4C1D95;
--yellow-50: #FFFBEB;
--yellow-100: #FEF3C7;
--yellow-200: #FDE68A;
--yellow-300: #FCD34D;
--yellow-400: #FBBF24;
--yellow-500: #F59E0B;
--yellow-600: #D97706;
--yellow-700: #B45309;
--yellow-800: #92400E;
--yellow-900: #78350F;
--ifc-blue: #00ADE4;
--ifc-dark-blue: #002345;
--ifc-evergreen: #006C5B;
--ifc-blue-green: #4C868E;
--ifc-sage-green: #789D4A;
--ifc-lime-green: #69C04B;
--ifc-light-green: #BCD19B;
--ifc-violet: #440099;
--ifc-purple: #485CC7;
--ifc-orchid: #87189D;
--ifc-orange: #E87722;
--ifc-gold: #FFC72C;
--ifc-black: #000000;
--ifc-light-gray: #BFCED6;
--ifc-taupe: #CFC493;
  /* Fonts */
    --font-ubuntu: 'Ubuntu',sans-serif;

    /* Font size */
    --font-size-xxs: 0.625rem;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
--font-size-4xl: 2.25rem;
--font-size-5xl: 3rem;
    /* Font weight */
    --font-weight-thin: 100;
--font-weight-lighter: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-normal: 500;
--font-weight-bold: 700;
--font-weight-semi-bold: 600;
--font-weight-bolder: 800;
--font-weight-black: 900;
    /* Shadows */
    --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-base:  0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
--shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.25);
--shadow-2xl:  0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}

      
  .dpvHso {
    width:100%;
  height:100vh;
  align-items:center;
  font-family:'Ubuntu';
  font-weight:var(--font-weight-regular);
  line-height:1.5;
  justify-content:start;
  background-color:#ffffff;
  }
      

      
        
      
      
  .bZFKAu {
    font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .zRKSH {
    gap:4px;
  font-family:'Ubuntu';
  }
      

      
        
      
      
  .edScdr {
    gap:16px;
  font-weight:400;
  line-height:1.5;
  }
      

      
        
      
      
  .byDQOK {
    color:var(--ifc-dark-blue, #002345);
  font-size:var(--font-size-lg);
  font-weight:700;
  line-height:1.2;
  }
      

      
        
      
      
  
      

      
        
      
      
  .fFJzlq {
    width:100%;
  height:80px;
  z-index:100;
  align-items:center;
  font-family:'Ubuntu';
  justify-content:start;
  border-bottom-color:#e6e6e6;
  border-bottom-style:solid;
  border-bottom-width:1px;
  }
      

      
        
      
      
  
      

      
        
      
      
  .bKDafr {
    align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

      
          @media (min-width: 700px) {
            
  .bKDafr {
    display:none;
  }
      

          }
          
        
      
      
  
      

      
        
      
      
  .csRCvJ {
    width:100%;
  display:flex;
  z-index:4;
  padding-top:8px;
  padding-left:16px;
  padding-right:16px;
  flex-direction:column;
  padding-bottom:8px;
  background-color:#fff;
  }
      

      
          @media (min-width: 700px) {
            
  .csRCvJ {
    display:none;
  }
      

          }
          
        
      
      
  .ciDyYj {
    top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  z-index:2;
  position:fixed;
  background-color:#0000003b;
  }
      

      
        
      
      
  .aXhjV {
    color:#002345;
  align-items:center;
  font-family:'Ubuntu';
  font-weight:var(--font-weight-normal);
  padding-top:8px;
  flex-direction:row;
  padding-bottom:8px;
  justify-content:space-between;
  border-bottom-color:#00000000;
  border-bottom-style:solid;
  border-bottom-width:3px;
  }
      

      
  .aXhjV:hover {
    border-bottom-color:var(--line, transparent);
  border-bottom-style:solid;
  border-bottom-width:3px;
  }
      


  .aXhjV.is-active {
    color:#002345;
  border-bottom-color:var(--line, transparent);
  border-bottom-style:solid;
  border-bottom-width:3px;
  }
      

        
      
      
  .dzKEUW {
    height:16px;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .exoZyl {
    gap:24px;
  align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

      
        
      
      
  
      

      
        
      
      
  .fAHQNB {
    width:32px;
  height:32px;
  }
      

      
        
      
      
  .dgtgpa {
    width:200px;
  background-image:url("");
  }
      

      
        
      
      
  
      

      
        
      
      
  .HmLoq {
    color:var(--ifc-blue, #00ADE4);
  transition:color 300ms ease 0ms normal;
  }
      

      
  .HmLoq:hover {
    color:#026f92;
  }
      

        
      
      
  .bjnDIO {
    width:100%;
  height:100%;
  font-size:var(--font-size-xl);
  align-items:center;
  justify-content:center;
  }
      

      
        
      
      
  .bDDCmI {
    width:100%;
  height:100%;
  z-index:4;
  max-width:1200px;
  align-items:center;
  padding-left:16px;
  padding-right:16px;
  flex-direction:row;
  justify-content:space-between;
  }
      

      
        
      
      
  .ccDRkP {
    width:100%;
  height:100%;
  z-index:3;
  align-items:center;
  justify-content:start;
  background-color:#fff;
  }
      

      
        
      
      
  .fjFnkv {
    gap:8px;
  flex-direction:row;
  }
      

      
        
      
      
  
      

      
        
      
      
  .cCYXsI {
    width:100%;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .ccvtWU {
    display:flex;
  flex-direction:column;
  }
      

      
          @media (min-width: 700px) {
            
  .ccvtWU {
    gap:24px;
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

          }
          
        
      
      
  .cJPsde {
    display:none;
  }
      

      
          @media (min-width: 700px) {
            
  .cJPsde {
    gap:24px;
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

          }
          
        
      
      
  
      

      
        
      
      
  .cqvExP {
    align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

      
        
      
      
  
      

      
        
      
      
  .betA-Dd {
    color:var(--ifc-dark-blue, #002345);
  height:48px;
  font-size:var(--font-size-xl);
  overflow-x:hidden;
  overflow-y:hidden;
  align-items:start;
  font-family:'Ubuntu';
  font-weight:var(--font-weight-bold);
  padding-top:8px;
  padding-left:12px;
  border-radius:4px;
  padding-right:12px;
  padding-bottom:8px;
  justify-content:center;
  background-color:var(--ifc-light-gray, #BFCED6);
  border-left-color:var(--ifc-blue, #00ADE4);
  border-left-style:solid;
  border-left-width:8px;
  }
      

      
        
      
      
  
      

      
        
      
      
  .dhEgRT {
    width:100%;
  border-radius:4px;
  }
      

      
        
      
      
  .dprIEJ {
    display:inline-block;
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .bvNdnG {
    color:inherit;
  display:flex;
  font-size:1.125rem;
  font-weight:var(--font-weight-semi-bold);
  margin-bottom:0.5rem;
  flex-direction:column;
  }
      

      
        
      
      
  .emRZNs {
    width:100%;
  display:inline-block;
  text-align:left;
  font-weight:var(--font-weight-regular);
  }
      

      
        
      
      
  .fbuVIE {
    display:inline-block;
  text-align:left;
  font-weight:var(--font-weight-regular);
  }
      

      
        
      
      
  .eVfmCJ {
    color:var(--default-link-color, #2463ebff);
  display:inline-block;
  }
      

      
        
      
      
  .etCDaT {
    display:inline-block;
  text-align:left;
  font-weight:var(--font-weight-regular);
  padding-left:var(--indent);
  }
      

      
        
      
      
  .eQSOIe {
    display:inline-block;
  text-align:left;
  font-weight:var(--font-weight-regular);
  padding-left:16px;
  }
      

      
        
      
      
  .bsjHSu {
    font-weight:var(--font-weight-regular);
  justify-content:center;
  }
      

      
        
      
      
  .cSwmqo {
    gap:8px;
  width:100%;
  padding-left:32px;
  }
      

      
        
      
      
  .eUBCWm {
    gap:8px;
  width:100%;
  padding-left:16px;
  }
      

      
        
      
      
  .cPZwHn {
    color:var(--green-600, #059669);
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .fwQAAP {
    display:inline;
  text-align:left;
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .cvIFhA {
    gap:8px;
  color:var(--ifc-dark-blue, #002345);
  font-size:var(--font-size-lg);
  align-items:center;
  font-weight:var(--font-weight-bold);
  flex-direction:row;
  justify-content:start;
  }
      

      
        
      
      
  .fydSnt {
    color:var(--ifc-blue);
  width:24px;
  height:24px;
  }
      

      
        
      
      
  .dApaGJ {
    height:100%;
  }
      

      
        
      
      
  .eyVPLS {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .czFuUx {
    gap:16px;
  }
      

      
        
      
      
  .fwxPqg {
    gap:8px;
  width:100%;
  }
      

      
        
      
      
  .dFoxAz {
    gap:8px;
  width:100%;
  margin-bottom:16px;
  }
      

      
        
      
      
  .fkAVFs {
    gap:8px;
  }
      

      
        
      
      
  .fHdaUq {
    gap:12px;
  flex:1;
  width:100%;
  display:flex;
  max-width:1200px;
  padding-top:48px;
  padding-left:16px;
  padding-right:16px;
  flex-direction:column;
  padding-bottom:48px;
  }
      

      
        
      
      
  
      

      
        
      
      
  .exypCz {
    width:100%;
  }
      

      
        
      
      
  
      

      
        
      
      
  .dUkpFy {
    width:100%;
  font-size:12px;
  align-items:center;
  font-family:'Ubuntu';
  flex-direction:column;
  justify-content:start;
  background-color:#f0f2f4;
  }
      

      
        
      
      
  .cZzEZm {
    display:contents;
  }
      

      
        
      
      
  .bZYcKv {
    width:12px;
  }
      

      
        
      
      
  .cYmEvh {
    gap:18px;
  width:100%;
  height:48px;
  max-width:1200px;
  align-items:center;
  padding-left:16px;
  padding-right:16px;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
      
      
  .fzaqLz {
    font-weight:700;
  text-transform:uppercase;
  }
      

      
        
      
      
  .bwBKGO {
    width:1px;
  height:24px;
  background-color:var(--ifc-blue, #00ADE4);
  }
      

      
        
      
      
  
      

      
        
      
      
  .bXoSTI {
    display:inline-block;
  font-weight:var(--font-weight-regular);
  }
      

      
        
      
      
  .bqmVdY {
    gap:4px;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .cpOQSG {
    gap:24px;
  }
      

      
        
      
      
  .EjEOr {
    gap:12px;
  padding-top:16px;
  padding-left:16px;
  padding-right:16px;
  padding-bottom:16px;
  background-color:var(--grey-200, #E5E5E5);
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .dFbmWl {
    color:var(--red-600, #DC2626);
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  
      

      
        
      
      
  .bDKAoF {
    display:grid;
  grid-gap:12px;
  }
      

      
          @media (min-width: 700px) {
            
  .bDKAoF {
    grid-template-columns:1fr 1fr;
  }
      

          }
          
        
      
      
  .fyPkhk {
    color:#fff;
  display:inline-block;
  text-align:center;
  font-weight:400;
  line-height:150%;
  }
      

      
        
      
      
  .dufoSs {
    gap:4px;
  width:100%;
  flex-wrap:wrap;
  align-items:start;
  font-family:'Ubuntu';
  padding-top:4px;
  padding-left:4px;
  padding-right:4px;
  flex-direction:row;
  padding-bottom:4px;
  justify-content:center;
  }
      

      
        
      
      
  .bPGyiy {
    color:var(--ifc-dark-blue, #002345);
  transition:background-color 300ms ease 0ms normal;
  font-family:'Ubuntu';
  font-weight:var(--font-weight-bold);
  padding-top:8px;
  padding-left:24px;
  border-radius:4px;
  padding-right:24px;
  padding-bottom:8px;
  background-color:var(--ifc-light-gray, #BFCED6);
  }
      

      
  .bPGyiy:hover {
    background-color:#97b1be;
  }
      


  .bPGyiy.is-active {
    color:var(--ifc-dark-blue, #002345);
  background-color:var(--ifc-blue, #00ADE4);
  }
      

        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .cZRDhG {
    width:100%;
  max-width:1200px;
  align-items:center;
  padding-left:16px;
  padding-right:16px;
  justify-content:start;
  }
      

      
        
      
      
  .cZxVNB {
    color:#ffffff;
  display:inline-block;
  font-size:2.5rem;
  text-align:center;
  font-weight:400;
  line-height:120%;
  }
      

      
        
      
      
  .cZDxYF {
    width:100%;
  background-color:var(--ifc-dark-blue, #002345);
  }
      

      
        
      
      
  .bnXCwp {
    gap:16px;
  width:100%;
  max-width:700px;
  align-items:center;
  justify-content:start;
  }
      

      
        
      
      
  .dUnlIH {
    gap:48px;
  width:100%;
  align-items:center;
  font-family:'Ubuntu';
  padding-top:48px;
  padding-left:24px;
  padding-right:24px;
  padding-bottom:48px;
  justify-content:start;
  background-image:url("https://www.ifc.org/etc.clientlibs/ifc/clientlibs/clientlib-site-author/resources/img/banner-img.png");
  background-position:center center;
  }
      

      
        
      
      
  
      

      
        
      
      
  .eUpSUp {
    display:inline-block;
  font-size:var(--font-size-2xl);
  font-weight:700;
  }
      

      
        
      
      
  .cJDkFp {
    width:100%;
  align-items:center;
  font-family:'Ubuntu';
  font-weight:var(--font-weight-regular);
  justify-content:start;
  background-color:#222632;
  }
      

      
        
      
      
  .dmGej {
    padding-top:24px;
  padding-bottom:24px;
  border-top-color:#ffffff24;
  border-top-style:solid;
  border-top-width:1px;
  }
      

      
          @media (min-width: 700px) {
            
  .dmGej {
    align-items:center;
  flex-direction:row;
  justify-content:space-between;
  }
      

          }
          
        
      
      
  .bPlefV {
    color:#fff;
  font-size:var(--font-size-sm);
  font-family:'Ubuntu';
  font-weight:var(--weight);
  }
      

      
        
      
      
  
      

      
  .cVLgqP:hover {
    text-decoration-line:underline;
  }
      

        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .ePbYKD {
    gap:12px;
  color:#fff;
  width:100%;
  flex-wrap:wrap;
  font-size:var(--font-size-sm);
  align-items:center;
  font-weight:400;
  flex-direction:row;
  justify-content:center;
  }
      

      
          @media (min-width: 700px) {
            
  .ePbYKD {
    width:auto;
  align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

          }
          
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .yispC {
    gap:12px;
  color:#fff;
  align-items:center;
  font-weight:400;
  flex-direction:row;
  justify-content:center;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .bVjgIs {
    display:none;
  }
      

      
          @media (min-width: 700px) {
            
  .bVjgIs {
    display:flex;
  flex-direction:column;
  }
      

          }
          
        
      
      
  .bnELYL {
    width:100%;
  max-width:1200px;
  padding-left:16px;
  padding-right:16px;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
          @media (min-width: 700px) {
            
  .eDbipc {
    display:none;
  }
      

          }
          
        
      
      
  .bDWsZy {
    width:200px;
  }
      

      
        
      
      
  
      

      
        
      
      
  .faayX {
    gap:16px;
  align-items:center;
  flex-direction:column;
  justify-content:center;
  }
      

      
          @media (min-width: 700px) {
            
  .faayX {
    gap:16px;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

          }
          
        
      
      
  .bUMYrK {
    padding-top:24px;
  padding-bottom:24px;
  }
      

      
          @media (min-width: 700px) {
            
  .bUMYrK {
    padding-top:40px;
  padding-bottom:40px;
  }
      

          }
          
        
      
      
  
      

      
        
      
      
  .fwscpw {
    gap:24px;
  display:grid;
  }
      

      
          @media (min-width: 700px) {
            
  .fwscpw {
    grid-template-columns:1fr 1fr;;
  }
      

          }
          
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .feJBrI {
    margin-bottom:24px;
  }
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  
      

      
        
      