/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.vz-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-gap: 2em;
}
@media screen and (max-width: 768px) {
  .vz-card-list {
    grid-template-columns: 100%;
  }
}

.vz-card {
  background-size: cover;
  background-position: center;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.vz-card__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
}
.vz-loaded .vz-card__container {
  opacity: 1;
}
.vz-card__container::before {
  background-color: var(--paletteColor1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  z-index: -1;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translateY(calc( 100% - (var(--titleSize) * 1px + 2em) ));
}
.vz-card:hover .vz-card__container::before {
  transform: translateY(0);
}

.vz-card__name {
  text-transform: uppercase;
  font-weight: bold;
  top: calc( 100% - var(--titleSize) * 1px );
  position: relative;
  transition: top 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  font-size: 1.5em;
  line-height: 1.25;
  color: #fff;
  padding-right: 3em;
}
@media screen and (max-width: 768px) {
  .vz-card__name {
    font-size: 1em;
    padding-right: 2em;
  }
}
.vz-card:hover .vz-card__name {
  top: 0;
}

[class*=vz-card__data] {
  transition-property: visibility, opacity;
  transition-duration: 0.2s;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
  color: #fff;
}
.vz-card:hover [class*=vz-card__data] {
  opacity: 1;
  transition-delay: 0.2s;
  visibility: visible;
}

.vz-card__data_secondary {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  position: absolute;
  top: 1em;
  right: 1em;
}
.vz-card__data_secondary li {
  margin-bottom: 0;
}
.vz-card__data_secondary > * {
  background-size: contain;
  height: 1.5em;
  width: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .vz-card__data_secondary > * {
    height: 1em;
    width: 1em;
  }
}
.vz-card__data_secondary > * + * {
  margin-left: 0.5em;
}

.vz-projects__heading {
  margin-bottom: 1em !important;
}

.vz-countries-filter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .vz-countries-filter {
    flex-direction: column;
  }
}

.vz-countries-filter__filter {
  display: flex;
}
.vz-countries-filter__filter ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}
.vz-countries-filter__filter ul li {
  margin-bottom: 0;
}
.vz-countries-filter__filter li {
  position: relative;
}
.vz-countries-filter__filter li:hover .vz-sector__label {
  opacity: 1;
  transform: translate(-50%, 0);
}
.vz-countries-filter__filter li.active .vz-sector__icon, .vz-countries-filter__filter li:hover .vz-sector__icon {
  opacity: 0;
}
.vz-countries-filter__filter li.active .vz-sector__icon_hover, .vz-countries-filter__filter li:hover .vz-sector__icon_hover {
  opacity: 1;
}
.vz-countries-filter__filter li + li {
  margin-left: 1em;
}

.vz-sector__icon_hover {
  opacity: 0;
}

.vz-countries-filter__label {
  margin-right: 1em;
  font-size: 1.15em;
}

.vz-sector__label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 30%);
  opacity: 0;
  position: none;
  padding-bottom: 0.5em;
  color: var(--paletteColor4);
  font-size: 0.8em;
  transition: opacity 0.2s, transform 0.2s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

