.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center; }

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em; }

.blocker.behind {
  background-color: transparent; }

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left; }

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg=="); }

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px; }

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out; }

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  /* text-transform: uppercase; */
  margin: 0;
  padding: 0;
  color: #143753; }

article, aside, footer, header, nav, section {
  display: block; }

a {
  position: relative;
  text-decoration: none;
  color: #4640e6;
  transition: all .3s ease; }
  a:hover {
    text-decoration: underline; }

p {
  padding: 0;
  margin: 10px 0; }

figure {
  margin: 0; }

.date {
  text-transform: uppercase;
  color: #57b557;
  font-weight: 700; }

.author {
  color: grey;
  font-style: italic;
  font-weight: 300; }

.username {
  text-transform: uppercase; }

.taxonomy {
  padding: 2px 6px;
  background: #fafafa;
  color: #373f52;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #eee;
  text-transform: capitalize; }

.modal {
  display: none; }

.load-hidden {
  visibility: hidden; }

.page--our-work section.content-one {
  background: transparent;
  box-shadow: none; }

.page--our-work .region-content {
  display: flex; }

.page--our-work #block-aboutusimage img {
  width: 360px;
  height: 360px; }

.page--home .region-content-two {
  display: flex;
  flex-direction: row; }
  .page--home .region-content-two > div:first-child {
    width: 70%; }
  .page--home .region-content-two > div:nth-child(2) {
    width: 30%; }

.page--database .region-content {
  display: flex; }

.page--database #block-databaseimage img {
  width: 360px;
  height: 360px; 
margin-top:30px;
margin-right:25px;}

.path-country-profiles .view-header {
  border: none; }

h1 {
  font-size: 36px;
  letter-spacing: 1px; }
  @media screen and (min-width: 480px) {
    h1 {
      font-size: 36px; } }
  @media screen and (min-width: 640px) {
    h1 {
      font-size: 36px; } }
  @media screen and (min-width: 1024px) {
    h1 {
      font-size: 36px; } }
  @media screen and (min-width: 1400px) {
    h1 {
      font-size: 36px; } }

h2, .text-extra-large {
  font-size: 22.5px;
  letter-spacing: 1px; }
  @media screen and (min-width: 480px) {
    h2, .text-extra-large {
      font-size: 22.5px; } }
  @media screen and (min-width: 640px) {
    h2, .text-extra-large {
      font-size: 25px; } }
  @media screen and (min-width: 1024px) {
    h2, .text-extra-large {
      font-size: 25px; } }
  @media screen and (min-width: 1400px) {
    h2, .text-extra-large {
      font-size: 25px; } }

h3 {
  font-size: 20px;
  letter-spacing: 1px; }
  @media screen and (min-width: 480px) {
    h3 {
      font-size: 20px; } }
  @media screen and (min-width: 640px) {
    h3 {
      font-size: 20px; } }
  @media screen and (min-width: 1024px) {
    h3 {
      font-size: 20px; } }
  @media screen and (min-width: 1400px) {
    h3 {
      font-size: 20px; } }

h4, h5, h6 {
  font-size: 18px;
  letter-spacing: 1px; }
  @media screen and (min-width: 480px) {
    h4, h5, h6 {
      font-size: 18px; } }
  @media screen and (min-width: 640px) {
    h4, h5, h6 {
      font-size: 18px; } }
  @media screen and (min-width: 1024px) {
    h4, h5, h6 {
      font-size: 18px; } }
  @media screen and (min-width: 1400px) {
    h4, h5, h6 {
      font-size: 18px; } }

p, .text-medium, label, .btn, a, th, td {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 28px;
  font-weight: 300; }
  @media screen and (min-width: 480px) {
    p, .text-medium, label, .btn, a, th, td {
      font-size: 14px; } }
  @media screen and (min-width: 640px) {
    p, .text-medium, label, .btn, a, th, td {
      font-size: 14px; } }
  @media screen and (min-width: 1024px) {
    p, .text-medium, label, .btn, a, th, td {
      font-size: 14px; } }
  @media screen and (min-width: 1400px) {
    p, .text-medium, label, .btn, a, th, td {
      font-size: 16px; } }