[class*=vz-sector__icon] {
  height: 1.5em;
  width: 1.5em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vz-sector__icon_hover {
  position: absolute;
  left: 0;
  top: 0;
}

.vz-country__data p {
  margin-bottom: 0;
  font-size: 1.111em;
}

.vz-area-teams {
  margin-bottom: 5.5em;
}
.vz-area-teams:last-child {
  margin-bottom: 0;
}
.vz-area-teams ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.vz-area-teams ul li {
  margin-bottom: 0;
}

.vz-area-member::before {
  transform-origin: center bottom;
  background-color: var(--paletteColor1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: transform;
}
.vz-area-member.hover {
  overflow: visible;
  z-index: 100;
}
.vz-area-member:hover::before {
  transform: scaleY(0);
}
.vz-area-member:target:before {
  height: auto;
  margin-top: 0;
}

.vz-team__container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1em;
}
.vz-team__container::before {
  background-color: var(--paletteColor1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  opacity: 1;
  z-index: -1;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transform-origin: center top;
  transform: scaleY(0);
  will-change: transform;
}
.vz-area-member:hover .vz-team__container::before {
  transform: scaleY(1);
}

.vz-team__data {
  display: flex;
  flex-direction: column;
}
.vz-team__data a {
  text-decoration: underline;
  color: #fff;
}

.vz-team__name {
  margin-bottom: 0.5em;
  transform: translateY(calc( var(--titleSize) * -1px - 1.5em ));
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  font-size: 1.2em;
  will-change: transform;
  top: auto;
}
@media screen and (max-width: 768px) {
  .vz-team__name {
    margin-bottom: 1em;
    transform: translateY(calc( var(--titleSize) * -1px - 2em ));
  }
}
.vz-area-member:hover .vz-team__name {
  transform: translateY(0);
  top: auto;
}

.vz-team__role {
  margin-bottom: 0;
  font-weight: bold;
}

.vz-team__area {
  margin-top: 0.75em;
}

@media screen and (max-width: 768px) {
  .vz-insights-carousel {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.vz-insights-carousel article {
  width: 175px;
}
.vz-insights-carousel article + article {
  margin-left: 1em;
}
.vz-insights-carousel a {
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.flickity-prev-next-button {
  height: 70px;
  width: 70px;
  background-color: transparent;
  border-radius: 0;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .flickity-prev-next-button {
    height: 2em;
    width: 2em;
  }
}
.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
.flickity-prev-next-button.next {
  right: -70px;
  background-image: url("img/arrow-right.png");
}
@media screen and (max-width: 768px) {
  .flickity-prev-next-button.next {
    right: -1em;
  }
}
.flickity-prev-next-button.previous {
  left: -70px;
  background-image: url("img/arrow-left.png");
}
@media screen and (max-width: 768px) {
  .flickity-prev-next-button.previous {
    left: -1em;
  }
}

.vz-insights-list__row {
  display: grid;
  grid-template-columns: max(25%, 280px) 1fr;
  padding: 3em 0 1em;
  position: relative;
  z-index: 1;
}
.vz-insights-list__row:nth-child(1)::before {
  background-color: var(--paletteColor1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  opacity: 0.5;
  z-index: -1;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
}
.vz-insights-list__row:not(:first-child) {
  padding-top: 5em;
}
@media screen and (max-width: 768px) {
  .vz-insights-list__row {
    grid-template-columns: 100%;
  }
}

.vz-insights-list__insights {
  padding-left: 0.75em;
}
@media screen and (max-width: 768px) {
  .vz-insights-list__insights {
    padding-left: 0;
  }
}
.vz-insights-list__insights a {
  padding: 1em;
  display: flex;
  align-items: center;
  background-color: var(--paletteColor1);
}
.vz-insights-list__insights img {
  margin-right: 1em;
  max-height: 106px;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .vz-insights-list__insights img {
    max-width: 60px;
    height: auto;
  }
}
.vz-insights-list__insights article {
  margin-bottom: 1em;
}
.vz-insights-list__insights article span:not(.vz-insight-data) {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .vz-insights-list__insights article span:not(.vz-insight-data) {
    font-size: 1em;
  }
}

.vz-insight-data {
  display: none;
}

.filters-active .vz-insights-list__insights article:not(.filtered) {
  display: none;
}

.vz-insight_hidden:not(.filtered) {
  display: none;
}
.open .vz-insight_hidden {
  display: block;
}

.vz-insights-filter {
  display: grid;
  grid-template-columns: max(25%, 280px) repeat(4, 1fr);
  color: var(--paletteColor4);
  position: relative;
  margin-bottom: 0;
  z-index: 2;
}
.vz-insights-filter::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--paletteColor4);
  bottom: -2px;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .vz-insights-filter {
    grid-template-columns: 100%;
    padding-bottom: 1em;
  }
}
.vz-insights-filter p {
  margin-bottom: 0;
}
.vz-insights-filter > p {
  padding: 1em 0;
  font-weight: bold;
}

.vz-clear-filter {
  display: none;
  color: #fff;
  margin-left: 1em;
  font-weight: normal;
  text-decoration: underline;
  cursor: pointer;
}

.vz-insights-filter__filter {
  position: relative;
  padding: 1em 0.75em;
}


@media screen and (max-width: 768px) {
  .vz-insights-filter__filter {
    margin-left: -0.75em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }
  .vz-insights-filter__filter.open {
    z-index: 10;
  }
  .vz-insights-filter__filter.open ul {
    opacity: 1;
    visibility: visible;
    padding-top: 2.5em;
  }
  .vz-insights-filter__filter.open li + li {
    margin-top: 0.2em;
  }
  .vz-insights-filter__filter.open svg {
    transform: rotate(-180deg);
  }
}
@media screen and (min-width: 769px) {
  .vz-insights-filter__filter:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .vz-insights-filter__filter:hover svg {
    transform: rotate(-180deg);
  }
}
.vz-insights-filter__filter.filtering > p {
  font-weight: bold;
}
.vz-insights-filter__filter p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.vz-insights-filter__filter p svg {
  margin-left: 0.5em;
  transition: transform 0.2s ease-in-out;
}
.vz-insights-filter__filter p svg * {
  fill: currentColor;
}
.vz-insights-filter__filter li {
  cursor: pointer;
}
.vz-insights-filter__filter li.filtering {
  font-weight: bold;
}
.vz-insights-filter__filter li:hover {
  text-decoration: underline;
}
.vz-insights-filter__filter ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  padding: 3.5em 0.75em 1em 0.75em;
  font-size: 0.9em;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}
.vz-insights-filter__filter ul li {
  margin-bottom: 0;
}
.vz-insights-filter__filter ul::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--paletteColor3);
  z-index: -1;
}

.vz-insights-list__toggle {
  background-color: var(--paletteColor4);
  border-radius: 50%;
  height: 2.5em;
  width: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  position: relative;
}
.filters-active .vz-insights-list__toggle {
  display: none;
}
.vz-insights-list__toggle:hover svg {
  transform: rotate(90deg);
}
.open .vz-insights-list__toggle:hover svg {
  transform: rotate(180deg);
  transition-duration: 0.4s;
}
.vz-insights-list__toggle:hover .vz-toggle__label_all {
  opacity: 1;
}
.open .vz-insights-list__toggle:hover .vz-toggle__label_all {
  opacity: 0;
}
.open .vz-insights-list__toggle:hover .vz-toggle__label_less {
  opacity: 1;
}
.vz-insights-list__toggle svg {
  position: relative;
  height: 1.8em;
  width: 1.8em;
  transition: transform 0.3s ease;
}
.vz-insights-list__toggle svg * {
  fill: var(--paletteColor3);
}
.vz-insights-list__toggle span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--paletteColor4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.vz-toggle__label_all {
  left: 100%;
  margin-left: 0.5em;
}

.vz-toggle__label_less {
  right: 100%;
  margin-right: 0.5em;
  opacity: 0;
}

.vz-toggle__plus {
  display: block;
}
.open .vz-toggle__plus {
  display: none;
}

.vz-toggle__minus {
  display: none;
}
.open .vz-toggle__minus {
  display: block;
}

.vz-insight__not-found {
  display: none;
}
.vz-nothing-found .vz-insight__not-found {
  display: block;
}

.vz-block-meta + .vz-block-meta {
  margin-top: 1.6666666667em;
}

.vz-block-meta__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.vz-block-meta__list li {
  margin-bottom: 0;
}
.vz-block-meta__list > *:not(li) + * {
  margin-top: 0;
}
.vz-block-meta__list .vz-block-meta__icon {
  margin-top: 5px;
}
.vz-block-meta__list .vz-block-meta__icon + .vz-block-meta__icon {
  margin-left: 0.5em;
}

.vz-block-meta__title {
  text-transform: uppercase;
  font-size: 0.6666666667em;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0 !important;
}

.vz-block-meta__data {
  color: var(--paletteColor4);
  font-size: 0.8333333333em;
  line-height: 1.25;
  margin-bottom: 0;
}
.vz-block-meta__data p {
  margin-bottom: 0;
}
.vz-block-meta__data a {
  text-decoration: underline;
  font-weight: bold;
}

.vz-block-meta__icon {
  height: 1.3888888889em;
  width: 1.3888888889em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.vz-block-meta__icon:hover .vz-block-meta__label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.vz-block-meta__label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 30%);
  opacity: 0;
  position: none;
  padding-bottom: 0.5em;
  color: var(--paletteColor4);
  font-size: 0.8em;
  transition: opacity 0.2s, transform 0.2s ease-in-out;
}

.vz-header-utilities {
  position: absolute;
  right: 1em;
  top: 1em;
  display: flex;
  align-items: center;
  z-index: 60;
}
@media screen and (max-width: 768px) {
  .vz-header-utilities {
    display: none;
  }
}

.vz-header__search {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  position: relative;
  margin-left: 1em;
}
.vz-header__search:hover .search-form {
  display: block;
}
.vz-header__search .search-form {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 300px;
  display: none;
}
.vz-header__search input[type=search] {
  border-width: 2px;
  border-radius: 40em;
  border-color: var(--paletteColor1);
  background-color: var(--color);
  color: var(--paletteColor1);
}
.vz-header__search input[type=search]:focus {
  background-color: var(--color);
  color: var(--paletteColor1);
}
.vz-header__search .search-submit svg {
  display: none;
}

.vz-header-search__trigger {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.vz-header-search__trigger svg {
  float: left;
  background-color: var(--color);
  border-radius: 40em;
}
.vz-header__search:hover .vz-header-search__trigger svg {
  background-color: var(--paletteColor1);
}
.vz-header__search:hover .vz-header-search__trigger svg * {
  stroke: var(--color);
}

.vz-header__home svg {
  float: left;
  background-color: var(--color);
  border-radius: 40em;
}
.vz-header__home:hover svg {
  background-color: var(--paletteColor1);
}
.vz-header__home:hover svg * {
  stroke: var(--color);
  fill: var(--color);
}

.vz-header__lang {
  margin-left: 1em;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.vz-header__lang ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.vz-header__lang ul li {
  margin-bottom: 0;
}

.vz-languages__label {
  margin-bottom: 0;
  cursor: pointer;
}
.vz-languages__label:hover svg {
  background-color: var(--paletteColor1);
}
.vz-languages__label:hover svg * {
  stroke: var(--color);
}
.vz-languages__label svg {
  float: left;
  background-color: var(--color);
  border-radius: 40em;
}

.vz-languages__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.8em;
  display: none;
}
.vz-languages__list li {
  margin-bottom: 0;
}
.vz-header__lang:hover .vz-languages__list {
  display: flex;
}
.vz-languages__list li {
  margin: 0 0.25em;
}
.vz-languages__list .current-lang a {
  background-color: var(--paletteColor1);
  color: var(--color);
}
.vz-languages__list a {
  padding: 0.723em 1.2em;
  border-radius: 40em;
  background-color: var(--color);
  color: var(--paletteColor1);
}
.vz-languages__list a:hover {
  background-color: var(--paletteColor1);
  color: var(--color);
}

@media screen and (max-width: 768px) {
  .sfm-toggle-hover .sfm-sidebar-close {
    display: block !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sfm-sidebar {
    transform: translate3d(-100%, 0, 0) !important;
  }
  #sfm-sidebar .sfm-logo {
    margin-top: 60px !important;
  }
}
#sfm-sidebar .sfm-menu li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 60%;
  left: 60%;
  transform: translateX(-60%);
  background-size: 100%;
  width: 115%;
  height: 2em;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #sfm-sidebar .sfm-menu li[class*=menu-item] > a {
    padding-left: 15% !important;
  }
}
#sfm-sidebar .sfm-menu li > a {
  font-size: 40px !important;
  color: var(--paletteColor1);
  font-weight: 800 !important;
  font-family: "Overpass", Sans-Serif !important;
  line-height: 40px !important;
  padding: 20px 15% !important;
}
#sfm-sidebar .sfm-menu li > a span {
  text-transform: none !important;
}
#sfm-sidebar .sfm-menu li > a::before, #sfm-sidebar .sfm-menu li > a::after {
  display: none !important;
}
#sfm-sidebar .sfm-menu li > a:hover span::after {
  opacity: 1;
}
#sfm-sidebar .sfm-menu li:nth-child(1) span::after, #sfm-sidebar .sfm-menu li:nth-child(5) span::after {
  background-image: url(img/hover1.png) !important;
}
#sfm-sidebar .sfm-menu li:nth-child(2) span::after, #sfm-sidebar .sfm-menu li:nth-child(4) span::after {
  background-image: url(img/hover2.png) !important;
}
#sfm-sidebar .sfm-menu li:nth-child(3) span::after {
  background-image: url(img/hover3.png) !important;
}