.text-small {
  font-size: 12px; }
  @media screen and (min-width: 480px) {
    .text-small {
      font-size: 12px; } }
  @media screen and (min-width: 640px) {
    .text-small {
      font-size: 12px; } }
  @media screen and (min-width: 1024px) {
    .text-small {
      font-size: 12px; } }
  @media screen and (min-width: 1400px) {
    .text-small {
      font-size: 14px; } }

.text-large {
  font-size: 16px; }
  @media screen and (min-width: 480px) {
    .text-large {
      font-size: 14px; } }
  @media screen and (min-width: 640px) {
    .text-large {
      font-size: 14px; } }
  @media screen and (min-width: 1024px) {
    .text-large {
      font-size: 18px; } }
  @media screen and (min-width: 1400px) {
    .text-large {
      font-size: 18px; } }

.jumbo {
  font-size: 48px; }
  @media screen and (min-width: 480px) {
    .jumbo {
      font-size: 44px; } 
    
    }
  @media screen and (min-width: 640px) {
    .jumbo {
      font-size: 44px; } }
  @media screen and (min-width: 1024px) {
    .jumbo {
      font-size: 48px; } }
  @media screen and (min-width: 1400px) {
    .jumbo {
      font-size: 70px; } }

.text-white {
  color: #fff !important; }

.text-black {
  color: #333 !important; }

.text-green {
  color: #57b557 !important; }

.text-red {
  color: #b51c00 !important; }

.text-blue {
  color: #2b5bb5 !important; }

.container {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  max-width: 1280px;
  width: 100%; }

#page--wrapper {
  min-height: 100%;
  background: #F9F9F9; }

/** Banner **/
.default-header-wrapper {
  /* background: #0d7fa3;  */
  background: #fff;
}

.banner-wrapper {
  display: block;
  position: relative;
  /* padding: 500px 0 0 0; */
  padding:  310px 0 0 0; 
  overflow: hidden; }
 
#banner {
  z-index: 0;
  height: 600px;
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  transform: scale(1);
  transition: all 3s cubic-bezier(0.7, 0, 0.3, 1); }
  #banner.scaled {
    transform: scale(1.2);
    -webkit-animation: cssAnimation 6s 1 ease-in-out;
    -moz-animation: cssAnimation 6s 1 ease-in-out;
    -o-animation: cssAnimation 6s 1 ease-in-out;
    -ms-animation: cssAnimation 6s 1 ease-in-out;
    animation: cssAnimation 6s 1 ease-in-out; }

.banner-content {
  position: absolute;
  z-index: 100;
  height: 500px;
  width: 100%;
  top: 0;
  color: #fff; }
  .banner-content .container > div {
    display: block;
    margin: 125px 0 0 0; }
  .banner-content span {
    /* background: #fff;
    color: #0d7fa3; */
    color:#fff;
    padding: 10px 20px 10px 0px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    z-index: 10; }
  .banner-content h2 {
    margin: 20px 0;
    text-transform: uppercase;
    z-index: 10;
    color: #fff; }
  .banner-content p {
    z-index: 10; }

/** Region **/
.region-header {
  display: flex;
  flex-direction: row; }
  .region-header > div:first-child {
    width: 25%;
    max-width: 200px; }
  .region-header > div:nth-child(2) {
    width: 75%; }

.content-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%; }

section {
  background: #fff;
  margin-top: 25px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09); }
  section:last-child {
    margin-bottom: 25px; }
  section h1, section h2, section h3, section h4 {
    margin: 0; }

.sidebar {
  height: 100%;
  min-height: 200px;
  width: 25%;
  background: #fff;
  margin-top: 25px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09);
  margin-right: 20px; }
  .sidebar .region {
    padding: 0; }
  .sidebar-left {
    margin: 25px 20px 0 0; }
  .sidebar-right {
    margin: 25px 0 0 20px; }

@media (min-width: 768px) {
  .container {
    width: 95%; }
  #content {
    flex: 1; }
  .front-page #content {
    flex: 1; } }

.navigation-wrapper {
  background: #143753; }

.region-primary-menu .navigation {
  min-height: 50px; }

.region-primary-menu .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0; }
  .region-primary-menu .menu .menu-item {
    flex-grow: 1;
    flex-basis: 80px;
    text-align: center;
    padding: 0; }
    .region-primary-menu .menu .menu-item span, .region-primary-menu .menu .menu-item a {
      display: block;
      font-style: normal;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 15px 0;
      width: 175px;
      color: #fff; }
      .region-primary-menu .menu .menu-item span:hover, .region-primary-menu .menu .menu-item a:hover {
        background: #0071BC; }
      .region-primary-menu .menu .menu-item span.is-active, .region-primary-menu .menu .menu-item a.is-active {
      /* background: #c8dbe4;  */
      background: #0071BC;
      color: #fff;
     }

.region-primary-menu .contextual {
  top: 25px; }

@media (min-width: 768px) {
  .region-primary-menu .menu .menu-item span, .region-primary-menu .menu .menu-item a {
    width: 100%; } }

/* Footer */
#footer {
  /* background: #0d7fa3; */
  background: #fff;
  min-height: 200px;
  position: relative; }

.footer {
  display: flex;
  flex-direction: column; }
  .footer .navigation h2 {
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0 0 10px 0;
    margin: 0; }
  .footer .navigation ul.menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; }
    .footer .navigation ul.menu li span, .footer .navigation ul.menu li a {
      color: #000;
      font-weight: 200;
      text-decoration: none; }
    .footer .navigation ul.menu .menu-item {
      padding: 15px 0 0 0; }
      .footer .navigation ul.menu .menu-item a:hover {
        text-decoration: underline; }

.footer--logo {
  padding: 25px 25px 0 25px; }
  .footer--logo img {
       /* height: 125px; */
       /* height: auto;
       width: 200px;  */
      }
       .footer--logo a {
        display: inine-flex;
      }

.footer--block {
  flex: 1;
  padding: 25px 20px 50px; }
  .footer--block h2 {
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0 0 10px 0;
    margin: 0;
    width: 35%;
    margin-left: 45%;
  display: inline-flex; }