.sfm-va-middle {
  display: flex !important;
  flex-direction: column-reverse;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sfm-va-middle {
    margin-top: 3em !important;
  }
}

.sfm-search-form {
  margin-top: 2em !important;
  margin-left: 10% !important;
  margin-right: 10% !important;
  width: auto !important;
  display: none;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sfm-search-form {
    display: block;
    margin-left: 15% !important;
    margin-right: 15% !important;
  }
}

.sfm-search-form input[type=text] {
  color: var(--paletteColor1) !important;
  text-align: left !important;
  border-bottom: 1px solid var(--paletteColor1) !important;
  padding: 0 0 0.5em !important;
  border-radius: 0 !important;
}
.sfm-search-form span {
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  color: var(--paletteColor1) !important;
}

.sfm-copy {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sfm-copy {
    display: block !important;
    padding-left: 15%;
    padding-right: 15%;
  }
}

.vz-panel-menu {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.vz-panel-menu li {
  margin-bottom: 0;
}
.vz-panel-menu a {
  color: var(--paletteColor1);
  padding: 0 !important;
}
.vz-panel-menu li + li {
  margin-left: 1em;
}

.vz-languages-menu {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 2em !important;
  display: flex;
  flex-wrap: wrap;
}
.vz-languages-menu li {
  margin-bottom: 0;
}
.vz-languages-menu a {
  color: var(--paletteColor1);
  padding: 0;
}
.vz-languages-menu li {
  margin-right: 1em;
}
.vz-languages-menu li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #sfm-sidebar,
.sfm-sidebar-bg,
#sfm-sidebar .sfm-nav,
#sfm-sidebar .sfm-widget,
#sfm-sidebar .sfm-logo,
#sfm-sidebar .sfm-social,
.sfm-style-toolbar .sfm-copy {
    width: 100% !important;
  }
}
.bg-gradient-tr .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(35, 0, 80, var(--opacity, 0)) 0%, rgba(35, 0, 80, 0.9) 70%);
}

.scrollFade.videohome::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(35, 0, 80, var(--opacity, 0.2));
  pointer-events: none;
}
.scrollFade:not(.bg-gradient-tr).grids-section .grids-s-w_i::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: calc( 50% - 50vw );
  bottom: 0;
  left: calc( 50% - 50vw );
  background: rgba(35, 0, 80, var(--opacity, 0.2));
  pointer-events: none;
}

.search .ct-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: var(--block-wide-max-width);
  width: var(--container-width) !important;
  padding-right: 5%;
  padding-left: 5%;
}
.search .ct-container > section:first-child {
  grid-column: 3/span 6;
}

body {
  padding-left: 70px;
}

@media screen and (max-width: 768px) {
  body {
    padding-left: 0;
  }
}
h6 {
  margin-top: 0px !important;
}

h2 {
  margin-bottom: 50px !important;
}

.sfm-rollback .sfm-navicon-button.sf_label_default {
  height: 100%;
}

.sfm-rollback .sfm-navicon {
  margin: -1px 25%;
  width: 50%;
}

.logo-footer {
  width: 100%;
}

.column1-footer {
  grid-template-columns: 30% 1fr;
  padding: 2% 20px;
  max-width: 340px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 30px;
}

.column2-footer {
  grid-template-columns: 45% 1fr;
  padding: 2% 20px;
  max-width: 380px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 50px;
}

.ct-footer {
  position: relative;
  z-index: 10;
}

.videohome {
  background-color: #230050;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -15;
}

.videohome iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
}

.text-slider p {
  font-size: 50px;
  line-height: 60px;
  color: #F8F9EA;
  margin-bottom: 10px;
}

.text-slider h1 {
  font-size: 150px;
  line-height: 150px;
  margin-top: 0px;
  color: #F8F9EA;
  margin-bottom: 0px;
}

.imageBox {
  position: relative;
  float: left;
}

.imageBox .hoverImg {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
}

.imageBox:hover .hoverImg {
  visibility: visible;
}

.imageInn {
  left: 0;
  top: 0;
}

.gradient-box {
  margin-bottom: 0px;
}

.wp-block-button {
  margin-top: 20px;
  margin-bottom: 20px !important;
}