.footer-bottom {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #787878;
    width: 90%;
    height: 50px;
}
.list-inline, .footer-fraud {
  width: 50%;
  float: left;
}
.list-inline ul {
  margin: 0;
  padding: 0;
}
.list-inline li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-inline li a.disclaimer {
  color: #000;
  font-size: 12px;
  border-right: 1px solid #000;
  margin-right: 8px;
  padding-right: 8px;
}
.list-inline li a.disclaimer:last-child {
  border-right: 0px solid #000;
}
.footer-fraud a {
  color: #000;
  float: right;
  font-size: 12px;
}
.social-icons {
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 25px 0 0 0;
  margin: 0; }
  .social-icons li {
    margin: 0 20px 0 0; }
  .social-icons .fa {
    font-size: 50px;
    color: #000; }

.copyright {
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 200;
  padding: 15px; }

.scrolltop {
  position: absolute;
  bottom: 65px;
  right: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  line-height: 3rem;
  text-align: center;
  width: 3rem;
  height: 3rem;
  background-color: #D6E3F0;
  padding: 0.25rem; }

@media (min-width: 768px) {
  .footer-logo {
    padding: 25px; } }

@media (min-width: 1280px) {
  .footer {
    flex-direction: row; }
    .footer .navigation h2 {
      width: 100%; }
  .footer-block {
    width: 25%;
    padding: 35px 20px; } }

.btn-primary {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #143753;
  font-size: 14px;
  letter-spacing: 1.25px;
  padding: 5px 0;
  width: 150px;
  line-height: 1;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  text-decoration: none;
  color: #fff;
  background-color: #143753; }
  .btn-primary:hover {
    background-color: #095a74; }

.btn-default {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #143753;
  font-size: 14px;
  letter-spacing: 1.25px;
  padding: 5px 0;
  width: 150px;
  line-height: 1;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  text-decoration: none;
  color: #fff;
  background-color: #143753;
  color: #143753;
  background-color: #fff;
  border-color: #143753; }
  .btn-default:hover {
    background-color: #095a74; }
  .btn-default:hover {
    background-color: #143753;
    color: #fff; }

a.btn-default,
a.btn-primary {
  text-decoration: none; }

@media (min-width: 768px) {
  .btn-primary,
  .btn-default {
    padding: 10px 0;
    width: 175px; } }

@media (min-width: 1280px) {
  .btn-primary,
  .btn-default {
    padding: 15px 0; } }

.zoom {
  position: relative;
  border: 1px solid #f2f2f0;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .zoom:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .zoom img {
    vertical-align: top;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }

label {
  display: inline-block;
  margin-bottom: .5rem;
  color: #333;
  letter-spacing: 1px; }

input,
textarea {
  display: block;
  width: 100%;
  padding: 7px 5px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box; }
  input:focus,
  textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

input[type=submit] {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #0d7fa3;
  font-size: 14px;
  letter-spacing: 1.25px;
  padding: 5px 0;
  width: 150px;
  line-height: 1;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  text-decoration: none;
  color: #fff;
  background-color: #0d7fa3;
  margin: 0;
  background: #0d7fa3; }
  input[type=submit]:hover {
    background-color: #095a74; }

select {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #495057;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background: transparent url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat 95%;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.collapsible {
  margin: 0 0 10px 0;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09); }
  .collapsible label span {
    text-transform: capitalize;
    font-weight: 700; }

.collapsible--toggle {
  display: block;
  padding: 20px 35px;
  margin: 0;
  color: #143753;
  background: #fff;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out; }
  .collapsible--toggle.open .collapsible--arrow {
    background-image: url(../images/b99780d9c03e99f18d03ad94a00a2882.png); }
  .collapsible--toggle .collapsible--arrow {
    background-image: url(../images/a1214b8c09a7c7d1372d7364eee09b8d.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 35px; }

.collapsible--toggle:hover {
  color: #0071bc; }

.collapsible--content {
  background: #fff;
  display: none;
  overflow: hidden;
  transition: max-height .25s ease-in-out; }
  .collapsible--content .content--inner {
    display: flex;
    padding: 0px 35px 20px 35px; }
    .collapsible--content .content--inner > div {
      flex: 1; }
    .collapsible--content .content--inner > div:first-child {
      margin: 0 0 20px 0; }
    .collapsible--content .content--inner > div:nth-child(2) {
      margin: 0 0px 0px 20px; }
      .collapsible--content .content--inner > div:nth-child(2) img {
        width: 100%;
        height: auto; }

.content--related-blogs {
  padding: 0 35px;
  border-top: 1px solid #f2f2f2; }
  .content--related-blogs h3 {
    padding: 25px 0; }

.fade {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s ease-out;
  -moz-transition: opacity .4s ease-out;
  -o-transition: opacity .4s ease-out;
  -ms-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out; }

@keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px); }
  to {
    -webkit-transform: scale(1.2) translate(0px); } }

@-webkit-keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px); }
  to {
    -webkit-transform: scale(1.2) translate(0px); } }

@-moz-keyframes cssAnimation {
  from {
    -moz-transform: scale(1) translate(0px); }
  to {
    -moz-transform: scale(1.2) translate(0px); } }

@-o-keyframes cssAnimation {
  from {
    -o-transform: scale(1) translate(0px); }
  to {
    -o-transform: scale(1.2) translate(0px); } }

.node--type-type-article .meta,
.node--article .meta,
.node--case-study .meta,
.node--event .meta {
  margin: 15px 0 0 0; }

.node--type-type-article .list,
.node--article .list,
.node--case-study .list,
.node--event .list {
  margin: 5px 0 0 0; }

.node--type-type-article .node--submitted,
.node--article .node--submitted,
.node--case-study .node--submitted,
.node--event .node--submitted {
  display: flex;
  margin: 0 0 20px 0; }
  .node--type-type-article .node--submitted .author,
  .node--article .node--submitted .author,
  .node--case-study .node--submitted .author,
  .node--event .node--submitted .author {
    margin: 0 0 0 10px; }

.node--type-type-article .node--content,
.node--article .node--content,
.node--case-study .node--content,
.node--event .node--content {
  padding: 0 35px 35px 35px; }

.field-authors {
  display: flex; }
  .field-authors span.author-value {
    color: grey;
    font-style: italic;
    font-weight: 300;
    margin: 1px 0 0 10px;
    text-decoration: underline; }

.teaser {
  display: flex;
  flex-direction: column;
  padding: 12.5px 25px 12.5px 25px; }
  .teaser .author {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: grey;
    font-style: italic;
    font-weight: 300; }
    .teaser .author div, .teaser .author span, .teaser .author article {
      padding: 0 2px; }

.teaser--img {
  display: block;
  width: auto; }

.teaser--content {
  flex: 1; }
  .teaser--content a {
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    color: #143753; }
    .teaser--content a > span {
      font-weight: bold;
      font-size: 20px !important; }
    .teaser--content a:hover {
      text-decoration: underline; }
  .teaser--content p {
    font-weight: 200; }

.teaser--meta .date {
  display: flex;
  text-transform: uppercase;
  color: #57b557;
  font-weight: 700; }

.teaser--btn {
  margin: 38px 0 0 0; }
  .teaser--btn .btn-default {
    font-weight: 700; }

@media (min-width: 768px) {
  .teaser {
    flex-direction: row;
    justify-content: space-between; }
  .teaser--img {
    align-self: flex-start; }
  .teaser--content {
    padding: 0 25px; } }

@media (min-width: 1280px) {
  .teaser--content {
    max-width: 600px; } }

.article--card {
  margin: 25px 0 0 0; }
  .article--card .card--img {
    display: block;
    width: auto; }
  .article--card .card--content {
    flex: 1; }
    .article--card .card--content a.label {
      text-transform: uppercase;
      text-decoration: none;
      font-weight: bold;
      color: #143753;
      line-height: normal; }
      .article--card .card--content a.label:hover {
        text-decoration: underline; }
    .article--card .card--content span.date {
      display: block;
      text-transform: uppercase;
      color: #57b557;
      font-weight: 700;
      margin: 10px 0 0 0; }
    .article--card .card--content p {
      font-weight: 200; }
    .article--card .card--content .author {
      display: flex;
      flex-direction: row;
      align-items: center;
      color: grey;
      font-style: italic;
      font-weight: 300;
      font-size: 14px;
      margin: 5px 0 0 0; }
      .article--card .card--content .author a {
        text-transform: uppercase;
        text-decoration: none;
        color: #0d7fa3;
        font-size: 14px; }
      .article--card .card--content .author div, .article--card .card--content .author span, .article--card .card--content .author article {
        padding: 0 2px; }

.view-a-z-country-profiles .view-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 25px; }

.view-a-z-country-profiles .view-header {
  border-top: 2px solid #dedede; }
  .view-a-z-country-profiles .view-header .views-summary a {
    color: #333;
    padding: 8px 10px 8px 12px;
    margin: 0 5px 0 0;
    background: #ebebeb;
    border-radius: 5px;
    font-weight: 800; }
    .view-a-z-country-profiles .view-header .views-summary a.is-active {
      background: #0d7fa3;
      color: #fff; }
  .view-a-z-country-profiles .view-header .view-content {
    padding: 0; }

@media (min-width: 768px) {
  .view-a-z-country-profiles .view-content .views-row {
    width: 50%; } }

@media (min-width: 1280px) {
  .view-a-z-country-profiles .view-content .views-row {
    width: 33%; } }

.country-profile--list {
  display: flex;
  flex-direction: row;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  padding: 25px; }
  .country-profile--list .field--type-image {
    height: 100px; }

.cp {
  flex: 1;
  margin: 10px;
  background: #ebebeb;
  border: 1px solid transparent;
  cursor: pointer;
  height: 100px; }
  .cp a {
    text-decoration: none;
    color: #333; }
  .cp:hover {
    border: 1px solid #cececf;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09); }

.cp--header {
  display: flex;
  align-items: center; }
  .cp--header .cp--title {
    color: #333;
    font-weight: 400;
    text-decoration: none;
    padding: 0 15px; }

.cp--content {
  padding: 10px 25px;
  height: 200px; }

.cp--card {
  flex: 1;
  margin: 10px;
  background: #ebebeb;
  border: 1px solid transparent;
  cursor: pointer;
  height: 220px; }
  .cp--card .cp--header {
    display: block; }
  .cp--card .cp--title {
    display: block;
    margin: 25px 20px;
    text-align: center; }
  .cp--card img {
    width: 100%;
    height: auto; }

@media (min-width: 768px) {
  .country-profile--list > div {
    width: 50%; }
  .view-country-profiles-small .country-profile--list > div {
    width: 50%; } }

@media (min-width: 1280px) {
  .country-profile--list > div {
    width: 33%; }
  .view-country-profiles-small .country-profile--list > div {
    width: 20%; } }

.featured--list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative; }

.program--item {
  background: #fff;
  z-index: 10;
  padding: 25px;
  margin: 1px 0;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09); }
  .program--item .program--content {
    margin: 20px 0 0 0;
    height: 100px; }
    .program--item .program--content p {
      font-weight: 200; }

.program--header {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 150px;
  display: block; }

.program--title {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0 15px 25px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  transition: all .3s ease; }

.overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 96, 54, 0.6);
  text-align: center;
  padding: 24% 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff; }

.program--item:hover .overlay {
  opacity: 1;
  visibility: visible;
  display: block; }

.program--item:hover .program--title {
  visibility: hidden;
  opacity: 0; }

@media (min-width: 768px) {
  .featured--list {
    flex-direction: row; }
    .featured--list > div {
      width: 32%; } }

@media (min-width: 1280px) {
  .featured--list {
    flex-direction: row; }
    .featured--list > div {
      width: 32%; }
  .program--header {
    height: 200px; }
  .program--item {
    height: 450px; }
    .program--item .program--content p {
      margin: 50px 25px; } }

.portfolios--grid-list {
  width: 100%;
  min-height: 100px; }
  .portfolios--grid-list .grid--item {
    width: 25%;
    background: #fff;
    float: left;
    height: 150px;
    overflow: hidden; }
    .portfolios--grid-list .grid--item img {
      width: 100%; }
    .portfolios--grid-list .grid--item:hover .portfolio--meta {
      opacity: 1;
      visibility: visible;
      display: block; }

.portfolio--item {
  position: relative; }

.portfolio--meta {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s ease-out;
  -moz-transition: opacity .4s ease-out;
  -o-transition: opacity .4s ease-out;
  -ms-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out;
  background: rgba(255, 96, 54, 0.6);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  font-weight: 300;
  padding: 50% 25px 0 25px; }
  .portfolio--meta a {
    color: #fff;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none; }
  .portfolio--meta .text-small {
    letter-spacing: 1px; }
  .portfolio--meta .meta-filters {
    display: none; }

@media (min-width: 768px) {
  .portfolios--grid-list .grid--item {
    height: 200px; } }

@media (min-width: 1280px) {
  .portfolios--grid-list .grid--item {
    height: 300px; } }

.tool--item {
  display: flex;
  flex-direction: column;
  margin: 12.5px 25px; }
  .tool--item .tool--img {
    display: block;
    width: auto; }
  .tool--item .label {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    color: #57b557; }
  .tool--item p {
    font-weight: 200; }
  .tool--item .tool--btn .btn-default {
    font-weight: 700; }

@media (min-width: 768px) {
  .tool--item {
    flex-direction: row; }
    .tool--item .tool--img {
      align-self: flex-start; }
    .tool--item .tool--content {
      padding: 0 25px;
      flex: 1; }
    .tool--item .tool--btn {
      align-self: center; } }

#block-views-our-team {
  padding: 35px; }
  #block-views-our-team h2 {
    margin: 0 0 25px 0; }

.our-team--list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .our-team--list > div {
    width: 32%;
    margin: 25px 0 0 0; }

.team-member--card {
  border: 1px solid #d2d2d2;
  padding: 25px;
  height: 300px; }
  .team-member--card:hover {
    background: #095a74;
    color: white; }
    .team-member--card:hover a {
      color: #a1a1a1; }
    .team-member--card:hover h4, .team-member--card:hover p, .team-member--card:hover span {
      color: white; }
  .team-member--card .card--header {
    display: flex;
    margin: 0 0 5px 0; }
  .team-member--card .card--meta {
    margin: 0 0 0 15px; }
    .team-member--card .card--meta h4 {
      font-weight: 700;
      text-transform: uppercase;
      color: #333; }
  .team-member--card .card--content {
    border-top: 1px solid #d2d2d2;
    padding: 15px 0 0 0;
    margin: 5px 0 0 0; }
  .team-member--card .fa-envelope-o {
    width: 25px;
    height: 25px;
    float: left;
    padding: 5px 0px; }

.team-member--modal {
  max-width: 680px !important; }

.team-member--modal-wrap {
  display: flex;
  padding: 15px 0; }

.team-member--modal-content {
  margin: 0 15px 0 20px;
  flex: 1; }
  .team-member--modal-content h4 {
    font-weight: 700;
    text-transform: uppercase;
    color: #333; }

.team-member--modal-email {
  display: flex;
  border-bottom: 1px solid #d2d2d2;
  margin: 0 0 15px 0; }
  .team-member--modal-email .fa-envelope-o {
    width: 25px;
    height: 25px;
    padding: 8px 0px; }

.tags-list {
  display: flex;
  flex-direction: row; }

.tag-link a {
  padding: 0px 10px;
  background: #fafafa;
  color: #484e5f;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  display: inline-block;
  border: 2px solid #eee;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px; }
  .tag-link a:hover {
    color: #4640e6;
    text-decoration: none;
    border: 2px solid #4640e6; }

.region .block-facets:first-child {
  border: none; }

.region .block-facets {
  border-top: 2px solid #f6f6f6; }

.block-facets {
  margin: 25px 0;
  padding: 0 25px !important; }
  .block-facets h2, .block-facets h4 {
    color: #0d7fa3;
    padding: 25px 0 10px 0;
    margin: 0;
    text-transform: uppercase; }

.facets-widget-checkbox ul.item-list__checkbox {
  list-style: none;
  padding: 0;
  margin: 0; }

.facets-widget-checkbox li.facet-item {
  display: flex;
  padding: 5px; }
  .facets-widget-checkbox li.facet-item > input {
    width: 15px;
    height: 15px;
    margin: 0 15px 0 0; }
  .facets-widget-checkbox li.facet-item > label {
    margin: -6px 0; }
  .facets-widget-checkbox li.facet-item > label, .facets-widget-checkbox li.facet-item span {
    padding: 0;
    text-transform: capitalize;
    font-weight: 700; }

.block-header {
  padding: 30px;
  border-bottom: 2px solid #dedede;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .block-header h1, .block-header h2 {
    /* text-transform: uppercase;  */
  }
  .block-header > div:last-child {
    margin: 0 0 0 25px; }

#block-views-country-profiles .view-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 35px;
  border-bottom: 2px solid #eaeaea; }

.view-header {
  padding: 35px;
  border-bottom: 2px solid #dedede; }
  .view-header h1, .view-header h2 {
    text-transform: uppercase; }

#block-views-related-blogs .view-content {
  padding: 35px; }

#block-worldbank-page-title {
  padding: 35px; }

#block-aboutus {
  padding: 35px; }

.block-staticimage img {
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09); }

#block-toolsimage img {
  border-radius: 25px; }

#block-staticmap {
  padding: 30px; }

#block-staticmapcontent {
  padding: 30px; }
  #block-staticmapcontent h2 {
    margin: 0px; }

#block-tooldescriptioncontent,
#block-toolsimage,
#block-howtouseitcontent,
#block-userguidecontent,
#block-aboutuscontent,
#block-databasecontent,
#block-citydatamapblock {
  padding: 30px; }

#block-views-other-tools .view-content {
  padding: 12.5px 0; }

#block-relatedblogs {
  padding: 25px; }

#block-searchresetall {
  padding: 12.5px 30px; }
  #block-searchresetall a {
    width: 100%; }

#block-search-form {
  padding: 12.5px 30px; }

#block-worldbank-branding {
  display: flex;
  flex-direction: row; }
  #block-worldbank-branding a {
    width: 100%;
    text-align: center; }
  #block-worldbank-branding img {
    height: 50px; }

@media (min-width: 768px) {
  #block-worldbank-branding img {
    height: 100px; } }

@media (min-width: 1280px) {
  #block-worldbank-branding img {
    height: 125px; } }

#block-siteheadertext p {
  font-size: 12px;
  margin: 0;
  color: #fff; }

#block-siteheadertext h2, #block-siteheadertext h3, #block-siteheadertext h4, #block-siteheadertext h5 {
  margin: 10px 0 0 0;
  font-weight: 200;
  color: #fff; }

#block-siteheadertext h2 {
  font-size: 16px; }

#block-siteheadertext h3 {
  font-size: 15px; }

#block-siteheadertext h4 {
  font-size: 15px; }

#block-siteheadertext h5 {
  font-size: 14px; }

@media (min-width: 768px) {
  #block-siteheadertext p {
    font-size: 24px;
    margin: 0; }
  #block-siteheadertext h2, #block-siteheadertext h3, #block-siteheadertext h4, #block-siteheadertext h5 {
    margin: 15px 0 10px 0;
    font-weight: 200; }
  #block-siteheadertext h2 {
    font-size: 40px; }
  #block-siteheadertext h3 {
    font-size: 36px; }
  #block-siteheadertext h4 {
    font-size: 32px; }
  #block-siteheadertext h5 {
    font-size: 28px; } }