.fade-in {
  -webkit-animation: fade-in 2s ease-in 1s both;
  animation: fade-in 2s ease-in 1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-4-2 13:9:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg-trasparente {
  background-color: rgba(31, 5, 77, 0.95);
}

.bg-gradient {
  background: #1e2dbe;
  background: linear-gradient(180deg, rgba(30, 45, 190, 0) 0%, rgba(35, 0, 80, 0.9) 40%, #230050 100%);
}


.block-nospace {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}


.hotspots-image-container, .leaflet-container {
  background: transparent !important;
}

.slick-dots li button:before {
  font-size: 16px;
}

.slick-dots li.slick-active button:before {
  color: #F0F014 !important;
}

.wp-block-getwid-media-text-slider.has-dots-inside .slick-dots {
  bottom: 50px;
}

.box-color {
  background-color: #1E28BE;
  height: 300px;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

.box-color h4 {
  color: #F8F9EA;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  padding-right: 40px;
  font-size: clamp(25px, 1.5vw, 30px);
  line-height: 1.25em;
}

.box-color:hover {
  background-color: #05D2D2;
}

.box-color:hover h4 {
  color: #1E28BE;
}

.circle-pen {
  background-blend-mode: soft-light;
  background-color: #23005052;
}

.side-column p {
  font-size: 12px;
  margin-bottom: 0px;
  text-transform: uppercase;
  line-height: 14px;
}

.side-column h6 {
  font-size: 15px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.side-column2 p {
  font-size: 12px;
  margin-bottom: 0px;
  text-transform: uppercase;
  line-height: 14px;
}

.side-column2 h6 {
  font-size: 15px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.side-column3 p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 14px;
	margin-bottom: 10px;
}

.side-column3 h6 {
  font-size: 15px;
	line-height: 1.6em;
  margin-top: 0px;
  margin-bottom: 20px;
}

.side-column {
  border-left: 1px solid #F0EF52;
}

::marker {
  color: #05D2D2;
}

ul {
  padding-left: 20px;
}

i.fab.fa-envira {
  transform: rotate(180deg);
  padding-left: 5px;
}

table, th, td {
  border-width: var(--table-border-width, 1px);
  border-style: var(--table-border-style, solid);
  border-color: transparent;
}

th, td {
  padding: var(--table-padding, 0.2em 1em);
}

h1.title-shadow {
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.wp-block-button__link:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  background-image: url(img/arrow-button.svg);
  background-size: contain;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bg-gradient:after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 600px;
  top: -600px;
  z-index: -1;
}

.bg-gradient .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(30, 45, 190, 0) 0%, rgba(35, 0, 80, 0.8) 50%, #230050 100%);
}

.bg-gradient {
  background: transparent;
}

.bg-image-fixed .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  position: fixed;
}

.bg-color .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
}

.gradient-box .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background-color: rgba(35, 0, 80, 0.9);
}

/*different align*/
/*home-global*/
.vz-indent-fra p {
  line-height: 1em;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.vz-indent-fra p:nth-child(1) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-fra p:nth-child(2) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
	margin-bottom: 20px !important;
}

.vz-indent-fra p:nth-child(3) {
  text-indent: -1em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
	    margin-top: 10px !important;
}

.vz-indent-fra p:nth-child(4) {
  text-indent: -1.5em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
	margin-top: -10px !important;
}

.vz-indent-es p {
  line-height: 1em;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.vz-indent-es p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-es p:nth-child(2) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-es p:nth-child(3) {
  text-indent: -1em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
}

.vz-indent-es p:nth-child(4) {
  text-indent: -1.5em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
}

.vz-indent p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.vz-indent p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent p:nth-child(2) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent p:nth-child(3) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
}

.vz-indent p:nth-child(4) {
  text-indent: -1.5em;
  font-weight: 800;
  font-size: clamp(55px, 7.8vw, 150px);
  text-transform: uppercase;
  color: #F8F9EB;
}