.portfolio-taxonomy-list {
  display: flex;
  flex-direction: row; }

.pt-item {
  flex: 1;
  font-size: 18px; }
  .pt-item:hover {
    background: #DAECF1; }
  .pt-item a {
    display: block;
    padding: 25px 0;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer; }

section.contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 25px; }
  section.contact h3 {
    text-transform: initial;
    font-size: 25px;
    font-weight: 700; }
    section.contact h3 span {
      color: #333;
      text-transform: lowercase;
      display: inline-block; }
      section.contact h3 span::first-letter {
        text-transform: capitalize; }
        section.contact h3 span a {
          text-transform: initial;
        }

.modal {
  display: none;
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 90%;
  background: #fff;
  padding: 15px 30px 30px 30px !important; }

#contact-form-modal {
  position: relative;
  display: none; }
  #contact-form-modal h3 {
    color: #0d7fa3;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 25px 0; }

.success-message {
  display: block;
  padding: 25px;
  font-size: 24px;
  color: #64A528;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff; }
  .success-message img {
    display: block;
    text-align: center;
    margin: 0 auto; }

.search-api-page-block-form > form.form--inline {
  display: flex;
  align-items: center; }
  .search-api-page-block-form > form.form--inline div.form-item {
    margin: 0;
    flex: 1; }
  .search-api-page-block-form > form.form--inline div.form-actions {
    flex: 1; }
  .search-api-page-block-form > form.form--inline input.form-submit {
    display: block;
    border: none;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0 10px; }
  .search-api-page-block-form > form.form--inline input {
    width: auto; }

/* .field--name-field-title-200 {
  font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: #143753;
    font-size: 20px;
} */

.field--name-field-title-200 {
  font-size: 36px;
  margin: 30px 0;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  font-weight: bold;
  color: #143753;
}
#block-allcountryprofiles .field--name-field-title-200 {
  margin: 30px; 
}


.container .region-featured {
  margin-top: 20px;
}


@media screen and (max-width: 480px) {
.banner-content .container > div{
  margin-top:30px;
}
.jumbo {
  font-size: 36px;
}

}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
  div.text-formatted img {  
    display: block;
    max-width: 100%;
    height: auto;
  }
  .text-formatted img.align-right {
    float:none;
}
.jumbo {
  font-size: 26px;
}
}