.vz-indent p:nth-child(5) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(40px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod2 p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod2 p:nth-child(1) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2 p:nth-child(2) {
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2 p:nth-child(3) {
  text-indent: 2em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #F8F9EB;
}

.vz-indent-mod2 p:nth-child(4) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-fr p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod2-fr p:nth-child(1) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-fr p:nth-child(2) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-fr p:nth-child(3) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #F8F9EB;
}

.vz-indent-mod2-fr p:nth-child(4) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-es p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod2-es p:nth-child(1) {
  text-indent: 2em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-es p:nth-child(2) {
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod2-es p:nth-child(3) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #F8F9EB;
}

.vz-indent-mod2-es p:nth-child(4) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #05D2D2;
}

.vz-indent-mod3 p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod3 p:nth-child(1) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3 p:nth-child(2) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3 p:nth-child(3) {
  text-indent: 1.5em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
}

.vz-indent-mod3-es p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod3-es p:nth-child(1) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3-es p:nth-child(2) {
  text-indent: -3em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3-es p:nth-child(3) {
  text-indent: 0em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
}

.vz-indent-mod3-fr p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod3-fr p:nth-child(1) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3-fr p:nth-child(2) {
  text-indent: -5em;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-mod3-fr p:nth-child(3) {
  text-indent: 0em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
}

.vz-indent-mod4 p {
  line-height: 1.3;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod4 p:nth-child(1) {
  text-indent: -3em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod4 p:nth-child(2) {
  text-indent: 2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod4 p:nth-child(3) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod4 p:nth-child(4) {
  text-indent: 2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod4 p:nth-child(5) {
  text-indent: -2em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-mod4 p:nth-child(6) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod5 p {
  line-height: 1.3;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mod5 p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod5 p:nth-child(2) {
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mod5 p:nth-child(3) {
  text-indent: -0.2em;
  font-weight: 800;
  font-size: clamp(50px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-mod5 p:nth-child(4) {
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 30px);
  color: #05D2D2;
}

/*ethiopia*/
.vz-indent-ethiopia p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-ethiopia p:nth-child(1) {
  text-indent: -0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(2) {
  text-indent: -0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(3) {
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(4) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(5) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(6) {
  text-indent: -1em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-ethiopia p:nth-child(7) {
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/*lao*/
.vz-indent-lao p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-lao p:nth-child(1) {
  text-indent: 0;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-lao p:nth-child(2) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-lao p:nth-child(3) {
  text-indent: 1.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-lao p:nth-child(4) {
  text-indent: 0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-lao p:nth-child(5) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/*vietnam*/
.vz-indent-vtm p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-vtm p:nth-child(1) {
  text-indent: 0;
  font-weight: 800;
  font-size: clamp(60px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-vtm p:nth-child(2) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-vtm p:nth-child(3) {
  text-indent: -1.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-vtm p:nth-child(4) {
  text-indent: 0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-vtm p:nth-child(5) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/*madagascar*/
.vz-indent-mad p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-mad p:nth-child(1) {
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-mad p:nth-child(2) {
  text-indent: 2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mad p:nth-child(3) {
  text-indent: -0.5em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-mad p:nth-child(4) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mad p:nth-child(5) {
  text-indent: 2.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-mad p:nth-child(6) {
  text-indent: 0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/*covid*/
.vz-indent-covid p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-covid p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid p:nth-child(2) {
  text-indent: -1em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-covid p:nth-child(3) {
  text-indent: 0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid p:nth-child(4) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid p:nth-child(5) {
  text-indent: 1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid p:nth-child(6) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/**/
.vz-indent-covid2 p {
  line-height: 1.1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-covid2 p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(2) {
  text-indent: 0.5em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(3) {
  text-indent: -4em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(4) {
  text-indent: -2em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(5) {
  text-indent: -3em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(6) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(70px, 4.6vw, 90px);
  color: #05D2D2;
}

.vz-indent-covid2 p:nth-child(7) {
  text-indent: -1em;
  font-weight: 300;
  font-size: clamp(25px, 1.5vw, 30px);
  color: #05D2D2;
}

/*map*/
h2.hotspot-title {
  display: none;
}

.leaflet-rrose-tip-container {
  display: none;
}

.leaflet-rrose-content-wrapper {
  padding: 0px;
}

.leaflet-rrose-content {
  width: 312px;
  margin: 0px !important;
}

.leaflet-rrose-content p {
  margin: 5px !important;
}

.leaflet-tooltip, .leaflet-rrose-content-wrapper {
  background: #ffffff00 !important;
  border-color: #ffffff0 !important;
}

.vz-popup-latin {
  background-image: url(img/latinamerica.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-popup-ethiopia {
  background-image: url(img/et.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-popup-mad {
  background-image: url(img/mag.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-popup-myn {
  background-image: url(img/myan.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-popup-lao {
  background-image: url(img/laos.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-popup-vtm {
  background-image: url(img/vitnam.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.vz-map {
  grid-template-columns: 10% 1fr;
  padding: 2% 15px;
  max-width: 768px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 10px;
  background-color: #1E28BE;
}

.vz-map1 {
  grid-template-columns: 30% 1fr;
  padding: 2% 15px;
  max-width: 768px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 10px;
  background-color: #1E28BE;
}

.vz-map2 {
  grid-template-columns: 45% 1fr;
  padding: 2% 15px;
  max-width: 768px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 5px;
  background-color: #1E28BE;
}

.vz-map3 {
  padding: 2% 15px;
  max-width: 768px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 5px;
  background-color: #1E28BE;
}

.vz-number-map h5 {
  font-size: 50px;
  color: #F8F9EA;
  line-height: 1;
  margin: 0px;
  padding: 0px;
}

.vz-text-map p {
  font-size: 15px;
  color: #F8F9EA !important;
}

.button-country {
  grid-template-columns: 10% 1fr;
  padding: 0;
  max-width: 200px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 15px;
}

.border-column {
  border-left: 1px solid #F0EF52;
}

.title-home {
  font-size: clamp(60px, 7.8vw, 150px);
  line-height: 1em;
  color: #f8f9ea;
  text-align: center;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.title-country {
  font-size: clamp(56px, 6.5vw, 100px);
  line-height: 1em;
  color: #f8f9ea;
  text-align: left;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.title-story {
  font-size: clamp(45px, 3.1vw, 60px);
  line-height: 1em;
  color: #f8f9ea;
  text-align: left;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}


.mission-global p {
  font-size: 30px;
  line-height: 40px;
  color: #05D2D2;
}

.gradient-box-blu .grids-s-w_i:before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background-color: rgba(30, 45, 190, 0.5);
}

.uagb-tm__author-name {
  text-transform: uppercase !important;
  font-style: normal !important;
}

.uagb-tm__company {
  text-transform: uppercase !important;
  font-style: normal !important;
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-next {
  right: 60px;
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-prev {
  left: 60px;
}

.wp-block-getwid-media-text-slider-slide-content__content {
  opacity: 1 !important;
}

.YouTubePopUp-Close:before {
  font-weight: bolder !important;
}

/*update*/
.box-color {
  height: 250px;
  padding-left: 20px;
  padding-right: 20px;
}


@media screen and (max-width: 900px) {
  body {
    padding-left: 0px !important;
  }

  #sfm-mob-navbar img {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-getwid-media-text-slider-slide__content {
    padding-left: 10vw !important;
    padding-bottom: 120px !important;
  }

  .box-color {
    height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .box-color h4 {
    top: 33%;
  }

  .box-color {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mission-global p {
    font-size: 20px;
    line-height: 30px;
    color: #05D2D2;
  }

  .vz-card-list {
    display: grid;
    grid-template-columns: none;
    grid-gap: 2em;
  }

  h2 {
    font-size: 40px;
    line-height: 1em;
  }

  h1 {
    line-height: 1em;
  }

  .vz-indent-ethiopia .grids-s-w_i:before {
    position: absolute;
    left: calc(50% - 50vw) !important;
    right: calc(50% - 50vw) !important;
    margin: 0px !important;
  }

  p, ul, a {
    font-size: 16px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .tablet-country {
    grid-column-start: 2 !important;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .superfly-on #sfm-sidebar {
    display: none !important;
  }
}
.button-insight {
  display: flex;
  flex-direction: row-reverse !important;
}

h2.entry-title {
  margin-bottom: 10px !important;
}

.sfm-logo {
  margin-top: 50px;
  margin-bottom: 50px;
}

#sfm-sidebar .sfm-nav {
  display: grid !important;
}

#sfm-sidebar {
  transform: translate3d(-100vw, 0, 0) !important;
}

:focus {
  outline: 0 !important;
}

h1.page-title {
  margin-top: 6vw;
}

.entry-excerpt {
  font-size: 18px;
  line-height: 25px;
}

[data-prefix=search] [data-cards=simple] .entry-card {
  border: none;
}

h2.entry-title {
  text-transform: none;
}

.search-no-results .ct-container > section {
  height: 100vh;
}

.entry-header .page-description {
  color: #05D2D2;
}

.impact-style {
  color: #fff;
  font-size: 70px;
  font-weight: bold;
  font-family: overpass;
  background-image: url(img/impact-png.png);
  background-position: center;
  padding-top: 30px;
  padding-bottom: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}

.circle {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.circle::after {
  background-image: url(img/circle-yellow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  display: inline-block;
  width: 140%;
  height: 140%;
  position: absolute;
  left: -20%;
  top: -20%;
}

[class*=baffo] {
  position: relative;
}

[class*=baffo]::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1em;
  position: absolute;
  left: 0;
  bottom: -0.1em;
}

.baffo1::after {
  bottom: 0.05em;
  background-image: url(img/baffo1.png);
}

.baffo2::after {
  background-image: url(img/baffo2.png);
}

.baffo4::after {
  width: 160%;
  height: 2em;
  left: -4vw;
  bottom: -2.5vw;
  background-image: url(img/baffo4.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .baffo4::after {
    width: 160%;
    height: 2em;
    left: -4vw;
    bottom: -4vw !important;
    background-repeat: no-repeat;
  }
	
	.vz-indent-story p:nth-child(3) {
 	text-indent: 1.5em;
  font-weight: 800;
 font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
	text-transform: uppercase;
}
	
}


.Video-PopUp-Content {
  background-color: rgba(35, 0, 90, 0.7) !important;
}

.YouTubePopUp-Close {
  top: -40px;
  right: 0 !important;
  left: unset;
}

div:not(.is-style-outline) > .wp-block-button__link:hover {
  color: #230050 !important;
  background-color: #F8F9EA !important;
}

h3 {
  font-size: clamp(30px, 2vw, 40px);
  line-height: 1.25em;
}

h4 {
  font-size: clamp(20px, 1.5vw, 30px);
  line-height: 1.25em;
}

h5 {
  font-size: clamp(18px, 0.8vw, 20px);
  line-height: 1.25em;
}

p.intro-global {
  font-size: clamp(18px, 0.8vw, 20px);
  line-height: 1.5em;
  color: #05D2D2;
}

.sfm-label-metro .sfm-navicon, .sfm-label-metro .sfm-navicon:after, .sfm-label-metro .sfm-navicon:before {
  border-radius: 10px !important;
}

.sfm-navicon, .sfm-navicon:after, .sfm-navicon:before, .sfm-sidebar-close:before, .sfm-sidebar-close:after {
  border-radius: 10px !important;
}

.sfm-logo {
  margin-left: -22px;
}

.sfm-sidebar-close:before, .sfm-sidebar-close:after {
  background: #1F2DB7;
  width: 30px;
}

.leaflet-rrose {
  margin-bottom: 20px;
  position: absolute;
  text-align: center;
  margin-top: 50px;
}

.leaflet-container a {
  text-decoration: unset;
  background: unset;
}

.sfm-body-pushed #sfm-overlay, body[class*=sfm-view-pushed] #sfm-overlay {
  cursor: none;
}

#sfm-overlay {
  background: #230050;
}

.slick-next:before, .slick-prev:before {
  font-family: unset;
  font-size: unset;
  line-height: 1;
  opacity: 1;
  color: #fff;
}

.slick-next:before {
  content: "";
  display: block;
  background-image: url(img/next.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 50px;
  padding: 30px;
}

.slick-prev:before {
  content: "";
  display: block;
  background-image: url(img/pre.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 50px;
  padding: 30px;
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-next {
  right: 100px;
}

.ct-header .ct-container-fluid {
  position: absolute;
  top: 0px;
  left: 0px;
}

.search-results .entry-card .entry-title a:hover {
  color: #F8F9EB;
}

.button-back:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-image: url(img/arrow-yellow-left.svg);
  background-size: contain;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.button-back {
  text-decoration: underline;
  font-size: 15px;
  line-height: 1em;
}

html:lang(es-ES) #sfm-sidebar .sfm-menu li > a {
	font-size: 35px !important;
}

html:lang(fr-FR) #sfm-sidebar .sfm-menu li > a {
	font-size: 35px !important;
}

html:lang(fr-FR) #sfm-sidebar .sfm-menu li:nth-child(2) span::after {
	    top: 80%;
	background-size: 80%;
}

html:lang(fr-FR) #sfm-sidebar .sfm-menu li:nth-child(1) span::after, #sfm-sidebar .sfm-menu li:nth-child(4) span::after {
	background-size: 80%;
}

.vz-insights-carousel {
	min-height: 250px !important;
}

.margin-top-neg {
	margin-top: -50px !important;
}

/*stories*/
.vz-indent-story p {
  line-height: 1;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.vz-indent-story p:nth-child(1) {
  font-weight: 800;
 font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
	text-transform: uppercase;
	padding-top: 40px !important;
}

.vz-indent-story p:nth-child(2) {
 	text-indent: 3em;
  font-weight: 800;
 font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
	text-transform: uppercase;
	padding-top: 40px;
}

.body-story :last-child {
  margin-bottom: 0;
}

.body-story p {
	color: #1e2dbe;
}

.body-story h3 {
	color: #05D2D2;
}


p.text-short {
    line-height: 1.4em;
    padding-top: 50px !important;
    max-width: 50%;
}


.vz-indent-story3 p {
  line-height: 1;
  margin-bottom: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-story3 p:nth-child(1) {
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.vz-indent-story3 p:nth-child(2) {
  text-indent: 1em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
}

.vz-indent-story4 p {
	 line-height: 1;
  margin-bottom: 0px !important;
  padding: 0px !important;
  text-align: left;
  font-family: Overpass, Sans-Serif;
}

.vz-indent-story4 p:nth-child(1) {
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
	margin: 0px 30px;
}


.vz-indent-story4 p:nth-child(2) {
  text-indent: -2em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
	margin: 0px 30px;
}

.vz-indent-story4 p:nth-child(3) {
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 50px);
  color: #F8F9EB;
}

.sticky-section {
	z-index: 1;
	position: relative;
	margin-left: calc( 50% - 50vw ) !important;
	margin-right: calc( 50% - 50vw ) !important;
	max-width: none !important;
	width: auto !important;
	margin-bottom: 0 !important;
}

.sticky-image {
	position: sticky;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	display: block;
	margin: 0 !important;
}

.sticky-image > img {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background-size: cover;
	background-position: center;
}

.scrolling {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 0 0 100vh;
}

.scrolling > .wp-block-group__inner-container {
	max-width: 85em;
	padding: 3em;
	margin-left: auto;
	margin-right: auto;
}

.scrolling-pin_top {
	position: sticky;
	min-height: 100vh;
	padding-bottom: 0;
	top: 0;
}

.sticky-image_fixed {
	background-attachment: fixed;
}

.scrolling.scrolling_left {
	margin-left: 10%;
}

.scrolling.scrolling_right {
	margin-right: 5%;
}

.scrolling_inner {
    background-color: #000000a6;
    padding: 50px;
}

.text-space {
	padding-top: 75vh;
	padding-bottom: 75vh;
	font-size: 24px;
	line-height: 1.6em;
}

.text-space2 {
	padding-bottom: 75vh;
	font-size: 24px;
	line-height: 1.6em;
	margin: 0px;
}

.text-space3 {
	padding-bottom: 35vh;
	margin: 0px;
}

.text-stories {
	font-size: 24px;
	line-height: 1.6em;
	padding-top: 40px;
	padding-bottom: 40px;
	margin: 0px;
}

.text-stories p {
width: 100% !important;
}

.text-stories h3 {
width: 100% !important;
}

li.list-stories {
    font-size: clamp(16px, 1vw, 24px);
	line-height: 1.6;}

.slick-prev {
    left: -65px;
}

.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 43%;
    display: block;
    width: 15px;
    height: 15px;
	padding: 0;}

ul.slick-dots {
    transform: translateY(20px);
}

.slick-dots li button:before {
	color: #fff;
}

h6.stories-title {
     font-size: clamp(30px, 2vw, 40px);
}

.stories_grid .uagb-post__inner-wrap {
    background: transparent !important;
}

.stories_grid article:nth-child(6) {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
	
	.top-slider .grids-s-w_i {
    display: flex;
    justify-content: flex-end;
}
	
	
	.text-stories {
	font-size: 24px;
	line-height: 1em;
	padding-top: 0px;
	padding-bottom: 40px;
	margin: 0px;
}
	
		.vz-indent-story4 p:nth-child(1) {
		margin: 0px;
	}
	
	
	.vz-indent-story4 p:nth-child(2) {
  text-indent: 0em;
  font-weight: 800;
  font-size: clamp(40px, 3.6vw, 70px);
  color: #05D2D2;
		margin: 0px;
}

	.scrolling > .wp-block-group__inner-container {
	max-width: 100%;
	padding: 0em;
	margin-left: auto;
	margin-right: auto;
}
	
	.text-space {
	padding-top: 75vh;
	padding-bottom: 75vh;
	line-height: 1em;
}

.text-space2 {
	padding-bottom: 75vh;
	line-height: 1em;
	margin: 0px;
}

	[class*="_inner-container"]>*:not(.alignfull) {
    width: min(calc(100% - 20px), var(--container-width));
}
	
	.scrolling.scrolling_right {
	margin-right: 20px;
}

	.text-stories {
    width: 100% !important;
}	
}