@charset "UTF-8";
.akm-aspect-sixteen-nine {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.akm-aspect-sixteen-nine::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 56.25%;
}

.akm-aspect-sixteen-nine > img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: translateY(-50%);
}

.akm-aspect-square {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.akm-aspect-square::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}

.akm-aspect-square > img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: translateY(-50%);
}

/**
 * Adds a mixin for browser prefixed keyframes
 * @param  {string} 	$animationName Name of the animation
 * @return {[type]} 	Browser prefixed properties
 */
/**
* Adds a mixin for browser prefixed animations
* @param {string}	$str animation description	
* @return {[type]}	Browser prefixed properties
* 
* Example: @include animation('pulse 2s infinite');
*/
/* fade in magic */
.fade-in {
  opacity: 0 !important;
  transform: translate3d(0, 4vw, 0);
}

.fade-in.alive {
  opacity: 1 !important;
  transition: 800ms cubic-bezier(0, 0, 0.21, 1);
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.fade-out .fade-in {
  opacity: 0 !important;
  transform: translate3d(0, 4vw, 0);
}

.fade-out .fade-in.alive {
  opacity: 0 !important;
  transform: translate3d(0, 4vw, 0);
}

.fade-out .fade-in.alive.hero-image {
  transition-delay: 0.1s !important;
}

.fade-out .fade-in.alive.newspost-1 {
  transition-delay: 0.1s !important;
}

.fade-out .fade-in.alive.newspost-2 {
  transition-delay: 0.1s !important;
}

.fade-out .fade-in.alive.post-meta {
  transition-delay: 0.1s !important;
}

.fade-out .fade-in.alive.post-meta.share-links {
  transition-delay: 0.1s !important;
}

.fade-out .wrapper-hero.fade-in.alive,
.fade-out .search-state.fade-in.alive {
  opacity: 0 !important;
  transform: translate3d(0, -2.5vw, 0);
}

/* animation messabout */
.fade-in.alive.hero-image {
  transition-delay: 0.2s;
}

.wrapper-featurednews .fade-in.alive.newspost-1 {
  transition-delay: 0.4s;
}

.wrapper-featurednews .fade-in.alive.newspost-2 {
  transition-delay: 0.6s;
}

.fade-in.alive.newspost-1 {
  transition-delay: 0.4s;
}

.fade-in.alive.newspost-2 {
  transition-delay: 0.6s;
}

.wrapper-article .fade-in.alive.post-meta {
  transition-delay: 0.4s;
}

.wrapper-article .fade-in.alive.post-meta.share-links {
  transition-delay: 0.6s;
}

.search-state.fade-in {
  opacity: 0;
  transform: translate3d(0, -2.5vw, 0);
}

.search-state.fade-in.alive {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInToInitial {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: initial;
  }
}

@-moz-keyframes fadeInToInitial {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: initial;
  }
}

@-o-keyframes fadeInToInitial {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: initial;
  }
}

@keyframes fadeInToInitial {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: initial;
  }
}

@-webkit-keyframes fadeOutToNone {
  0% {
    opacity: 1;
    display: initial;
  }
  99% {
    display: initial;
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@-moz-keyframes fadeOutToNone {
  0% {
    opacity: 1;
    display: initial;
  }
  99% {
    display: initial;
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@-o-keyframes fadeOutToNone {
  0% {
    opacity: 1;
    display: initial;
  }
  99% {
    display: initial;
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes fadeOutToNone {
  0% {
    opacity: 1;
    display: initial;
  }
  99% {
    display: initial;
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@-webkit-keyframes textindicator {
  from,
  to {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #26b5e3;
  }
}

@-moz-keyframes textindicator {
  from,
  to {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #26b5e3;
  }
}

@-o-keyframes textindicator {
  from,
  to {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #26b5e3;
  }
}

@keyframes textindicator {
  from,
  to {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #26b5e3;
  }
}

.akm-grid-5col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.akm-grid-5col > * {
  flex-basis: calc((100% - 4 * 4 * 8px) / 5);
  max-width: calc((100% - 4 * 4 * 8px) / 5);
}

.akm-grid-5col.akm-tight > * {
  flex-basis: 20%;
  max-width: 20%;
}

.akm-grid-5col.akm-wrapping-grid > * {
  flex-basis: calc((100% - 4 * 4 * 8px) / 5);
  max-width: calc((100% - 4 * 4 * 8px) / 5);
}

.akm-grid-5col.akm-wrapping-grid > *:nth-child(5n + 1) {
  margin-left: 0;
}

.akm-grid-4col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.akm-grid-4col > * {
  position: relative;
  flex-basis: calc((100% - 3 * 8 * 8px) / 4);
  max-width: calc((100% - 3 * 8 * 8px) / 4);
}

.akm-grid-4col .akm-gridcolumn-75 {
  flex-basis: calc(75% - 2 * 8px);
  max-width: calc(75% - 2 * 8px);
}

.akm-grid-4col.akm-tight > * {
  flex-basis: 25%;
  max-width: 25%;
}

.akm-grid-4col.akm-wrapping-grid {
  flex-basis: calc((100% - 3 * 4 * 8px) / 4);
  max-width: calc((100% - 3 * 4 * 8px) / 4);
}

.akm-grid-4col.akm-wrapping-grid > *:nth-child(4n + 1) {
  margin-left: 0;
}

.akm-grid-3col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.akm-grid-3col > * {
  flex-basis: calc((100% - 2 * 4 * 8px) / 3);
  max-width: calc((100% - 2 * 4 * 8px) / 3);
}

.akm-grid-3col.akm-tight > * {
  flex-basis: calc(100% / 3);
  max-width: calc(100% / 3);
}

.akm-grid-3col.akm-wrapping-grid > * {
  flex-basis: calc((100% - 2 * 4 * 8px) / 3);
  max-width: calc((100% - 2 * 4 * 8px) / 3);
}

.akm-grid-3col.akm-wrapping-grid > *:nth-child(3n + 1) {
  margin-left: 0;
}

.akm-grid-2col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.akm-grid-2col > * {
  flex-basis: calc((100% - 2 * 2 * 8px) / 2);
  max-width: calc((100% - 2 * 2 * 8px) / 2);
}

.akm-grid-2col.akm-tight > * {
  flex-basis: 50%;
  max-width: 50%;
}

.akm-grid-2col.akm-wrapping-grid > *:nth-child(2n + 1) {
  margin-left: 0;
}

.akm-grid-reverse {
  flex-direction: row-reverse;
}

.akm-wrapping-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.akm-wrapping-grid::after {
  content: '';
  flex: 1;
}

.akm-wrapping-grid > * {
  flex-grow: 0;
  margin-bottom: 32px;
  margin-left: 32px;
}

.akm-wrapping-grid.akm-tight > * {
  margin: 0;
}

.akm-gridcolumn-50 {
  flex-basis: 50% !important;
  max-width: 50% !important;
}

.akm-justify-end {
  justify-content: flex-end;
}

.akm-justify-start {
  justify-content: flex-start;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1111111111vw;
  line-height: 1.3888888889vw;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

body.no-scroll {
  overflow: hidden;
}

body.no-scroll .mobile-navigation.mobile-only {
  overflow-y: auto;
}

@media screen and (orientation: landscape) {
  body.no-scroll .mobile-navigation.mobile-only input {
    position: relative;
    width: 100%;
    bottom: auto;
    margin-top: 6vw;
    padding: 2vw 0;
  }
  body.no-scroll .mobile-navigation.mobile-only a {
    padding: 2vw 0;
  }
}

section {
  position: relative;
}

.svg-includer {
  display: none;
}

.akm-appear {
  opacity: 0;
  transform: translateY(30px);
  transition: none 400ms ease-in-out;
  transition-property: opacity, transform;
}

.akm-appear.akm-appear-appearing, .akm-appear.akm-appear-appeared {
  opacity: 1;
  transform: none;
}

.no-padding {
  padding: 0;
}

.old-section:first-of-type {
  margin-top: 5.5555555556vw;
}

[class*="col-"].no-padding-col {
  padding-right: 0;
  padding-left: 0;
}

.filter-blue {
  -webkit-filter: url("/wp-content/themes/unibap/assets/filter/blue.svg#blue");
  -moz-filter: url("/wp-content/themes/unibap/assets/filter/blue.svg#blue");
  -ms-filter: url("/wp-content/themes/unibap/assets/filter/blue.svg#blue");
  filter: url("/wp-content/themes/unibap/assets/filter/blue.svg#blue");
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .filter-blue:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("/wp-content/themes/unibap/assets/masks/fade-to-blue-mask.svg") center/cover;
  }
}

@supports (-ms-ime-align: auto) {
  .filter-blue:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("/wp-content/themes/unibap/assets/masks/fade-to-blue-mask.svg") center/cover;
  }
}

.hyphenate {
  hyphens: auto;
}

/* --elements-- */
button {
  border: 1px solid #000;
  padding: 8px 24px;
  outline: none;
  cursor: pointer;
}

.button-primary,
.button-secondary {
  border: #3fb5d8;
  padding: 0px;
  border-style: solid;
  border-width: 2px;
  color: #fff;
}

.button-primary a,
.button-secondary a {
  padding: 14px 24px;
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.button-primary a:hover,
.button-secondary a:hover {
  color: #fff;
  text-decoration: none;
}

.button-primary {
  background-color: transparent;
}

.button-secondary {
  background-color: #3fb5d8;
}

.button-primary:hover,
.button-secondary:hover {
  background-color: rgba(63, 181, 216, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.001px;
}

h1 {
  font-size: 60px;
  line-height: 68px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 34px;
    line-height: 42px;
  }
}

h2 {
  font-size: 42px;
  line-height: 52px;
}

@media (max-width: 576px) {
  h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

h3 {
  font-size: 32px;
  line-height: 47px;
}

@media (max-width: 576px) {
  h3 {
    font-size: 24px;
    line-height: 35px;
  }
}

h4 {
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 576px) {
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
}

h5 {
  font-size: 20px;
  line-height: 29px;
}

h6 {
  font-size: 17px;
  line-height: 26px;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a.link-background-fill, a:not([href]):not([tabindex]).link-background-fill {
  font-family: "Montserrat", sans-serif;
  position: relative;
  font-size: 17px;
  padding: 16px;
  color: #fff;
  width: fit-content;
  letter-spacing: 0.001px;
}

a.link-background-fill:before, a:not([href]):not([tabindex]).link-background-fill:before {
  content: " ";
  height: 100%;
  top: 0;
  left: 0;
  width: 50%;
  background-color: #9f368b;
  position: absolute;
  z-index: -1;
  transition: all 300ms ease-out;
}

a.link-background-fill span, a:not([href]):not([tabindex]).link-background-fill span {
  opacity: 0.7;
  transition: all 300ms ease-out;
}

a.link-background-fill.white-background, a:not([href]):not([tabindex]).link-background-fill.white-background {
  color: #a1b2d3;
}

a.link-background-fill.white-background span, a:not([href]):not([tabindex]).link-background-fill.white-background span {
  opacity: 1;
}

a.link-background-fill.blue:before, a:not([href]):not([tabindex]).link-background-fill.blue:before {
  background-color: #303F9B;
}

a.link-background-fill:hover, a:not([href]):not([tabindex]).link-background-fill:hover {
  text-decoration: none;
}

a.link-background-fill:hover.white-background, a:not([href]):not([tabindex]).link-background-fill:hover.white-background {
  color: #fff;
}

a.link-background-fill:hover span, a:not([href]):not([tabindex]).link-background-fill:hover span {
  opacity: 1;
}

a.link-background-fill:hover:before, a:not([href]):not([tabindex]).link-background-fill:hover:before {
  width: 100%;
}

li {
  list-style-position: inside;
}

p.x-large {
  font-size: 38px;
  line-height: 48px;
}

@media (max-width: 576px) {
  p.x-large {
    font-size: 26px;
    line-height: 38px;
  }
}

p.large {
  font-size: 22px;
  line-height: 34px;
}

p.medium {
  font-size: 17px;
  line-height: 26px;
}

/* -- Custom Post-- */
section[data-section="Post"] .post-hero-wrapper {
  position: relative;
  height: auto;
}

section[data-section="Post"] .post-hero-wrapper .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 0;
  -webkit-animation: fadeIn 800ms ease 400ms forwards;
  -moz-animation: fadeIn 800ms ease 400ms forwards;
  -ms-animation: fadeIn 800ms ease 400ms forwards;
  -o-animation: fadeIn 800ms ease 400ms forwards;
  animation: fadeIn 800ms ease 400ms forwards;
}

section[data-section="Post"] .post-hero-wrapper .background-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/unibap/assets/masks/purple-mask.svg");
  background-size: cover;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-hero-wrapper .background-wrapper:after {
    background-size: cover;
  }
}

section[data-section="Post"] .post-hero-wrapper .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
}

section[data-section="Post"] .post-hero-wrapper .hero-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  max-width: 45.2083333333vw;
  align-items: center;
  margin: 0 auto;
  margin-top: 14.5833333333vw;
  margin-bottom: 5.8333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-hero-wrapper .hero-content-wrapper {
    max-width: unset;
    width: auto;
    margin: 50% 20px;
  }
}

section[data-section="Post"] .post-hero-wrapper .heading {
  color: #fff;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-hero-wrapper .heading {
    margin-bottom: 20px;
  }
}

section[data-section="Post"] .post-hero-wrapper .heading h2 {
  font-size: 3.6111111111vw;
  line-height: 5.0694444444vw;
  font-weight: 600;
  padding: 0;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-hero-wrapper .heading h2 {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 0;
  }
  section[data-section="Post"] .post-hero-wrapper .heading h2.small-mobile {
    font-size: 23px;
    line-height: 30px;
  }
}

@media (min-width: 1920px) {
  section[data-section="Post"] .post-hero-wrapper .heading h2 {
    font-size: 2.7083333333vw;
    line-height: 3.8020833333vw;
  }
}

section[data-section="Post"] .post-content-wrapper {
  height: auto;
  max-width: 45.2083333333vw;
  width: auto;
  margin: 0 auto;
  padding: 5.625vw 0;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper {
    max-width: unset;
    margin: 0 20px;
    padding-top: 50px;
  }
}

section[data-section="Post"] .post-content-wrapper .post-information {
  display: flex;
}

section[data-section="Post"] .post-content-wrapper .post-information .left-column,
section[data-section="Post"] .post-content-wrapper .post-information .right-column {
  width: 50%;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper .post-information .left-column,
  section[data-section="Post"] .post-content-wrapper .post-information .right-column {
    width: auto;
  }
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper .post-information .left-column {
    margin-right: 5.3333333333vw;
  }
}

section[data-section="Post"] .post-content-wrapper p {
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  max-width: 44.1666666667vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper p {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}

section[data-section="Post"] .post-content-wrapper p.caption {
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  color: #303F9B;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper p.caption {
    font-size: 18px;
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}

section[data-section="Post"] .post-content-wrapper p.information-title {
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  color: #303F9B;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper p.information-title {
    font-size: 18px;
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
}

section[data-section="Post"] .post-content-wrapper p.ingress {
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
  margin-bottom: 2.9166666667vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper p.ingress {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

section[data-section="Post"] .post-content-wrapper h1,
section[data-section="Post"] .post-content-wrapper h2,
section[data-section="Post"] .post-content-wrapper h3,
section[data-section="Post"] .post-content-wrapper h4 {
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper h1,
  section[data-section="Post"] .post-content-wrapper h2,
  section[data-section="Post"] .post-content-wrapper h3,
  section[data-section="Post"] .post-content-wrapper h4 {
    max-width: unset;
  }
}

section[data-section="Post"] .post-content-wrapper h1 {
  font-size: 4.375vw;
  line-height: 5.0694444444vw;
  font-weight: 600;
  margin-bottom: 3.1944444444vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper h1 {
    font-size: 8vw;
    line-height: 11.7333333333vw;
  }
}

section[data-section="Post"] .post-content-wrapper h2,
section[data-section="Post"] .post-content-wrapper h3 {
  font-size: 1.9444444444vw;
  line-height: 2.5vw;
  font-weight: 700;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper h2,
  section[data-section="Post"] .post-content-wrapper h3 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 40px;
  }
}

section[data-section="Post"] .post-content-wrapper ul {
  max-width: 46.6666666667vw;
  margin: 0 auto 3.1944444444vw;
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  width: auto;
  white-space: normal;
  padding-inline-start: initial;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper ul {
    max-width: unset;
  }
}

section[data-section="Post"] .post-content-wrapper ul li {
  max-width: 35.0694444444vw;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  font-weight: 400;
  padding-left: 1.6666666667vw;
  text-indent: -1.6666666667vw;
  margin-bottom: 10px;
}

section[data-section="Post"] .post-content-wrapper ul li:before {
  content: "▪";
  padding-right: 0.9722222222vw;
  color: #303F9B;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper ul li {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}

section[data-section="Post"] .post-content-wrapper a {
  color: #303F9B;
  text-decoration: underline;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table {
    width: 100%;
    table-layout: fixed;
    position: relative;
    overflow-x: scroll;
  }
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table tbody {
    display: block;
    overflow: scroll;
    border: 1px solid #303F9B;
  }
}

section[data-section="Post"] .post-content-wrapper table th,
section[data-section="Post"] .post-content-wrapper table tr,
section[data-section="Post"] .post-content-wrapper table td {
  border: 1px solid #303F9B;
}

section[data-section="Post"] .post-content-wrapper table tr {
  position: relative;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table tr {
    border: none;
  }
  section[data-section="Post"] .post-content-wrapper table tr.hasTableHeader {
    height: 14.6666666667vw;
  }
}

section[data-section="Post"] .post-content-wrapper table th {
  padding: 10px;
  text-align: center;
  background-color: #e9ecf3;
  color: #303F9B;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9722222222vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table th {
    font-size: 3.7333333333vw;
    line-height: 9.6vw;
    position: fixed;
    width: calc(100% - 2px);
    border: none;
  }
}

section[data-section="Post"] .post-content-wrapper table td {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
  padding: 1.25vw 2.5vw 1.25vw 1.25vw;
  vertical-align: text-top;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table td {
    font-size: 4.5333333333vw;
    line-height: 6.4vw;
  }
  section[data-section="Post"] .post-content-wrapper table td:first-child {
    width: 150px;
    position: sticky;
    left: -1px;
    top: 0;
    background: #fff;
    border-right: none;
    border-left: none;
  }
  section[data-section="Post"] .post-content-wrapper table td:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 1px solid #303F9B;
  }
  section[data-section="Post"] .post-content-wrapper table td:nth-of-type(2) {
    border-left: none;
  }
}

section[data-section="Post"] .post-content-wrapper table td p {
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper table td p {
    font-size: 4.5333333333vw;
    line-height: 6.4vw;
  }
}

section[data-section="Post"] .post-content-wrapper img {
  height: auto;
}

section[data-section="Post"] .post-content-wrapper iframe {
  width: 100%;
  min-height: 450px;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper iframe {
    min-height: 300px;
  }
}

section[data-section="Post"] .post-content-wrapper div {
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper div {
    width: 100% !important;
  }
}

section[data-section="Post"] .post-content-wrapper .wp-video {
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Post"] .post-content-wrapper .wp-video {
    max-width: 100%;
  }
}

/* --sections-- */
section[data-section="Hero"] {
  opacity: 0.9;
  background-color: #303F9B;
  height: auto;
}

section[data-section="Hero"].fullscreen {
  height: 130vh;
}

section[data-section="Hero"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 1;
}

section[data-section="Hero"] .background-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, #164194);
}

@media (max-width: 576px) {
  section[data-section="Hero"] .background-wrapper:after {
    background-size: cover;
  }
}

section[data-section="Hero"] .background-wrapper.fullscreen:after {
  background-size: cover;
}

section[data-section="Hero"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

section[data-section="Hero"] .background-video {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

section[data-section="Hero"] .background-video video {
  min-width: 100%;
  min-height: 100%;
}

section[data-section="Hero"] .content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  max-width: 45.2083333333vw;
  align-items: center;
  margin: 0 auto;
  margin-top: 14.5833333333vw;
  margin-bottom: 5.8333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .content-wrapper {
    max-width: unset;
    width: auto;
    margin: 50% 20px;
  }
}

section[data-section="Hero"] .content-wrapper.fullscreen {
  max-width: 62.0138888889vw;
  margin: 45vh 24.5833333333vw 13.9583333333vw 9.7222222222vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .content-wrapper.fullscreen {
    max-width: unset;
    margin: 0;
    padding: 45vh 20px 2.0833333333vw;
  }
}

section[data-section="Hero"] .heading {
  width: 100%;
  color: #fff;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .heading {
    margin-bottom: 20px;
  }
}

section[data-section="Hero"] .heading.fullscreen {
  margin-bottom: 0;
}

section[data-section="Hero"] .heading h1 {
  font-size: 4.375vw;
  line-height: 5.0694444444vw;
  font-weight: 600;
  padding: 0;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .heading h1 {
    font-size: 11.4666666667vw;
    line-height: 14.1333333333vw;
    text-align: center;
  }
}

@media (min-width: 1920px) {
  section[data-section="Hero"] .heading h1 {
    font-size: 3.28125vw;
    line-height: 3.8020833333vw;
  }
}

section[data-section="Hero"] .heading h2 {
  font-size: 3.6111111111vw;
  line-height: 5.0694444444vw;
  text-align: center;
  font-weight: 600;
  padding: 0;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .heading h2 {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
  }
}

@media (min-width: 1920px) {
  section[data-section="Hero"] .heading h2 {
    font-size: 2.7083333333vw;
    line-height: 3.8020833333vw;
  }
}

section[data-section="Hero"] .heading .caret {
  display: inline-block;
  height: 4.375vw;
  border-right: solid 12px #26b5e3;
  margin-bottom: -1.0416666667vw;
  margin-left: 3px;
  -webkit-animation: textindicator 1000ms infinite;
  -moz-animation: textindicator 1000ms infinite;
  -ms-animation: textindicator 1000ms infinite;
  -o-animation: textindicator 1000ms infinite;
  animation: textindicator 1000ms infinite;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .heading .caret {
    height: 8.3333333333vw;
  }
}

section[data-section="Hero"] .text {
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  margin-bottom: 5.2777777778vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .text {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
}

section[data-section="Hero"] .text.button-under {
  margin-bottom: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .text.button-under {
    margin-bottom: 20px;
  }
}

section[data-section="Hero"] .hero-button {
  border: 1px solid #fff;
  width: auto;
  height: auto;
}

section[data-section="Hero"] .hero-button:hover {
  text-decoration: none;
}

section[data-section="Hero"] .hero-button span {
  display: block;
  color: #fff;
  padding: 0.9027777778vw 2.9166666667vw;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
}

@media (max-width: 576px) {
  section[data-section="Hero"] .hero-button span {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 32px;
  }
}

section[data-section="Link Hero"] {
  opacity: 0.9;
  background-color: #303F9B;
  height: 1083px;
}

section[data-section="Link Hero"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 1;
}

section[data-section="Link Hero"] .background-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(0deg, #9f368b 0%, #303F9B 50%, #26b5e3 100%) 0% 0% no-repeat padding-box;
  opacity: 0.87;
}

@media (max-width: 576px) {
  section[data-section="Link Hero"] .background-wrapper:after {
    background-size: cover;
  }
}

section[data-section="Link Hero"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

section[data-section="Link Hero"] .background-video {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

section[data-section="Link Hero"] .background-video video {
  min-width: 100%;
  min-height: 100%;
}

section[data-section="Link Hero"] .large-links-wrapper,
section[data-section="Link Hero"] .content-wrapper {
  display: flex;
  justify-content: center;
}

section[data-section="Link Hero"] .large-links-wrapper {
  align-items: center;
}

section[data-section="Link Hero"] .content-wrapper {
  flex-direction: column;
  height: 100%;
  color: #fff;
  max-width: 320px;
}

section[data-section="Link Hero"] .hero-contact {
  display: flex;
  flex-direction: column;
}

section[data-section="Link Hero"] .hero-text {
  margin-bottom: 42px;
}

section[data-section="Link Hero"] .contact-text {
  white-space: pre-wrap;
  margin-bottom: 20px;
  opacity: 0.7;
}

section[data-section="Link Hero"] .large-links {
  display: flex;
  flex-direction: column;
}

section[data-section="Link Hero"] .link-background-fill {
  margin-bottom: 14px;
}

section[data-section="Link Hero"] .link-background-fill:last-of-type {
  margin-bottom: 0;
}

section[data-section="Link Hero"] .large-link {
  transition: all 300ms ease-out;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  font-size: 98px;
  line-height: 98px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

section[data-section="Link Hero"] .large-link.hover-up {
  transform: translateY(-5px);
  opacity: 0.5;
}

section[data-section="Link Hero"] .large-link.hover-down {
  transform: translateY(5px);
  opacity: 0.5;
}

section[data-section="Link Hero"] .large-link:hover {
  text-decoration: none;
  color: #fff;
}

section[data-section="Link Hero"] .large-link:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  section[data-section="Link Hero"] .large-link {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 16px;
  }
}

@media (max-width: 992px) {
  section[data-section="Link Hero"] {
    height: unset;
  }
  section[data-section="Link Hero"] .content {
    padding: 20px;
    padding-top: 200px;
    padding-bottom: 157px;
  }
  section[data-section="Link Hero"] .large-links-wrapper {
    justify-content: left;
    margin-bottom: 47px;
  }
}

section[data-section="Homepage Hero"] {
  height: 100vh;
}

section[data-section="Homepage Hero"] h1,
section[data-section="Homepage Hero"] h2,
section[data-section="Homepage Hero"] h3,
section[data-section="Homepage Hero"] h4,
section[data-section="Homepage Hero"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="Homepage Hero"] a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

section[data-section="Homepage Hero"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 1;
}

@media (min-width: 992px) {
  section[data-section="Homepage Hero"] .background-wrapper:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 25%;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  }
}

@media (max-width: 992px) {
  section[data-section="Homepage Hero"] .background-wrapper:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)) no-repeat padding-box;
  }
}

section[data-section="Homepage Hero"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.9);
}

section[data-section="Homepage Hero"] .background-image.desktop {
  display: none;
}

@media (min-width: 992px) {
  section[data-section="Homepage Hero"] .background-image.desktop {
    display: flex;
  }
}

section[data-section="Homepage Hero"] .background-image.mobile {
  display: flex;
}

@media (min-width: 992px) {
  section[data-section="Homepage Hero"] .background-image.mobile {
    display: none;
  }
}

section[data-section="Homepage Hero"] .content {
  justify-content: center;
}

section[data-section="Homepage Hero"] .content-wrapper {
  padding-bottom: 100px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  color: #fff;
  max-width: 700px;
}

section[data-section="Homepage Hero"] .hero-title {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  section[data-section="Homepage Hero"] .hero-title {
    margin-bottom: 17px;
    max-width: 535px;
  }
}

section[data-section="Homepage Hero"] .hero-title h1 {
  font-size: 58px;
  line-height: 120%;
  font-weight: 700;
}

@media (max-width: 992px) {
  section[data-section="Homepage Hero"] .hero-title h1 {
    font-size: 38px;
  }
}

section[data-section="Homepage Hero"] .hero-text {
  margin-bottom: 40px;
  max-width: 535px;
}

@media (max-width: 992px) {
  section[data-section="Homepage Hero"] .hero-text {
    margin-bottom: 25px;
    max-width: 320px;
  }
}

section[data-section="Homepage Hero"] .hero-text p {
  font-size: 16px;
  line-height: 130%;
  text-shadow: 0 0 6px black;
}

section[data-section="Homepage Hero"] .hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  max-width: 535px;
}

@media (max-width: 992px) {
  section[data-section="Homepage Hero"] .hero-buttons {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  section[data-section="Homepage Hero"] .content {
    justify-content: left;
    padding-left: 24px;
    padding-right: 24px;
  }
}

section[data-section="Solution Hero"] {
  opacity: 0.9;
  background-color: #303F9B;
  height: 60vh;
}

section[data-section="Solution Hero"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 1;
  overflow: hidden;
}

section[data-section="Solution Hero"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

section[data-section="Solution Hero"] .background-video {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

section[data-section="Solution Hero"] .background-video video {
  min-width: 100%;
  min-height: 100%;
}

section[data-section="Solution Hero"] .content {
  justify-content: center;
}

section[data-section="Solution Hero"] .content-wrapper {
  padding-bottom: 70px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  color: #fff;
  max-width: 700px;
}

@media (max-width: 768px) {
  section[data-section="Solution Hero"] .content-wrapper {
    margin: 0 20px;
  }
}

section[data-section="Solution Hero"] .heading {
  width: 100%;
  color: #fff;
  margin-bottom: 22px;
}

@media (max-width: 576px) {
  section[data-section="Solution Hero"] .heading {
    margin-bottom: 20px;
  }
}

section[data-section="Solution Hero"] .heading.fullscreen {
  margin-bottom: 0;
}

section[data-section="Solution Hero"] .heading h1 {
  font-size: 38px;
  line-height: 120%;
  font-weight: 600;
  padding: 0;
}

@media (max-width: 576px) {
  section[data-section="Solution Hero"] .heading h1 {
    text-align: left;
  }
}

section[data-section="Solution Hero"] .text {
  color: #fff;
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 130%;
  max-width: 400px;
}

@media (max-width: 576px) {
  section[data-section="Solution Hero"] .text {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
}

section[data-section="Solution Hero"] .hero-button {
  border: 1px solid #fff;
  width: auto;
  height: auto;
}

section[data-section="Solution Hero"] .hero-button:hover {
  text-decoration: none;
}

section[data-section="Solution Hero"] .hero-button span {
  display: block;
  color: #fff;
  padding: 0.9027777778vw 2.9166666667vw;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
}

@media (max-width: 576px) {
  section[data-section="Solution Hero"] .hero-button span {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 32px;
  }
}

section[data-section="Text"] {
  opacity: 0;
  height: auto;
  max-width: 58.0555555556vw;
  width: auto;
  margin: 0 auto;
  padding: 5.625vw 0;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
}

section[data-section="Text"].breadcrumbs-top {
  padding-top: 30px;
}

@media screen and (min-width: 576px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 1700px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1900px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 1500px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1500px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 1350px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1400px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 1200px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1100px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 880px;
  }
}

@media screen and (min-width: 576px) and (max-width: 800px) {
  section[data-section="Text"]:nth-child(3):last-child {
    min-height: 770px;
  }
}

@media (max-width: 576px) {
  section[data-section="Text"] {
    max-width: unset;
    margin: 0 20px;
    padding-top: 50px;
  }
}

section[data-section="Text"] p {
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  max-width: 44.1666666667vw;
  margin: 0 auto 1.0416666667vw;
}

section[data-section="Text"] p.iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 42.25%;
}

section[data-section="Text"] p.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  section[data-section="Text"] p {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}

section[data-section="Text"] p.caption {
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  color: #303F9B;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  section[data-section="Text"] p.caption {
    font-size: 18px;
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}

section[data-section="Text"] p.ingress {
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
  margin-bottom: 2.9166666667vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] p.ingress {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

section[data-section="Text"] pre {
  max-width: 44.1666666667vw;
  margin: 0 auto 1.0416666667vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] pre {
    max-width: unset;
    margin: 0 auto;
  }
}

section[data-section="Text"] h1,
section[data-section="Text"] h2,
section[data-section="Text"] h3,
section[data-section="Text"] h4,
section[data-section="Text"] h5 {
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Text"] h1,
  section[data-section="Text"] h2,
  section[data-section="Text"] h3,
  section[data-section="Text"] h4,
  section[data-section="Text"] h5 {
    max-width: unset;
  }
}

section[data-section="Text"] h1 {
  font-size: 4.375vw;
  line-height: 5.0694444444vw;
  font-weight: 600;
  margin-bottom: 3.1944444444vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] h1 {
    font-size: 6.6666666667vw;
    line-height: 11.7333333333vw;
  }
}

section[data-section="Text"] h2,
section[data-section="Text"] h3 {
  font-size: 1.9444444444vw;
  line-height: 2.5vw;
  font-weight: 700;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] h2,
  section[data-section="Text"] h3 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 40px;
  }
}

section[data-section="Text"] ul {
  max-width: 46.6666666667vw;
  margin: 0 auto 1.0416666667vw;
  list-style: none;
  list-style-type: none;
  padding: 0;
  width: auto;
  white-space: normal;
  padding-inline-start: initial;
}

@media (max-width: 576px) {
  section[data-section="Text"] ul {
    max-width: unset;
    margin-bottom: 4vw;
  }
}

section[data-section="Text"] ul li {
  max-width: 35.0694444444vw;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  font-weight: 400;
  padding-left: 3.0555555556vw;
  text-indent: -1.6666666667vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] ul li {
    font-size: 4.5333333333vw;
    line-height: 7.4666666667vw;
  }
}

section[data-section="Text"] ul li:before {
  content: "▪";
  padding-right: 0.9722222222vw;
  color: #303F9B;
}

@media (max-width: 576px) {
  section[data-section="Text"] ul li {
    max-width: unset;
  }
}

section[data-section="Text"] a {
  color: #303F9B;
  text-decoration: underline;
}

@media (max-width: 576px) {
  section[data-section="Text"] table {
    width: 100%;
    table-layout: fixed;
    position: relative;
    overflow-x: scroll;
  }
}

@media (max-width: 576px) {
  section[data-section="Text"] table tbody {
    display: block;
    overflow: scroll;
    border: 1px solid #303F9B;
  }
}

section[data-section="Text"] table th,
section[data-section="Text"] table tr,
section[data-section="Text"] table td {
  border: 1px solid #303F9B;
}

section[data-section="Text"] table tr {
  position: relative;
}

@media (max-width: 576px) {
  section[data-section="Text"] table tr {
    border: none;
  }
  section[data-section="Text"] table tr.hasTableHeader {
    height: 14.6666666667vw;
  }
}

section[data-section="Text"] table th {
  padding: 10px;
  text-align: center;
  background-color: #e9ecf3;
  color: #303F9B;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9722222222vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] table th {
    font-size: 3.7333333333vw;
    line-height: 9.6vw;
    position: fixed;
    width: calc(100% - 2px);
    border: none;
  }
}

section[data-section="Text"] table td {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
  padding: 1.25vw 2.5vw 1.25vw 1.25vw;
  vertical-align: text-top;
}

@media (max-width: 576px) {
  section[data-section="Text"] table td {
    font-size: 4.5333333333vw;
    line-height: 6.4vw;
  }
  section[data-section="Text"] table td:first-child {
    width: 150px;
    position: sticky;
    left: -1px;
    top: 0;
    background: #fff;
    border-right: none;
    border-left: none;
  }
  section[data-section="Text"] table td:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 1px solid #303F9B;
  }
  section[data-section="Text"] table td:nth-of-type(2) {
    border-left: none;
  }
}

section[data-section="Text"] table td p {
  font-size: 1.4583333333vw;
  line-height: 2.3611111111vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] table td p {
    font-size: 4.5333333333vw;
    line-height: 6.4vw;
  }
}

section[data-section="Text"] img {
  height: auto;
}

section[data-section="Text"] iframe {
  width: 100%;
}

section[data-section="Text"] div {
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Text"] div {
    width: 100% !important;
  }
}

section[data-section="Text"] .wp-form-style {
  max-width: 44.1666666667vw;
}

@media (max-width: 576px) {
  section[data-section="Text"] .wp-form-style {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}

@media (max-width: 576px) {
  section[data-section="Text"] .wpforms-one-half {
    margin-left: 0 !important;
  }
}

section[data-section="Text"] hr {
  max-width: 44.1666666667vw;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  section[data-section="Text"] hr {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}

section[data-section="Text"] .wp-video {
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Text"] .wp-video {
    max-width: 100%;
  }
}

section[data-section="Cards"] {
  opacity: 0;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
}

section[data-section="Cards"].bg-white {
  background-color: #fff;
}

section[data-section="Cards"].bg-light-gray {
  background-color: #eef0f7;
}

section[data-section="Cards"].first-cards-section .content-wrapper.frontpage {
  max-height: calc(100% - 13.8888888889vw);
}

@media (max-width: 576px) {
  section[data-section="Cards"].first-cards-section .content-wrapper.frontpage {
    height: 100%;
  }
}

section[data-section="Cards"].first-cards-section .cards-wrapper {
  transform: translate3d(0, -13.8888888889vw, 0);
}

@media (max-width: 576px) {
  section[data-section="Cards"].first-cards-section .cards-wrapper {
    transform: translate3d(0, -40vw, 0);
  }
}

section[data-section="Cards"].first-cards-section .bottom-row {
  margin-bottom: 0;
  transform: translate3d(0, -13.8888888889vw, 0);
}

@media (max-width: 576px) {
  section[data-section="Cards"].first-cards-section .bottom-row {
    transform: translate3d(0, -26.6666666667vw, 0);
  }
}

section[data-section="Cards"] .content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
}

section[data-section="Cards"] .section-category {
  color: #303F9B;
  text-transform: uppercase;
  padding: 6.5277777778vw 8.5416666667vw 2.7777777778vw;
  font-weight: 700;
}

section[data-section="Cards"] .section-title {
  display: block;
  width: 80%;
  padding: 0 8.5416666667vw;
}

section[data-section="Cards"] .section-title h1 {
  margin-bottom: 0;
}

section[data-section="Cards"] .cards-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 6.25vw 20px 4.8611111111vw;
}

section[data-section="Cards"] .cards-wrapper.frontpage {
  margin-top: 4.8611111111vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

section[data-section="Cards"] .card {
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  min-height: 41.6666666667vw;
  height: auto;
  width: calc(100% - 20px);
  max-width: calc(33% - 10px);
  position: relative;
  display: flex;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 106.666666667vw;
    margin: 20px 0 0;
  }
}

section[data-section="Cards"] .card.slim {
  align-items: center;
}

section[data-section="Cards"] .card.slim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card.slim::after {
    opacity: 1;
  }
}

section[data-section="Cards"] .card.slim:hover:after {
  opacity: 1;
}

section[data-section="Cards"] .card.fullheight {
  align-items: start;
  justify-content: space-between;
  box-shadow: none;
}

@media (min-width: 768px) {
  section[data-section="Cards"] .card:nth-of-type(3n + 1) {
    margin-right: 15px;
  }
  section[data-section="Cards"] .card:nth-of-type(3n + 2) {
    margin: 0 15px;
  }
  section[data-section="Cards"] .card:nth-of-type(3n + 3) {
    margin-left: 15px;
  }
}

section[data-section="Cards"] .card-category {
  z-index: 2;
  padding: 2.2916666667vw 1.9444444444vw;
  font-weight: 700;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-category {
    padding: 8.8vw 7.4666666667vw;
    font-size: 4.5333333333vw;
    line-height: 5.6vw;
  }
}

section[data-section="Cards"] .card-category.slim {
  color: #000;
  margin-right: auto;
}

section[data-section="Cards"] .image {
  width: 9.7222222222vw;
  height: 100%;
}

section[data-section="Cards"] .image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .image {
    width: 37.3333333333vw;
  }
}

section[data-section="Cards"] .image.slim {
  margin: 5.6944444444vw 0 2.9166666667vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .image.slim {
    margin: 11.2vw 0;
  }
}

section[data-section="Cards"] .image.slim.has-category {
  margin-top: 0;
}

section[data-section="Cards"] .image.fullheight {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
}

section[data-section="Cards"] .image.fullheight img {
  object-fit: cover;
  object-position: 50% 50%;
}

section[data-section="Cards"] .card-text-wrapper {
  width: 100%;
  padding: 0 2.0138888889vw 6.6666666667vw;
  margin-top: auto;
  z-index: 2;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section[data-section="Cards"] .card-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
  }
}

@supports (-ms-ime-align: auto) {
  section[data-section="Cards"] .card-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
  }
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-text-wrapper {
    padding: 0 7.7333333333vw 25.6vw;
  }
}

section[data-section="Cards"] .card-text-wrapper.slim {
  text-align: center;
}

section[data-section="Cards"] .card-text-wrapper.slim .card-title {
  color: #000;
}

section[data-section="Cards"] .card-text-wrapper.slim .card-text {
  color: #000;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-text-wrapper.slim .card-text {
    margin-bottom: 4vw;
  }
}

section[data-section="Cards"] .card-text-wrapper.slim .card-read-more {
  color: #000;
  border-color: #000;
}

section[data-section="Cards"] .card-text-wrapper.fullheight {
  padding: 0 2.0138888889vw 3.1944444444vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-text-wrapper.fullheight {
    padding: 30px;
  }
}

section[data-section="Cards"] .card-text-wrapper.fullheight .card-title,
section[data-section="Cards"] .card-text-wrapper.fullheight .card-text {
  color: #fff;
}

section[data-section="Cards"] .card-text-wrapper.fullheight .card-title {
  width: 100%;
}

section[data-section="Cards"] .card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.9444444444vw;
  line-height: 2.5vw;
  margin-bottom: 1.25vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-title {
    font-size: 24px;
    line-height: 30px;
  }
}

section[data-section="Cards"] .card-text {
  font-weight: 400;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-text {
    font-size: 17px;
    line-height: 24px;
  }
}

section[data-section="Cards"] .card-read-more {
  color: #303F9B;
  text-transform: uppercase;
  margin-top: 4.0972222222vw;
  font-weight: 700;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  letter-spacing: 0.2361111111vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .card-read-more {
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 3.4px;
  }
}

section[data-section="Cards"] .card-read-more.bordered {
  color: #fff;
  padding: 1.4583333333vw;
  border: 2px solid #fff;
  margin-top: 1.6666666667vw;
  display: flex;
  justify-content: center;
  align-self: center;
}

section[data-section="Cards"] .bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.7777777778vw 0 8.2638888889vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .bottom-row {
    align-items: initial;
    margin: 0 20px 4.8611111111vw;
  }
}

section[data-section="Cards"] .bottom-title {
  font-weight: 700;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  text-transform: uppercase;
  color: #303F9B;
  margin-bottom: 2.7777777778vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .bottom-title {
    font-size: 18px;
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

section[data-section="Cards"] .bottom-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.9444444444vw;
  line-height: 2.5vw;
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .bottom-link {
    font-size: 20px;
    line-height: 21px;
  }
}

section[data-section="Cards"] .bottom-link:hover {
  text-decoration: none;
  color: #000;
}

section[data-section="Cards"] .bottom-link::after {
  display: block;
  content: " ";
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/black-arrow.svg");
  height: 1.4583333333vw;
  width: 1.4583333333vw;
  margin-left: 1.3888888889vw;
}

@media (max-width: 576px) {
  section[data-section="Cards"] .bottom-link::after {
    height: 17px;
    width: 17px;
    margin-left: 10px;
  }
}

section[data-section="Bequoted"] {
  margin-top: 4.5138888889vw;
  margin-bottom: 4.5138888889vw;
}

section[data-section="Archive"] {
  padding: 5vw 8.2638888889vw;
}

section[data-section="Archive"] .post-content-wrapper {
  display: flex;
  margin-bottom: 4.1666666667vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-content-wrapper {
    flex-direction: column;
  }
}

section[data-section="Archive"] .post-content-wrapper:hover {
  text-decoration: none;
  color: initial;
}

section[data-section="Archive"] .post-content-wrapper:last-of-type {
  padding-bottom: 0;
}

section[data-section="Archive"] .post-content-wrapper.hidden {
  display: none;
}

section[data-section="Archive"] .post-image-wrapper {
  margin-right: 8.3333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-image-wrapper {
    margin-right: 0;
  }
}

section[data-section="Archive"] .post-image-wrapper img {
  width: 31.6666666667vw;
  height: 20.8333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-image-wrapper img {
    width: 100%;
    height: auto;
  }
}

section[data-section="Archive"] .post-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-info-wrapper {
    margin-top: 10px;
  }
}

section[data-section="Archive"] .post-title {
  font-weight: 700;
  font-size: 1.9444444444vw;
  line-height: 2.6388888889vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-title {
    font-size: 5.8666666667vw;
    line-height: 8vw;
  }
}

section[data-section="Archive"] .post-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  color: #707070;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-date {
    font-size: 4.5333333333vw;
    line-height: 8vw;
  }
}

section[data-section="Archive"] .post-excerpt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .post-excerpt {
    font-size: 4.5333333333vw;
    line-height: 8vw;
  }
}

section[data-section="Archive"] .viewmore-container {
  width: 31.6666666667vw;
  margin: 8.2638888889vw auto 0;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .viewmore-container {
    width: auto;
    margin: 15px;
  }
}

section[data-section="Archive"] .progress-text {
  text-align: center;
  margin-bottom: 2.0833333333vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .progress-text {
    font-size: 3.7333333333vw;
    line-height: 7.4666666667vw;
  }
}

section[data-section="Archive"] .progress-bar {
  width: 100%;
  height: 0.4166666667vw;
  background-color: #eef0f7;
  margin-bottom: 1.5972222222vw;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .progress-bar {
    height: 3px;
    margin-bottom: 20px;
  }
}

section[data-section="Archive"] .progress-bar-filled {
  background-color: #303F9B;
  height: 100%;
}

section[data-section="Archive"] .view-more-button {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 17.1527777778vw;
  color: #303F9B;
  padding: 1.4583333333vw 0;
  margin: 0 auto;
  border: 2px solid #303F9B;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  section[data-section="Archive"] .view-more-button {
    width: auto;
    margin: 0 15px;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 32px;
  }
}

section[data-section="Side-menu"] {
  position: absolute;
  left: 2.5694444444vw;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  width: 15.9722222222vw;
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] {
    padding-top: 0;
    font-size: 4.5333333333vw;
    line-height: 7.4666666667vw;
    left: 0;
    z-index: 2;
    width: auto;
    max-width: 80%;
    min-width: 20px;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    left: calc(-80% + 20px);
    transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    position: fixed;
  }
  section[data-section="Side-menu"].open {
    left: 0;
  }
}

section[data-section="Side-menu"] .content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] .content-wrapper {
    overflow-x: hidden;
    width: 100%;
    width: calc(100% - 20px);
    background: #fff;
    border: 2px solid #303F9B;
    border-left: unset;
  }
}

section[data-section="Side-menu"].hidden {
  display: none !important;
}

section[data-section="Side-menu"].sticky {
  position: fixed;
  z-index: 1;
  display: none;
}

@media (max-width: 576px) {
  section[data-section="Side-menu"].sticky {
    display: block;
  }
}

section[data-section="Side-menu"] .drawer-button {
  display: none;
  position: absolute;
  height: 100px;
  width: 20px;
  background-color: #303F9B;
  top: 50%;
  right: 0;
  transform: translate3d(0px, -50px, 0px);
  border-radius: 0 5px 5px 0;
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] .drawer-button {
    display: block;
  }
}

section[data-section="Side-menu"] .drawer-button .chevron-right {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  height: 10px;
  width: 10px;
}

section[data-section="Side-menu"] .menu,
section[data-section="Side-menu"] .sub-menu {
  list-style: none;
  margin-left: 20px;
}

section[data-section="Side-menu"] .menu .current-menu-item,
section[data-section="Side-menu"] .sub-menu .current-menu-item {
  color: #303F9B;
}

section[data-section="Side-menu"] .menu a,
section[data-section="Side-menu"] .sub-menu a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 960px) {
  section[data-section="Side-menu"] .sub-menu {
    margin-left: 12px;
  }
}

@media screen and (max-width: 780px) {
  section[data-section="Side-menu"] .sub-menu {
    margin-left: 5px;
  }
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] .menu {
    margin: 15px;
    margin-left: 20px;
  }
}

section[data-section="Side-menu"] .menu .menu-item {
  margin-bottom: 2.3611111111vw;
}

section[data-section="Side-menu"] .menu .menu-item a {
  font-weight: 700;
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] .menu .menu-item {
    margin-bottom: 9.0666666667vw;
  }
}

section[data-section="Side-menu"] .current_page_parent a {
  color: #303F9B;
}

section[data-section="Side-menu"] .sub-menu .menu-item {
  margin-bottom: 0;
}

section[data-section="Side-menu"] .sub-menu .menu-item a {
  font-weight: 400;
}

section[data-section="Side-menu"] .sub-menu .current-menu-item {
  display: flex;
  align-items: flex-start;
  color: #303F9B;
}

section[data-section="Side-menu"] .sub-menu .current-menu-item::before {
  content: " ";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 0.8333333333vw;
  background-color: #303F9B;
  margin-top: 0.5555555556vw;
}

@media screen and (max-width: 1200px) {
  section[data-section="Side-menu"] .sub-menu .current-menu-item::before {
    margin-top: 0.3472222222vw;
  }
}

@media screen and (max-width: 769px) {
  section[data-section="Side-menu"] .sub-menu .current-menu-item::before {
    margin-top: 0.1388888889vw;
  }
}

@media (max-width: 576px) {
  section[data-section="Side-menu"] .sub-menu .current-menu-item::before {
    width: 6px;
    height: 12px;
    margin-right: 12px;
    margin-top: 2.4305555556vw;
  }
}

section[data-section="Tab-menu"] {
  position: relative;
  height: 85px;
  background-color: #303F9B;
  border-top: 2px solid rgba(161, 178, 211, 0.5);
  width: 100%;
}

section[data-section="Tab-menu"]:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(161, 178, 211, 0.5);
  left: 0px;
  bottom: 0;
}

@media (max-width: 576px) {
  section[data-section="Tab-menu"] {
    border-top: none;
    border-bottom: none;
  }
}

section[data-section="Tab-menu"] .tab-ul-wrapper {
  height: 100%;
  overflow-x: scroll;
}

section[data-section="Tab-menu"] .tab-ul-wrapper::-webkit-scrollbar {
  display: none;
}

section[data-section="Tab-menu"] ul {
  width: max-content;
  height: 100%;
  margin-bottom: 0;
  padding: 0 12vw;
  list-style-type: none;
}

section[data-section="Tab-menu"] ul a {
  text-decoration: none;
}

@media (max-width: 576px) {
  section[data-section="Tab-menu"] ul {
    padding-left: 0px;
  }
}

section[data-section="Tab-menu"] li {
  position: relative;
  height: 100%;
  color: white;
  font-size: 17px;
  padding-left: 24px;
  padding-right: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 226px;
}

section[data-section="Tab-menu"] li .menu-item-blob {
  height: 6px;
  width: 6px;
  background-color: #fff;
  opacity: 0.25;
  margin-bottom: 10px;
  transition: all 200ms linear;
}

section[data-section="Tab-menu"] li span {
  opacity: 0.5;
  transition: all 200ms linear;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  font-size: 14px;
  line-height: 17px;
}

section[data-section="Tab-menu"] li span:first-of-type {
  margin-bottom: 6px;
}

section[data-section="Tab-menu"] li span.menu-item-title {
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
}

section[data-section="Tab-menu"] li:after {
  content: " ";
  height: 2px;
  bottom: 0px;
  left: 0;
  width: 0%;
  background-color: #26b5e3;
  position: absolute;
  transition: all 200ms linear;
}

section[data-section="Tab-menu"] li:hover span {
  opacity: 1;
  color: inherit;
  text-decoration: none;
}

section[data-section="Tab-menu"] li:hover .menu-item-blob {
  background-color: #26b5e3;
  opacity: 1;
}

section[data-section="Tab-menu"] li:hover:after {
  width: 70%;
}

section[data-section="Tab-menu"] li:active span, section[data-section="Tab-menu"] li.current-item span {
  opacity: 1;
}

section[data-section="Tab-menu"] li:active .menu-item-blob, section[data-section="Tab-menu"] li.current-item .menu-item-blob {
  background-color: #26b5e3;
  opacity: 1;
}

section[data-section="Tab-menu"] li:active:after, section[data-section="Tab-menu"] li.current-item:after {
  width: calc(100% + 3px);
}

section[data-section="Tab-menu"] .arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100px;
  background-color: #303F9B;
  box-shadow: -10px 0px 10px -5px #303F9B;
  cursor: pointer;
}

section[data-section="Tab-menu"] .arrow-right:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff;
  right: 95px;
  top: 50%;
  transform-origin: 50% 50%;
}

section[data-section="Tab-menu"] .arrow-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  background-color: #303F9B;
  cursor: pointer;
  box-shadow: 10px 0px 10px -5px #303F9B;
}

section[data-section="Tab-menu"] .arrow-left:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  left: 90px;
  top: 50%;
  transform-origin: 50% 50%;
}

section[data-section="Tab-menu"] .mobile-arrows,
section[data-section="Tab-menu"] .dropdown-tab-ul-wrapper {
  display: none;
}

@media (max-width: 576px) {
  section[data-section="Tab-menu"] .desktop-arrows {
    display: none;
  }
  section[data-section="Tab-menu"] .mobile-arrows {
    display: block;
  }
  section[data-section="Tab-menu"] .dropdown-tab-ul-wrapper {
    position: fixed;
    bottom: -570px;
    height: 570px;
    width: 100%;
    display: block;
    background-color: #303F9B;
    z-index: 4;
    overflow-y: scroll;
    transition: bottom 200ms ease-out;
  }
  section[data-section="Tab-menu"] .dropdown-tab-ul-wrapper ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    padding-bottom: 100px;
  }
  section[data-section="Tab-menu"] .dropdown-tab-ul-wrapper li {
    padding: 24px;
    width: 100%;
  }
  section[data-section="Tab-menu"] .arrow-down {
    position: absolute;
    top: 0;
    right: 0;
    height: 85px;
    width: 40px;
    background-color: #303F9B;
    box-shadow: -10px 0px 10px -5px #303F9B;
    cursor: pointer;
  }
  section[data-section="Tab-menu"] .arrow-down:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #fff;
    right: 20px;
    top: 50%;
    transform-origin: 50% 50%;
  }
  section[data-section="Tab-menu"] .arrow-up {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background-color: #303F9B;
    box-shadow: -10px 0px 10px -5px #303F9B;
    border-bottom: 2px solid rgba(161, 178, 211, 0.5);
    cursor: pointer;
  }
  section[data-section="Tab-menu"] .arrow-up:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #fff;
    right: 20px;
    top: 50%;
    transform-origin: 50% 50%;
  }
}

section[data-section="Menu-preview"] {
  height: auto;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] {
    max-width: unset;
    margin: 0 20px;
  }
}

section[data-section="Menu-preview"] .menu-wrapper {
  position: relative;
  border-top: 2px solid #707070;
}

section[data-section="Menu-preview"] .parent-item-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.9166666667vw;
  margin-top: 1.7361111111vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .parent-item-wrapper {
    margin: 20px 0;
  }
}

section[data-section="Menu-preview"] .left-column,
section[data-section="Menu-preview"] .right-column {
  width: 50%;
}

section[data-section="Menu-preview"] .parent-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .parent-title {
    font-size: 24px;
    line-height: 36px;
  }
}

section[data-section="Menu-preview"] .parent-description {
  margin-top: 0.9027777778vw;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .parent-description {
    font-size: 17px;
    line-height: 28px;
  }
}

section[data-section="Menu-preview"] .toggle-grid-button {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 9.2361111111vw;
  color: #fff;
  background-color: #303F9B;
  padding: 1.4583333333vw 0;
  margin: 0;
  margin-left: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  letter-spacing: 0.2361111111vw;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
}

section[data-section="Menu-preview"] .toggle-grid-button.disabled {
  cursor: not-allowed;
  background-color: #eef0f7;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .toggle-grid-button {
    width: auto;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 3.4px;
    margin-left: 40px;
    padding: 21px 10px;
  }
}

section[data-section="Menu-preview"] .child-items-wrapper {
  display: flex;
  min-height: 26.6666666667vw;
  margin-bottom: 4.8611111111vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-items-wrapper {
    margin-bottom: 20px;
  }
}

section[data-section="Menu-preview"] .child-items-wrapper.grid {
  flex-wrap: wrap;
  justify-content: space-evenly;
}

section[data-section="Menu-preview"] .child-items-wrapper.grid .child-item {
  margin-right: 0;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-items-wrapper.grid .child-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

section[data-section="Menu-preview"] .child-items-wrapper.grid .child-item:nth-of-type(2n + 1) {
  margin-right: 1.0416666667vw;
  margin-bottom: 2.4305555556vw;
}

section[data-section="Menu-preview"] .child-items-wrapper.grid .child-item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

section[data-section="Menu-preview"] .child-items-wrapper.slider {
  overflow-x: scroll;
  flex-wrap: nowrap;
}

section[data-section="Menu-preview"] .child-items-wrapper.slider::-webkit-scrollbar {
  display: none;
}

section[data-section="Menu-preview"] .child-item {
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 19.7916666667vw;
  max-width: 19.7916666667vw;
  margin-right: 0.6944444444vw;
  text-decoration: none;
  color: inherit;
}

section[data-section="Menu-preview"] .child-item:last-of-type {
  margin-right: 0;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-item {
    min-width: 70vw;
    max-width: 70vw;
    margin-right: 20px;
  }
}

section[data-section="Menu-preview"] .child-image {
  height: 17.3611111111vw;
  width: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-image {
    height: 250px;
  }
}

section[data-section="Menu-preview"] .child-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1805555556vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-title {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }
}

section[data-section="Menu-preview"] .child-description {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9722222222vw;
  line-height: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .child-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
  }
}

section[data-section="Menu-preview"] .menu-preview-slide-button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, 120%, 0);
  height: 2.0833333333vw;
  width: 2.0833333333vw;
  cursor: pointer;
  pointer-events: initial;
  z-index: 2;
  opacity: 1;
  transition: 300ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .menu-preview-slide-button {
    width: 30px;
    height: 30px;
    top: 53%;
  }
}

section[data-section="Menu-preview"] .menu-preview-slide-button.previous {
  left: 0.5555555556vw;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-arrow-black-circle.svg");
  transform: translate3d(0, 120%, 0) rotate(180deg);
  transform-origin: center center;
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .menu-preview-slide-button.previous {
    left: 8px;
  }
}

section[data-section="Menu-preview"] .menu-preview-slide-button.next {
  right: 0.5555555556vw;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-arrow-black-circle.svg");
}

@media (max-width: 576px) {
  section[data-section="Menu-preview"] .menu-preview-slide-button.next {
    right: 8px;
  }
}

section[data-section="Menu-preview"] .menu-preview-slide-button.fadeOut {
  opacity: 0;
  pointer-events: none;
  transition: 300ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

section[data-section="Products-slider"] {
  height: auto;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
  max-width: 44.1666666667vw;
  margin: 0 auto;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] {
    max-width: unset;
    margin: 0 20px;
  }
}

section[data-section="Products-slider"] .content-wrapper {
  position: relative;
  margin: 0.6944444444vw auto;
  border-top: 2px solid rgba(48, 63, 155, 0.3);
  border-bottom: 2px solid rgba(48, 63, 155, 0.3);
}

section[data-section="Products-slider"] .top-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.9166666667vw;
  margin-top: 1.7361111111vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .top-wrapper {
    margin: 20px 0;
  }
}

section[data-section="Products-slider"] .left-column,
section[data-section="Products-slider"] .right-column {
  width: 50%;
}

section[data-section="Products-slider"] .section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .section-title {
    font-size: 24px;
    line-height: 36px;
  }
}

section[data-section="Products-slider"] .section-description {
  margin-top: 0.9027777778vw;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .section-description {
    font-size: 17px;
    line-height: 28px;
  }
}

section[data-section="Products-slider"] .toggle-grid-button {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 9.2361111111vw;
  color: #fff;
  background-color: #303F9B;
  padding: 1.4583333333vw 0;
  margin: 0;
  margin-left: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.4583333333vw;
  letter-spacing: 0.2361111111vw;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
}

section[data-section="Products-slider"] .toggle-grid-button.disabled {
  cursor: not-allowed;
  background-color: #eef0f7;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .toggle-grid-button {
    width: auto;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 3.4px;
    margin-left: 40px;
    padding: 21px 10px;
  }
}

section[data-section="Products-slider"] .product-items-wrapper {
  display: flex;
  min-height: 26.6666666667vw;
  margin-bottom: 4.8611111111vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-items-wrapper {
    margin-bottom: 20px;
  }
}

section[data-section="Products-slider"] .product-items-wrapper.grid {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

section[data-section="Products-slider"] .product-items-wrapper.grid .product-item {
  max-width: calc(50% - 0.6944444444vw);
  margin-bottom: 2.4305555556vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-items-wrapper.grid .product-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

section[data-section="Products-slider"] .product-items-wrapper.grid .product-item:nth-of-type(2n + 1) {
  margin-left: 0;
  margin-right: 0.6944444444vw;
}

section[data-section="Products-slider"] .product-items-wrapper.grid .product-item:nth-of-type(2n + 2) {
  margin-left: 0.6944444444vw;
  margin-right: 0;
}

section[data-section="Products-slider"] .product-items-wrapper.slider {
  overflow-x: scroll;
  flex-wrap: nowrap;
}

section[data-section="Products-slider"] .product-items-wrapper.slider::-webkit-scrollbar {
  display: none;
}

section[data-section="Products-slider"] .product-item {
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 19.7916666667vw;
  max-width: 19.7916666667vw;
  margin-right: 0.6944444444vw;
  text-decoration: none;
  color: inherit;
}

section[data-section="Products-slider"] .product-item:last-of-type {
  margin-right: 0;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-item {
    min-width: 70vw;
    max-width: 70vw;
    margin-right: 20px;
  }
}

section[data-section="Products-slider"] .product-image {
  height: 17.3611111111vw;
  width: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-image {
    height: 250px;
  }
}

section[data-section="Products-slider"] .product-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1805555556vw;
  line-height: 2.5vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-title {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }
}

section[data-section="Products-slider"] .product-description {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9722222222vw;
  line-height: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .product-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
  }
}

section[data-section="Products-slider"] .products-slider-slide-button {
  display: block;
  position: absolute;
  top: 48%;
  height: 2.0833333333vw;
  width: 2.0833333333vw;
  cursor: pointer;
  pointer-events: initial;
  z-index: 2;
  opacity: 1;
  transition: 300ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .products-slider-slide-button {
    width: 30px;
    height: 30px;
    top: 58%;
  }
}

section[data-section="Products-slider"] .products-slider-slide-button.previous {
  left: 0.5555555556vw;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-arrow-black-circle.svg");
  transform: rotate(180deg);
  transform-origin: center center;
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .products-slider-slide-button.previous {
    left: 8px;
  }
}

section[data-section="Products-slider"] .products-slider-slide-button.next {
  right: 0.5555555556vw;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-arrow-black-circle.svg");
}

@media (max-width: 576px) {
  section[data-section="Products-slider"] .products-slider-slide-button.next {
    right: 8px;
  }
}

section[data-section="Products-slider"] .products-slider-slide-button.fadeOut {
  opacity: 0;
  pointer-events: none;
  transition: 300ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

section[data-section="Testimonial"] {
  opacity: 0;
  height: auto;
  max-width: 58.0555555556vw;
  width: auto;
  margin: 0 auto;
  padding: 2.7777777778vw 0;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] {
    max-width: unset;
    margin: 0 20px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

section[data-section="Testimonial"] .content-wrapper {
  max-width: 44.1666666667vw;
  margin: 0 auto;
  font-weight: 700;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] .content-wrapper {
    max-width: unset;
  }
}

section[data-section="Testimonial"] hr:first-child {
  border-top: 1px solid black;
  margin-top: 0;
  margin-bottom: 40px;
}

section[data-section="Testimonial"] hr:last-child {
  border-bottom: 1px solid black;
  margin-top: 40px;
  margin-bottom: 0;
}

section[data-section="Testimonial"] .quotation, section[data-section="Testimonial"] .arrow {
  max-width: 44.1666666667vw;
  margin: 0 auto 1.0416666667vw;
  padding-left: 0;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] .quotation, section[data-section="Testimonial"] .arrow {
    max-width: unset;
    margin: 0 auto;
  }
}

section[data-section="Testimonial"] .quotation img {
  max-width: 140px;
  margin-bottom: 40px;
}

section[data-section="Testimonial"] .arrow img {
  width: 20px;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] .arrow img {
    margin-bottom: 22px;
  }
}

section[data-section="Testimonial"] h2 {
  margin: 0;
  font-size: 1.9444444444vw;
  line-height: 2.5vw;
  max-width: 80%;
  font-weight: 700;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] h2 {
    font-size: 20px;
    line-height: 28px;
    max-width: unset;
    margin-bottom: 22px;
  }
}

section[data-section="Testimonial"] p {
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  margin: 0 auto 1.0416666667vw;
}

@media (max-width: 576px) {
  section[data-section="Testimonial"] p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}

section[data-section="Testimonial"] p.name {
  margin-bottom: 0;
}

section[data-section="Testimonial"] p.title {
  font-weight: normal;
}

section[data-section="Text Banner"] {
  padding: 80px;
  position: relative;
  border-bottom: 2px solid rgba(189, 195, 199, 0.47);
}

@media (max-width: 576px) {
  section[data-section="Text Banner"] {
    padding: 70px 20px;
  }
}

section[data-section="Text Banner"] .banner-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section[data-section="Text Banner"] .logo-no-text {
  height: 64px;
  width: 75px;
  background: url("/wp-content/themes/unibap/assets/icons/logo-no-text.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 42px;
}

section[data-section="Text Banner"] .logo-no-text:last-child {
  margin-bottom: 0px;
}

section[data-section="Text Banner"] .background-logo {
  height: 100%;
  width: 20%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/wp-content/themes/unibap/assets/icons/background-circle-stick.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  section[data-section="Text Banner"] .background-logo {
    display: none;
  }
}

section[data-section="Text Banner"] .banner-title {
  margin-bottom: 40px;
}

section[data-section="Text Banner"] .banner-title:last-child {
  margin-bottom: 0px;
}

section[data-section="Text Banner"] .banner-text {
  margin-bottom: 47px;
}

section[data-section="Text Banner"] .banner-text:last-child {
  margin-bottom: 0px;
}

section[data-section="Client Slider"] {
  padding: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #bdc3c7;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] {
    padding: 70px 20px;
  }
}

section[data-section="Client Slider"] h2 {
  margin-bottom: 50px;
  font-weight: 600;
}

section[data-section="Client Slider"] p {
  margin-bottom: 150px;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] p {
    margin-bottom: 15px;
  }
}

section[data-section="Client Slider"] .text-content {
  margin-left: 10px;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] .text-content {
    margin-left: 0px;
  }
}

section[data-section="Client Slider"] .client-slider,
section[data-section="Client Slider"] .client-slider-mobile {
  margin-top: 100px;
  display: flex;
}

section[data-section="Client Slider"] .client-slider .logo-row,
section[data-section="Client Slider"] .client-slider-mobile .logo-row {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] .client-slider .logo-row,
  section[data-section="Client Slider"] .client-slider-mobile .logo-row {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

section[data-section="Client Slider"] .client-slider .logo,
section[data-section="Client Slider"] .client-slider-mobile .logo {
  display: inline-flex;
  height: 60px;
  width: 115px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

section[data-section="Client Slider"] .client-slider .slick-dots,
section[data-section="Client Slider"] .client-slider-mobile .slick-dots {
  display: flex;
  position: absolute;
  top: -50px;
  left: 30px;
  list-style-type: unset;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] .client-slider .slick-dots,
  section[data-section="Client Slider"] .client-slider-mobile .slick-dots {
    left: calc(50% - 15px);
  }
}

section[data-section="Client Slider"] .client-slider .slick-dots button,
section[data-section="Client Slider"] .client-slider-mobile .slick-dots button {
  display: none;
}

section[data-section="Client Slider"] .client-slider .slick-dots li,
section[data-section="Client Slider"] .client-slider-mobile .slick-dots li {
  width: 20px;
  margin-right: 0px;
  cursor: pointer;
}

section[data-section="Client Slider"] .client-slider .slick-dots li::marker,
section[data-section="Client Slider"] .client-slider-mobile .slick-dots li::marker {
  color: grey;
  font-size: 12px;
  transform-origin: 50% 50%;
}

section[data-section="Client Slider"] .client-slider .slick-dots li.slick-active::marker,
section[data-section="Client Slider"] .client-slider-mobile .slick-dots li.slick-active::marker {
  font-size: 20px;
  color: #9f368b;
}

section[data-section="Client Slider"] .client-slider-mobile {
  display: none;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] .client-slider {
    display: none;
  }
  section[data-section="Client Slider"] .client-slider-mobile {
    display: block;
  }
}

section[data-section="Client Slider"] .banner-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section[data-section="Client Slider"] .logo-no-text {
  height: 64px;
  width: 75px;
  background: url("/wp-content/themes/unibap/assets/icons/logo-no-text.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 42px;
}

section[data-section="Client Slider"] .logo-no-text:last-child {
  margin-bottom: 0px;
}

section[data-section="Client Slider"] .background-logo {
  height: 906px;
  margin-bottom: 180px;
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/wp-content/themes/unibap/assets/icons/background-circle-stick-right.svg");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  section[data-section="Client Slider"] .background-logo {
    display: none;
  }
}

section[data-section="Client Slider"] .banner-title {
  margin-bottom: 40px;
}

section[data-section="Client Slider"] .banner-title:last-child {
  margin-bottom: 0px;
}

section[data-section="Client Slider"] .banner-text {
  margin-bottom: 47px;
}

section[data-section="Client Slider"] .banner-text:last-child {
  margin-bottom: 0px;
}

section[data-section="Clients"] {
  position: relative;
  overflow: hidden;
  padding: 0 80px;
  margin-top: 74px;
}

@media (max-width: 576px) {
  section[data-section="Clients"] {
    padding: 0 20px;
  }
}

section[data-section="Clients"] h1,
section[data-section="Clients"] h2,
section[data-section="Clients"] h3,
section[data-section="Clients"] h4,
section[data-section="Clients"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="Clients"] .title h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

@media (max-width: 992px) {
  section[data-section="Clients"] .title h2 {
    font-size: 28px;
  }
}

section[data-section="Clients"] .content {
  display: flex;
  justify-content: center;
}

section[data-section="Clients"] .content-wrapper {
  height: 100%;
  max-width: 767px;
}

section[data-section="Clients"] .title {
  text-align: center;
  margin-bottom: 23px;
}

section[data-section="Clients"] .logos .logo-row {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

section[data-section="Clients"] .logos .logo {
  height: 60px;
  max-width: 150px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  section[data-section="Clients"] .logos .logo {
    height: 50px;
    max-width: 125px;
  }
}

section[data-section="Clients"] .logos .logo img {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

section[data-section="Video"] {
  height: 986px;
}

@media (max-width: 576px) {
  section[data-section="Video"] {
    height: 890px;
  }
}

section[data-section="Video"] .overlay-wrapper {
  height: 100%;
  width: 100vw;
}

section[data-section="Video"] .overlay-image {
  z-index: 0;
  background-color: #303F9B;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 576px) {
  section[data-section="Video"] .overlay-image {
    padding: 20px;
  }
}

section[data-section="Video"] .overlay-image:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  background: transparent linear-gradient(0deg, #9f368b 0%, #303F9B 50%, #26b5e3 100%) 0% 0% no-repeat padding-box;
}

@media (max-width: 576px) {
  section[data-section="Video"] .overlay-image:after {
    background-size: cover;
  }
}

section[data-section="Video"] .play-button-wrapper {
  cursor: pointer;
  margin-bottom: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section[data-section="Video"] .play-button-wrapper .play-button {
  position: absolute;
  z-index: 2;
  height: 124px;
  width: 124px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 300ms ease-out;
  transform-origin: 50% 50%;
}

section[data-section="Video"] .play-button-wrapper .play-button:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 124px;
  width: 124px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.57);
  transition: all 300ms ease-out;
  transform-origin: 50% 50%;
}

section[data-section="Video"] .play-button-wrapper .arrow {
  position: absolute;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 37px solid #303F9B;
  z-index: 3;
}

section[data-section="Video"] .play-button-wrapper:hover .play-button {
  transform: scale(1.07);
}

section[data-section="Video"] .play-button-wrapper:hover .play-button:after {
  transform: scale(1.36);
  background-color: rgba(255, 255, 255, 0.17);
}

section[data-section="Video"] h2,
section[data-section="Video"] p {
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 560px;
}

section[data-section="Video"] p {
  opacity: 0.7;
}

section[data-section="Video"] h2 {
  margin-bottom: 38px;
}

section[data-section="Video"] .video-container {
  height: 100%;
  width: 100%;
}

section[data-section="Video"] .video-container video {
  width: 100%;
}

section[data-section="Video"] .embed-container {
  width: 100%;
  height: 100%;
}

section[data-section="Video"] .embed-container iframe {
  width: 100%;
  height: 100%;
}

section[data-section="Video"] .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
}

section[data-section="Video"] .overlay.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

section[data-section="Video"] .video-popup {
  margin: 70px auto;
  padding: 0px;
  background: #fff;
  border-radius: 5px;
  width: 1000px;
  max-width: 1000px;
  position: relative;
  transition: all 5s ease-in-out;
}

section[data-section="Video"] .video-popup.embed {
  height: 565px;
}

section[data-section="Video"] .video-popup .close {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 30px;
  height: 30px;
  transition: all 200ms;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-x.svg");
}

section[data-section="Video"] .video-popup .close:hover {
  color: #06d85f;
}

section[data-section="Video"] .video-popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  section[data-section="Video"] .video-popup {
    width: 100%;
  }
  section[data-section="Video"] .video-popup .close {
    right: 10px;
  }
}

section[data-section="CTA Banner"] {
  position: relative;
  height: 112px;
  display: flex;
  justify-content: center;
}

@media (max-width: 576px) {
  section[data-section="CTA Banner"] {
    height: 95px;
  }
}

section[data-section="CTA Banner"] .container {
  position: absolute;
  width: 80%;
  max-width: 1232px;
  bottom: 0px;
  background-color: #303F9B;
  z-index: 0;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 576px) {
  section[data-section="CTA Banner"] .container {
    height: unset;
    padding: 20px;
    width: calc(100% - 40px);
    flex-direction: column;
  }
}

section[data-section="CTA Banner"] a {
  display: block;
}

section[data-section="CTA Banner"] a:hover {
  text-decoration: none;
}

section[data-section="CTA Banner"] .cta-text {
  display: inline-flex;
  color: #fff;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  line-height: 35px;
  font-weight: 600;
  max-width: 60%;
}

@media (max-width: 576px) {
  section[data-section="CTA Banner"] .cta-text {
    max-width: 100%;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
  }
}

section[data-section="Promotion"] {
  position: relative;
  height: 720px;
  display: flex;
  color: #fff;
  background-color: #303F9B;
  overflow: hidden;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] {
    height: unset;
    flex-direction: column;
  }
}

section[data-section="Promotion"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  transition: all 300ms ease-out;
  opacity: 0;
}

section[data-section="Promotion"] .background-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(0deg, #9f368b 0%, #303F9B 50%, #26b5e3 100%) 0% 0% no-repeat padding-box;
  opacity: 0.87;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] .background-wrapper:after {
    background-size: cover;
  }
}

section[data-section="Promotion"] .background-wrapper.active {
  opacity: 1;
}

section[data-section="Promotion"] .background-wrapper.focus {
  transform: scale(1.1);
}

section[data-section="Promotion"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

section[data-section="Promotion"] .promotion-col-wrapper {
  display: inline-flex;
  width: 50%;
  align-items: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

section[data-section="Promotion"] .promotion-col-wrapper:last-of-type {
  border-right: unset;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] .promotion-col-wrapper {
    width: 100%;
    height: 375px;
    border-right: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

section[data-section="Promotion"] .promotion-col-wrapper .promotion-col {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 80px 143px;
  height: 223px;
  background-color: transparent;
  transition: all 600ms ease-out;
  cursor: pointer;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] .promotion-col-wrapper .promotion-col {
    height: 150px;
    padding: 40px 20px;
  }
}

section[data-section="Promotion"] .promotion-col-wrapper .promotion-col p {
  position: absolute;
  opacity: 0;
  bottom: 30px;
  transition: all 600ms ease-out;
  margin-bottom: 0;
  margin-right: 143px;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] .promotion-col-wrapper .promotion-col p {
    margin-right: 0px;
    bottom: 0px;
    padding-right: 20px;
  }
}

section[data-section="Promotion"] .promotion-col-wrapper .promotion-col .icon-wrapper {
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 64px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: all 600ms ease-out;
}

section[data-section="Promotion"] .promotion-col-wrapper .promotion-col .icon-wrapper::after {
  content: "";
  height: 34px;
  width: 34px;
  background: url("/wp-content/themes/unibap/assets/icons/blue-arrow.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

section[data-section="Promotion"] .promotion-col-wrapper .promotion-col .item-index {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 20px;
}

section[data-section="Promotion"] .promotion-col-wrapper:hover .promotion-col, section[data-section="Promotion"] .promotion-col-wrapper.active .promotion-col {
  height: 313px;
  background-color: #303F9B;
}

section[data-section="Promotion"] .promotion-col-wrapper:hover .promotion-col .icon-wrapper, section[data-section="Promotion"] .promotion-col-wrapper.active .promotion-col .icon-wrapper {
  opacity: 1;
}

section[data-section="Promotion"] .promotion-col-wrapper:hover .promotion-col p, section[data-section="Promotion"] .promotion-col-wrapper.active .promotion-col p {
  bottom: 80px;
  opacity: 0.7;
}

@media (max-width: 992px) {
  section[data-section="Promotion"] .promotion-col-wrapper:hover .promotion-col, section[data-section="Promotion"] .promotion-col-wrapper.active .promotion-col {
    height: 262px;
  }
  section[data-section="Promotion"] .promotion-col-wrapper:hover .promotion-col p, section[data-section="Promotion"] .promotion-col-wrapper.active .promotion-col p {
    bottom: 40px;
  }
}

section[data-section="Representatives"] {
  position: relative;
  padding: 80px 142px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 576px) {
  section[data-section="Representatives"] {
    padding: 70px 20px;
  }
}

section[data-section="Representatives"] .logo {
  height: 68px;
  width: 80px;
  margin-bottom: 42px;
  background: url("/wp-content/themes/unibap/assets/icons/logo-no-text.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

section[data-section="Representatives"] .title {
  max-width: 670px;
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  section[data-section="Representatives"] .title {
    max-width: 80%;
  }
}

section[data-section="Representatives"] .representatives {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  section[data-section="Representatives"] .representatives {
    flex-wrap: wrap;
  }
}

section[data-section="Representatives"] .representative-wrapper {
  position: relative;
  height: 400px;
  width: 354px;
  margin: 20px;
  cursor: pointer;
}

section[data-section="Representatives"] .representative-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(0deg, #9f368b 0%, #303F9B 50%, #26b5e3 100%) 0% 0% no-repeat padding-box;
  opacity: 0;
  transition: all 300ms ease-out;
}

section[data-section="Representatives"] .representative-wrapper .text-wrapper {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  opacity: 0;
  transition: all 300ms ease-out;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 17px;
  line-height: 26px;
}

section[data-section="Representatives"] .representative-wrapper .text-wrapper p {
  margin-bottom: 42px;
}

section[data-section="Representatives"] .representative-wrapper .text-wrapper .name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

section[data-section="Representatives"] .representative-wrapper .text-wrapper .email {
  text-decoration: underline;
  opacity: 0.7;
}

section[data-section="Representatives"] .representative-wrapper .text-wrapper .email:hover {
  color: #fff;
}

section[data-section="Representatives"] .representative-wrapper:hover .overlay {
  opacity: 0.6;
}

section[data-section="Representatives"] .representative-wrapper:hover .text-wrapper {
  bottom: 55px;
  opacity: 1;
}

@media (max-width: 576px) {
  section[data-section="Representatives"] .representative-wrapper {
    margin: 10px 0;
  }
  section[data-section="Representatives"] .representative-wrapper .overlay {
    opacity: 0.6;
  }
  section[data-section="Representatives"] .representative-wrapper .text-wrapper {
    bottom: 55px;
    opacity: 1;
  }
}

section[data-section="Representatives"] .background-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

section[data-section="News Puffs"] {
  position: relative;
  display: flex;
  padding: 0 60px 20px;
  margin-top: 74px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  section[data-section="News Puffs"] {
    padding: 0 20px 20px;
  }
}

@media (max-width: 768px) {
  section[data-section="News Puffs"] {
    padding: 0;
  }
}

section[data-section="News Puffs"] h1,
section[data-section="News Puffs"] h2,
section[data-section="News Puffs"] h3,
section[data-section="News Puffs"] h4,
section[data-section="News Puffs"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="News Puffs"] a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

section[data-section="News Puffs"] .text-wrapper {
  width: 100%;
  max-width: 700px;
  text-align: center;
  gap: 28px;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

section[data-section="News Puffs"] .text-wrapper h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

section[data-section="News Puffs"] .text-wrapper p {
  font-size: 16px;
  line-height: 130%;
}

section[data-section="News Puffs"] .post-container {
  position: relative;
}

@media (max-width: 768px) {
  section[data-section="News Puffs"] .post-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

section[data-section="News Puffs"] .post-count {
  display: none;
  position: absolute;
  bottom: 67px;
  left: 30px;
}

section[data-section="News Puffs"] .post-count .dot {
  height: 9px;
  width: 9px;
  background-color: rgba(130, 130, 130, 0.3);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

section[data-section="News Puffs"] .post-count .dot.active {
  background-color: #828282;
}

@media (max-width: 768px) {
  section[data-section="News Puffs"] .post-count {
    display: flex;
  }
}

section[data-section="News Puffs"] .content-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  overflow-x: hidden;
  padding: 25px;
}

@media (max-width: 768px) {
  section[data-section="News Puffs"] .content-wrapper.post-slider {
    justify-content: flex-start;
    gap: 0px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    transform: translateX(0px);
    padding: 20px 0;
  }
}

section[data-section="News Puffs"] .post-info-wrapper {
  position: relative;
  display: block;
  height: 237px;
  padding: 30px 32px;
}

section[data-section="News Puffs"] .post-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 477px;
  width: 406px;
  color: #000;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background-color: #fafafa;
}

@media (max-width: 992px) {
  section[data-section="News Puffs"] .post-content-wrapper {
    width: 340px;
  }
}

@media (max-width: 768px) {
  section[data-section="News Puffs"] .post-content-wrapper {
    width: 100%;
  }
  section[data-section="News Puffs"] .post-content-wrapper.post-slider-item {
    transition: all 0.5s ease-in-out;
    height: 582px;
  }
}

section[data-section="News Puffs"] .post-content-wrapper.hidden {
  display: none;
}

section[data-section="News Puffs"] .post-content-wrapper .post-date {
  margin-bottom: 10px;
  color: #828282;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
}

section[data-section="News Puffs"] .post-content-wrapper .post-title {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

section[data-section="News Puffs"] .post-content-wrapper .post-excerpt {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

section[data-section="News Puffs"] .post-content-wrapper .post-read-more-wrapper {
  position: absolute;
  bottom: 35px;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
}

section[data-section="News Puffs"] .post-content-wrapper .background {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: top center;
  background-color: #fff;
}

section[data-section="News Puffs"] .post-content-wrapper:hover {
  text-decoration: none;
}

section[data-section="News Puffs"] .post-content-wrapper:hover .post-read-more-wrapper {
  text-decoration: underline;
  color: #3fb5d8;
}

@media (min-width: 768px) {
  section[data-section="News Puffs"] .post-content-wrapper:hover {
    transform: scale(1.02);
  }
}

section[data-section="News Puffs"] .viewmore-container {
  width: 31.6666666667vw;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 576px) {
  section[data-section="News Puffs"] .viewmore-container {
    width: auto;
    margin: 15px;
  }
}

section[data-section="News Puffs"] .progress-text {
  text-align: center;
  margin-bottom: 2.0833333333vw;
  font-size: 14px;
}

section[data-section="News Puffs"] .progress-bar {
  width: 100%;
  height: 0.4166666667vw;
  background-color: #eef0f7;
  margin-bottom: 1.5972222222vw;
}

@media (max-width: 576px) {
  section[data-section="News Puffs"] .progress-bar {
    height: 3px;
    margin-bottom: 20px;
  }
}

section[data-section="News Puffs"] .progress-bar-filled {
  background-color: #303F9B;
  height: 100%;
}

section[data-section="News Puffs"] .view-more-button p {
  padding: 14px 24px;
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

section[data-section="Quote"] {
  padding: 80px 142px;
  position: relative;
  display: flex;
  justify-content: center;
}

@media (max-width: 576px) {
  section[data-section="Quote"] {
    padding: 80px 40px;
    padding-right: 20px;
  }
}

section[data-section="Quote"] .wrapper {
  max-width: 1232px;
  display: flex;
}

section[data-section="Quote"] .content {
  display: inline-flex;
  flex-direction: column;
  width: 60%;
}

@media (max-width: 992px) {
  section[data-section="Quote"] .content {
    width: 100%;
  }
}

section[data-section="Quote"] .logo,
section[data-section="Quote"] .logo-right {
  height: 55px;
  width: 77px;
  margin-bottom: 48px;
  background: url("/wp-content/themes/unibap/assets/icons/quotation.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

section[data-section="Quote"] .logo-right {
  background: url("/wp-content/themes/unibap/assets/icons/quotation-right.svg");
  display: none;
}

section[data-section="Quote"] .quote-text {
  margin-bottom: 50px;
  font-size: 28px;
  line-height: 120%;
}

@media (max-width: 768px) {
  section[data-section="Quote"] .quote-text {
    font-size: 24px;
  }
}

section[data-section="Quote"] .author {
  margin-bottom: 8px;
}

section[data-section="Quote"] .author-title {
  margin-bottom: 42px;
}

section[data-section="Quote"] .company-logo {
  display: block;
  height: 20px;
  width: 120px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

section[data-section="Quote"].right .wrapper {
  justify-content: flex-end;
}

section[data-section="Quote"].right .content {
  text-align: right;
  align-items: flex-end;
}

section[data-section="Quote"].right .logo {
  display: none;
}

section[data-section="Quote"].right .logo-right {
  display: block;
}

section[data-section="Quote"].center .wrapper {
  justify-content: center;
}

section[data-section="Usps"] {
  position: relative;
  overflow: hidden;
}

section[data-section="Usps"] h1,
section[data-section="Usps"] h2,
section[data-section="Usps"] h3,
section[data-section="Usps"] h4,
section[data-section="Usps"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 120%;
}

section[data-section="Usps"] .title h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

@media (max-width: 992px) {
  section[data-section="Usps"] .title h2 {
    font-size: 28px;
  }
}

section[data-section="Usps"] .title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  max-width: 767px;
  padding: 0 60px;
}

@media (max-width: 576px) {
  section[data-section="Usps"] .title {
    padding: 0px 20px;
  }
}

section[data-section="Usps"] .postamble p {
  font-size: 14px;
  line-height: 140%;
}

section[data-section="Usps"] .postamble {
  margin-top: 50px;
  text-align: center;
  padding: 0 40px;
}

@media (max-width: 576px) {
  section[data-section="Usps"] .postamble {
    padding: 0;
  }
}

section[data-section="Usps"] .content-wrapper {
  height: 100%;
  width: 100%;
}

section[data-section="Usps"] .content-wrapper-inner {
  position: relative;
  padding: 84px 0px;
  justify-content: center;
}

@media (max-width: 992px) {
  section[data-section="Usps"] .content-wrapper-inner {
    padding: 80px 24px;
  }
}

section[data-section="Usps"] .grid-background.grid-grey {
  background: left/2000px url("/wp-content/themes/unibap/assets/images/grid_grey.jpg");
}

section[data-section="Usps"] .grid-background.grid-blue {
  background: left/2000px url("/wp-content/themes/unibap/assets/images/grid_blue.jpg");
}

section[data-section="Usps"] .blur-overlay {
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 1;
  left: 0;
  right: 0;
}

section[data-section="Usps"] .blur-overlay--top {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 243, 240, 0) 80%);
}

section[data-section="Usps"] .blur-overlay--bottom {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(247, 243, 240, 0) 80%);
}

section[data-section="Usps"] .usps {
  max-width: 1400px;
}

@media (min-width: 768px) {
  section[data-section="Usps"] .usps {
    padding: 0;
  }
}

section[data-section="Usps"] .usps .usp-row {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 992px) {
  section[data-section="Usps"] .usps .usp-row {
    justify-content: center;
    gap: 65px;
  }
}

section[data-section="Usps"] .usps .usp-row .usp {
  width: 200px;
}

section[data-section="Usps"] .usps .usp-row .usp:has(.satellite) {
  width: 240px;
}

section[data-section="Usps"] .usps .usp-row.usp-count-3 {
  gap: 100px;
  row-gap: 40px;
  justify-content: center;
}

section[data-section="Usps"] .usps .usp-row.usp-count-3 .usp.wide {
  width: 240px;
}

section[data-section="Usps"] .usps .usp-row.usp-count-2 {
  gap: 120px;
  row-gap: 40px;
  justify-content: center;
}

@media (max-width: 992px) {
  section[data-section="Usps"] .usps .usp-row.usp-count-2 {
    column-gap: 50px;
  }
}

section[data-section="Usps"] .usps .usp-row.usp-count-2 .usp.wide {
  width: 340px;
}

@media (max-width: 992px) {
  section[data-section="Usps"] .usps .usp-row.usp-count-2 .usp.wide {
    width: 240px;
  }
}

section[data-section="Usps"] .usps .usp .logo-link {
  display: block;
  width: fit-content;
}

section[data-section="Usps"] .usps .usp .lottie-player-interactive {
  width: 145px;
  height: 145px;
}

section[data-section="Usps"] .usps .usp .lottie-player-interactive.satellite {
  width: 100%;
  height: 210px;
}

section[data-section="Usps"] .usps .usp img {
  width: 100%;
  height: 150px;
}

section[data-section="Usps"] .usps .usp h4 {
  font-size: 16px;
  font-weight: 700;
}

section[data-section="Usps"] .usps .usp p {
  font-size: 14px;
  line-height: 195%;
}

@media (max-width: 576px) {
  section[data-section="Usps"] .usps .usp p {
    line-height: 180%;
  }
}

section[data-section="Usps"] .usps .usp .usp-text-wrapper {
  margin-top: 25px;
}

section[data-section="Usps"] .usps .usp .usp-divider {
  margin: 20px 0;
  border-top: 3px solid #3fb5d8;
  width: 48px;
}

section[data-section="Fullwidth Image Text"] {
  height: 525px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  section[data-section="Fullwidth Image Text"] {
    height: 795px;
  }
}

section[data-section="Fullwidth Image Text"] h1,
section[data-section="Fullwidth Image Text"] h2,
section[data-section="Fullwidth Image Text"] h3,
section[data-section="Fullwidth Image Text"] h4,
section[data-section="Fullwidth Image Text"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="Fullwidth Image Text"] a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

section[data-section="Fullwidth Image Text"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 1;
}

section[data-section="Fullwidth Image Text"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-color: #000;
  display: flex;
}

section[data-section="Fullwidth Image Text"] .content {
  justify-content: center;
}

section[data-section="Fullwidth Image Text"] .content-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  color: #fff;
  max-width: 700px;
}

@media (max-width: 992px) {
  section[data-section="Fullwidth Image Text"] .content-wrapper {
    justify-content: flex-start;
    padding-top: 72px;
  }
}

section[data-section="Fullwidth Image Text"] .title {
  margin-bottom: 30px;
  max-width: 700px;
}

@media (max-width: 992px) {
  section[data-section="Fullwidth Image Text"] .title {
    margin-bottom: 17px;
    max-width: 340px;
  }
}

section[data-section="Fullwidth Image Text"] .title h2 {
  font-size: 42px;
  line-height: 120%;
  font-weight: 700;
}

section[data-section="Fullwidth Image Text"] .text {
  margin-bottom: 40px;
  max-width: 362px;
}

@media (max-width: 992px) {
  section[data-section="Fullwidth Image Text"] .text {
    margin-bottom: 25px;
    max-width: 287px;
  }
}

section[data-section="Fullwidth Image Text"] .text p {
  font-size: 16px;
  line-height: 130%;
}

section[data-section="Fullwidth Image Text"] .buttons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  max-width: 362px;
}

@media (max-width: 992px) {
  section[data-section="Fullwidth Image Text"] .buttons {
    margin-bottom: 25px;
    max-width: 287px;
  }
}

@media (max-width: 768px) {
  section[data-section="Fullwidth Image Text"] .content {
    justify-content: left;
    padding-left: 24px;
    padding-right: 24px;
  }
}

section[data-section="Posts Cards"] {
  position: relative;
  display: flex;
  padding: 0 60px 20px;
  margin-top: 74px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  section[data-section="Posts Cards"] {
    padding: 0 20px 20px;
  }
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] {
    padding: 0;
  }
}

section[data-section="Posts Cards"] h1,
section[data-section="Posts Cards"] h2,
section[data-section="Posts Cards"] h3,
section[data-section="Posts Cards"] h4,
section[data-section="Posts Cards"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="Posts Cards"] a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

section[data-section="Posts Cards"] .text-wrapper {
  width: 100%;
  max-width: 700px;
  text-align: center;
  gap: 28px;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .text-wrapper {
    margin-bottom: 10px;
  }
}

section[data-section="Posts Cards"] .text-wrapper h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

section[data-section="Posts Cards"] .text-wrapper p {
  font-size: 16px;
  line-height: 130%;
}

section[data-section="Posts Cards"] .post-container {
  position: relative;
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .post-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

section[data-section="Posts Cards"] .post-count {
  display: none;
  position: absolute;
  top: 67px;
  left: 30px;
}

section[data-section="Posts Cards"] .post-count .dot {
  height: 9px;
  width: 9px;
  background-color: rgba(130, 130, 130, 0.3);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

section[data-section="Posts Cards"] .post-count .dot.active {
  background-color: #828282;
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .post-count {
    display: flex;
  }
}

section[data-section="Posts Cards"] .content-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  overflow-x: hidden;
  padding: 25px;
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .content-wrapper {
    justify-content: flex-start;
    gap: 0px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    transform: translateX(0px);
    padding: 20px 0;
  }
}

section[data-section="Posts Cards"] .post-info-wrapper {
  position: relative;
  display: block;
  height: 111px;
  padding: 30px 32px;
  margin-bottom: 10px;
}

section[data-section="Posts Cards"] .post-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 477px;
  width: 406px;
  color: #000;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background-color: #fafafa;
}

@media (max-width: 992px) {
  section[data-section="Posts Cards"] .post-content-wrapper {
    width: 340px;
  }
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .post-content-wrapper {
    transition: all 0.5s ease-in-out;
    height: 582px;
    width: 100%;
    justify-content: flex-end;
  }
}

section[data-section="Posts Cards"] .post-content-wrapper .post-date {
  margin-bottom: 10px;
  color: #828282;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
}

section[data-section="Posts Cards"] .post-content-wrapper .post-title {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

section[data-section="Posts Cards"] .post-content-wrapper .post-excerpt {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

section[data-section="Posts Cards"] .post-content-wrapper .post-read-more-wrapper {
  position: absolute;
  bottom: 35px;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
}

section[data-section="Posts Cards"] .post-content-wrapper .background {
  position: relative;
  height: 366px;
  background-size: cover;
  background-position: top center;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  section[data-section="Posts Cards"] .post-content-wrapper .background {
    height: 400px;
  }
}

section[data-section="Posts Cards"] .post-content-wrapper .background img {
  transform: translateX(20%);
  height: 100%;
  width: auto;
}

section[data-section="Posts Cards"] .post-content-wrapper .center-images {
  justify-content: center;
}

section[data-section="Posts Cards"] .post-content-wrapper img.no-transformX {
  transform: translateX(0);
}

section[data-section="Posts Cards"] .post-content-wrapper:hover {
  text-decoration: none;
}

section[data-section="Posts Cards"] .post-content-wrapper:hover .post-read-more-wrapper {
  text-decoration: underline;
  color: #3fb5d8;
}

@media (min-width: 768px) {
  section[data-section="Posts Cards"] .post-content-wrapper:hover {
    transform: scale(1.02);
  }
}

section[data-section="Title and Buttons"] {
  position: relative;
  overflow: hidden;
  padding: 0 80px;
  margin-top: 74px;
}

@media (max-width: 576px) {
  section[data-section="Title and Buttons"] {
    padding: 0 20px;
  }
}

section[data-section="Title and Buttons"] h1,
section[data-section="Title and Buttons"] h2,
section[data-section="Title and Buttons"] h3,
section[data-section="Title and Buttons"] h4,
section[data-section="Title and Buttons"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

section[data-section="Title and Buttons"] .title h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

@media (max-width: 992px) {
  section[data-section="Title and Buttons"] .title h2 {
    font-size: 28px;
  }
}

section[data-section="Title and Buttons"] .content {
  display: flex;
  justify-content: center;
}

section[data-section="Title and Buttons"] .content-wrapper {
  height: 100%;
  max-width: 767px;
}

section[data-section="Title and Buttons"] .title {
  text-align: center;
  margin-bottom: 23px;
}

section[data-section="Title and Buttons"] .buttons .button-row {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 20px;
}

section[data-section="Title and Buttons"] .buttons .button-wrapper {
  max-width: 220px;
  margin-top: 10px;
  margin-bottom: 10px;
}

section[data-section="Title and Buttons"] .buttons .button-wrapper button a {
  color: #000;
}

section[data-section="Pdf Viewer"] {
  overflow: hidden;
  margin: 60px 0;
}

section[data-section="Pdf Viewer"] h1,
section[data-section="Pdf Viewer"] h2,
section[data-section="Pdf Viewer"] h3,
section[data-section="Pdf Viewer"] h4,
section[data-section="Pdf Viewer"] p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 120%;
}

section[data-section="Pdf Viewer"] .content {
  height: 100%;
  margin: 0 20px;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .text-wrapper {
  width: 766px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 14px;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .image-wrapper {
  max-width: 840px;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .image-wrapper button {
  border: none;
  background: none;
  padding: 0;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .image-wrapper button:hover {
  transform: scale(1.02);
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .image-wrapper button:active, section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .image-wrapper button:focus {
  outline: none;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay {
  display: none;
  position: fixed;
  padding: 120px 80px 80px 80px;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper {
  display: flex;
  width: 100%;
  justify-content: end;
  color: white;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper button {
  border: 0;
  background: none;
  color: white;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper button * {
  cursor: pointer;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper button:hover {
  text-decoration: underline;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper button:active, section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay .pdf-frame .pdf-close-button-wrapper button:focus {
  text-decoration: underline;
  outline: none;
}

section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper .pdf-overlay.pdf-isOpen {
  display: block;
}

@media (max-width: 768px) {
  section[data-section="Pdf Viewer"] .pdfViewer-desktop-content-wrapper {
    display: none;
  }
}

section[data-section="Pdf Viewer"] .pdfViewer-mobile-content-wrapper {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

section[data-section="Pdf Viewer"] .pdfViewer-mobile-content-wrapper .text-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 20px 10px 20px;
  font-size: 12px;
}

section[data-section="Pdf Viewer"] .pdfViewer-mobile-content-wrapper .image-wrapper {
  width: 100%;
}

@media (max-width: 767px) {
  section[data-section="Pdf Viewer"] .pdfViewer-mobile-content-wrapper {
    display: flex;
  }
}

/* --partials-- */
/* --components-- */
img {
  width: 100%;
}

img[data-srcset], img[data-src] {
  opacity: 0;
  transition: 150ms opacity ease-out;
}

img[data-srcset].akm-lazy-loaded, img[data-src].akm-lazy-loaded {
  opacity: 1;
}

.akm-carousel {
  white-space: nowrap;
  position: relative;
}

.akm-carousel:focus {
  outline: 0;
}

.akm-carousel .akm-position-indicators {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  height: auto;
}

.akm-carousel .akm-position-indicators > * {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 100%;
  margin: 0 5px;
  transition: background-color 200ms ease-in-out;
}

.akm-carousel .akm-position-indicators > *.akm-active {
  background-color: #000;
}

.akm-carousel > :not(button) {
  height: 100%;
  overflow: hidden;
}

.akm-carousel > :not(button) > * {
  transition: transform 600ms ease-out;
  height: 100%;
  font-size: 0;
}

.akm-carousel > :not(button) > * > * {
  display: inline-block;
}

.akm-carousel > button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 10px;
  line-height: 0;
  font-size: 50px;
  background-color: transparent;
}

.akm-carousel > button:hover {
  opacity: .6;
}

.akm-carousel > button:active {
  opacity: .3;
}

.akm-carousel > button:disabled {
  opacity: .3;
}

.akm-carousel > button[data-direction='left'] {
  left: -30px;
}

.akm-carousel > button[data-direction='right'] {
  right: -30px;
}

input {
  font-family: inherit;
}

nav {
  padding: 0;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2000;
  top: 0;
  background: transparent linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)) no-repeat padding-box;
  overflow: visible;
  pointer-events: none;
}

nav h1,
nav h2,
nav h3,
nav h4,
nav p,
nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 140%;
  color: #fff;
}

@media (max-width: 992px) {
  nav {
    flex-direction: column;
    pointer-events: none;
  }
}

nav:hover .logo {
  opacity: 1;
}

nav .header-navigation-items {
  display: flex;
  z-index: 4;
  color: white;
  height: 25px;
  position: relative;
  margin-top: 24px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
}

nav .header-navigation-items.hidden {
  display: none;
}

nav .header-navigation-items a:hover {
  color: inherit;
}

nav .header-navigation-items .menu-item-index {
  background-color: #26b5e3;
}

nav .header-navigation-items .header-navigation-item {
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}

nav .header-navigation-items .header-navigation-item span {
  text-transform: uppercase;
}

nav .header-navigation-items .header-navigation-item .menu-item-index {
  margin-right: 24px;
}

nav .header-navigation-items .header-navigation-sub-item-wrapper {
  display: inline-flex;
  position: relative;
  margin-left: 24px;
  cursor: pointer;
}

nav .header-navigation-items .header-navigation-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 40px;
  background-color: #303F9B;
  color: white;
  padding: 22px 20px;
  width: 300px;
  transition: all 300ms ease-out;
}

nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-items {
  flex-direction: column;
  display: flex;
}

nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-item {
  position: relative;
  font-size: 17px;
  opacity: 0.5;
  margin-bottom: 21px;
  font-family: "Montserrat", sans-serif;
}

nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-item.current-item, nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-item:hover {
  opacity: 1;
}

nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-item.current-item::after {
  content: " ";
  background-image: url("/wp-content/themes/unibap/assets/icons/icon-check.svg");
  background-size: contain;
  height: 24px;
  width: 24px;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -1px;
}

nav .header-navigation-items .header-navigation-dropdown .header-navigation-dropdown-item:last-of-type {
  margin-bottom: 0;
}

nav .header-navigation-items .header-navigation-dropdown.open {
  opacity: 1;
  pointer-events: all;
}

nav .header-navigation-items .header-navigation-sub-item {
  font-weight: 600;
  display: flex;
  align-items: center;
}

nav .header-navigation-items .header-navigation-sub-item::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  right: -33px;
  transform-origin: 50% 50%;
}

nav .header-navigation-items .header-navigation-sub-item.open::after {
  transform: rotate(180deg);
}

nav .header-navigation-items .has-children {
  border-right: 2px solid white;
}

nav .desktop-menu {
  height: 80px;
  width: 100%;
  position: relative;
  display: flex;
  pointer-events: none;
}

nav .desktop-menu .top-logo-wrapper,
nav .desktop-menu .header-bar,
nav .desktop-menu .hamburger-wrapper,
nav .desktop-menu .search-wrapper,
nav .desktop-menu .search-button {
  pointer-events: all;
}

@media (max-width: 992px) {
  nav .desktop-menu {
    display: none;
  }
}

nav .desktop-menu::after {
  content: " ";
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

nav .main-menu-wrapper,
nav .main-menu,
nav .navigation-items,
nav .navigation-item {
  pointer-events: all;
}

nav .top-logo-wrapper {
  z-index: 4;
  margin-left: 1.7361111111vw;
}

nav .top-logo {
  width: 93px;
  height: 119px;
  display: block;
  background-image: url("/wp-content/themes/unibap/assets/icons/unibap-white-logo.jpg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
}

nav .top-logo.viewport-bottom {
  opacity: 0;
  transition: 0.2s ease-out;
}

nav .main-menu-wrapper {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: right;
  opacity: 1;
}

nav .main-menu-wrapper.hidden {
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

nav .menu-item-index {
  margin-right: 6.25vw;
  height: 6px;
  width: 6px;
  background-color: #fff;
}

nav .main-menu-overlay.open {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

nav .main-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 24vw;
  height: 100vh;
  display: none;
  z-index: 3;
}

nav .main-menu-wrapper.open {
  display: flex;
}

nav .main-menu-wrapper .main-menu {
  width: 100%;
  flex-direction: column;
  display: inline-flex;
  height: 100%;
  background-color: #303F9B;
  color: white;
  font-size: 18px;
}

nav .main-menu-wrapper .sub-menu {
  width: 55%;
  height: 100vh;
  background-color: #303F9B;
  color: white;
  font-size: 18px;
  display: inline-flex;
  flex-direction: column;
  z-index: 2;
}

nav .main-menu-wrapper .main-menu-image {
  width: 60%;
}

nav .main-menu-wrapper .background-image {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

nav .main-menu-wrapper .background-image .submenu-background-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

nav .main-menu-wrapper .background-op:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

nav .main-menu-wrapper.hidden {
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 992px) {
  nav .main-menu-wrapper {
    display: none !important;
  }
}

nav .navigation-items {
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
}

nav .navigation-items::-webkit-scrollbar {
  display: none;
}

nav .navigation-item {
  padding: 9px 1.6666666667vw;
  margin-bottom: 30px;
  width: auto;
  display: flex;
  align-items: center;
  float: left;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  cursor: pointer;
  font-weight: 700;
  opacity: 0.5;
}

nav .navigation-item.open {
  background: url("/wp-content/themes/unibap/assets/masks/active-menuitem-background.svg");
}

nav .navigation-item.active-item, nav .navigation-item:active {
  opacity: 1;
  text-decoration: underline;
  transition: 0.1s ease-out;
  font-weight: 700;
}

nav .navigation-item.active-item .menu-item-index, nav .navigation-item:active .menu-item-index {
  background-color: #26b5e3;
}

nav .navigation-item:hover {
  text-decoration: underline;
  opacity: 1;
}

nav .navigation-submenu-wrapper {
  top: 0;
  width: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
  flex-direction: column;
  transition: opacity 100ms linear;
}

nav .navigation-submenu-wrapper .current-item {
  font-weight: 700;
}

nav .navigation-submenu-wrapper .navigation-submenu-content {
  position: fixed;
  top: 0;
  width: fit-content;
  display: flex;
  height: 100vh;
  flex-direction: column;
  transition: opacity 100ms linear;
}

nav .navigation-submenu {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 60px;
  padding-right: 20px;
  justify-content: center;
  height: 100%;
}

nav .navigation-submenu .current-item {
  font-weight: 700;
}

nav .navigation-submenu-item {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  color: #fff;
  text-decoration: none;
  line-height: normal;
  margin-right: 0;
  padding-top: 0px;
  font-weight: 700;
  padding-bottom: 40px;
  transition: all 300ms ease-out;
}

nav .navigation-submenu-item:hover {
  text-decoration: underline;
}

nav .navigation-submenu-item.current-item {
  text-decoration: underline;
}

nav .hamburger-wrapper {
  cursor: pointer;
  position: relative;
  z-index: 5;
  display: flex;
}

nav .header-bar {
  display: flex;
  height: 64px;
  position: absolute;
  right: 20px;
  align-items: center;
}

nav .toggle-menu-text {
  color: white;
  position: relative;
  display: inline-flex;
  width: 100px;
  height: 17px;
  line-height: 17px;
  font-size: 17px;
  font-weight: 600;
  z-index: 5;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
}

nav .toggle-menu-text .menu-closed {
  position: absolute;
  top: 0px;
  opacity: 1;
  transition: all 150ms ease-in;
}

nav .toggle-menu-text .menu-open {
  position: absolute;
  top: 15px;
  opacity: 0;
  transition: all 150ms ease-in;
}

nav .toggle-menu-text.open .menu-closed {
  transform: translateY(-15px);
  opacity: 0;
}

nav .toggle-menu-text.open .menu-open {
  transform: translateY(-15px);
  opacity: 1;
}

nav .search-wrapper {
  display: inline-flex;
  margin-right: 40px;
}

nav .search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  z-index: 4;
}

nav .search-button.hidden {
  display: none;
}

nav .search-button .search-icon {
  width: 24px;
  height: 24px;
  display: block;
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-search.svg");
  transition: background 200ms ease-in-out;
}

nav .search-button .search-icon.active {
  background: center/contain no-repeat url("/wp-content/themes/unibap/assets/icons/white-x.svg");
  transition: background 200ms ease-in-out;
}

nav .search-bar {
  display: flex;
  justify-content: center;
  z-index: 4;
  width: 100%;
  max-width: 30vw;
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

nav .search-bar.hidden {
  display: none;
}

nav .search-bar input {
  height: auto;
  min-height: 2.4305555556vw;
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: 0;
  opacity: 0;
  border-bottom: 0.06944vw solid #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  padding: 11px 0;
  transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

nav .search-bar input::placeholder {
  color: #fff;
}

@media screen and (min-width: 1920px) {
  nav .search-bar input {
    font-size: 0.8854166667vw;
    line-height: 1.4583333333vw;
  }
}

nav .search-bar.active {
  opacity: 1;
  transition: opacity 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: all;
}

nav .search-bar.active input {
  opacity: 1;
  margin-left: 0vw;
  transition: opacity, margin-left 1300ms cubic-bezier(0.19, 1, 0.22, 1);
}

nav .mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  min-height: 75px;
  pointer-events: none;
}

nav .mobile-menu .hamburger-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  pointer-events: all;
}

nav .mobile-menu .search-toggle-button {
  position: absolute;
  top: 23px;
  right: 140px;
  left: unset;
  width: 24px;
  height: 24px;
}

nav .mobile-menu.open {
  pointer-events: all;
  background-color: #303f9b;
}

nav .mobile-menu.open:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  nav .mobile-menu {
    display: flex;
  }
}

nav .mobile-top-logo-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 3;
  pointer-events: all;
  background-image: url("/wp-content/themes/unibap/assets/icons/unibap-white-logo.jpg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  width: 63px;
  height: 80px;
}

@media (max-width: 992px) {
  nav .mobile-top-logo-wrapper {
    display: block;
  }
}

nav .mobile-top-logo-wrapper.viewport-bottom {
  opacity: 0;
  transition: 0.2s ease-out;
}

nav .top-menu-wrapper {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1;
}

nav .hamburger {
  pointer-events: all;
  position: fixed;
  top: 22px;
  right: 24px;
  cursor: pointer;
  display: block;
  z-index: 4;
  width: 20px;
  height: 20px;
}

nav .hamburger.open .bar {
  border-color: #fff;
}

nav .hamburger.open .bar:first-of-type {
  top: 50%;
}

nav .hamburger.open .bar:last-of-type {
  top: 50%;
}

nav .bar {
  transform-origin: 50% 50%;
  left: 0;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 1px;
  transition: top 100ms ease;
  width: 100%;
}

nav .bar:first-of-type {
  top: 20%;
}

nav .bar:last-of-type {
  top: 80%;
}

nav .search-toggle-button {
  display: none;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 34px;
  z-index: 4;
  background: url("/wp-content/themes/unibap/assets/icons/search.svg") center center/contain no-repeat;
}

nav .search-toggle-button.open {
  display: flex;
}

nav .mobile-menu-overlay {
  display: none;
  height: 100%;
  max-height: calc( 100vh - 80px - 20px - 75px);
  min-height: calc(100vh - 80px);
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  overflow-y: scroll;
  box-shadow: 0px 14px 10px 2px rgba(0, 0, 0, 0.85);
  color: #fff;
}

nav .mobile-menu-overlay.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 1;
}

nav .mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  margin: 47px 20px;
  overflow: scroll;
}

nav .mobile-menu-wrapper::-webkit-scrollbar {
  display: none;
}

nav .mobile-menu-wrapper span {
  font-size: 18px;
}

nav .mobile-navigation-item-wrapper {
  margin-bottom: 38px;
}

nav .mobile-navigation-item-wrapper .menu-item-index {
  background-color: #26b5e3;
}

nav .mobile-navigation-item-wrapper.active-sibling .mobile-navigation-item {
  opacity: 0.5;
}

nav .mobile-navigation-item-wrapper.active-sibling .menu-item-index {
  background-color: #fff;
}

nav .mobile-navigation-item-wrapper.active-item .mobile-navigation-item {
  opacity: 1;
}

nav .mobile-navigation-item-wrapper.active-item .menu-item-index {
  background-color: #26b5e3;
}

nav .mobile-navigation-item-wrapper a:hover {
  color: #fff;
}

nav .mobile-navigation-item {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 22px;
  opacity: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
}

nav .mobile-navigation-item:hover {
  text-decoration: underline;
}

nav .mobile-navigation-submenu-wrapper {
  display: none;
  flex-direction: column;
  margin: 38px;
  margin-left: 58px;
  margin-bottom: 0;
}

nav .mobile-navigation-submenu-item {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

nav .mobile-navigation-submenu-item:hover {
  color: inherit;
  text-decoration: none;
}

nav .mobile-navigation-submenu-item:last-child {
  margin-bottom: 0;
}

nav .mobile-navigation-submenu-item.current-item {
  display: flex;
  align-items: center;
  opacity: 1;
}

nav .search-overlay {
  display: none;
  height: auto;
  min-height: calc(100vh - 80px);
  width: auto;
  position: fixed;
  z-index: 3;
  top: 80px;
  left: 7.5px;
  right: 7.5px;
  bottom: 7.5px;
  background-color: #303f9b;
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

nav .search-overlay.open {
  display: flex;
  align-items: center;
}

nav .mobile-search-bar {
  width: 100%;
  height: auto;
  margin: 0 30px;
  margin-bottom: 30%;
}

nav .mobile-search-bar input {
  height: auto;
  min-height: 35px;
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 4.8vw;
  line-height: 7.4666666667vw;
  padding: 11px 0;
  transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

nav .mobile-search-bar input::placeholder {
  color: #fff;
}

section[data-section="Search"] {
  opacity: 0;
  height: auto;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
}

section[data-section="Search"] .background-wrapper {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100vw;
  opacity: 0;
  -webkit-animation: fadeIn 800ms ease 400ms forwards;
  -moz-animation: fadeIn 800ms ease 400ms forwards;
  -ms-animation: fadeIn 800ms ease 400ms forwards;
  -o-animation: fadeIn 800ms ease 400ms forwards;
  animation: fadeIn 800ms ease 400ms forwards;
}

section[data-section="Search"] .background-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/unibap/assets/masks/purple-mask.svg");
  background-size: cover;
}

@media (max-width: 576px) {
  section[data-section="Search"] .background-wrapper:after {
    background-size: cover;
  }
}

section[data-section="Search"] .background-wrapper.fullscreen:after {
  background-size: cover;
}

section[data-section="Search"] .background-image {
  height: 100%;
  width: 100%;
  background-size: cover;
}

section[data-section="Search"] .search-hero {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  max-width: 45.2083333333vw;
  align-items: center;
  margin: 0 auto;
  margin-top: 23.9583333333vw;
  margin-bottom: 5.8333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .search-hero {
    max-width: unset;
    width: auto;
    margin: 50% 20px;
  }
}

section[data-section="Search"] .heading {
  color: #fff;
  margin-bottom: 1.5277777778vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .heading {
    margin-bottom: 20px;
  }
}

section[data-section="Search"] .heading h2 {
  font-size: 3.6111111111vw;
  line-height: 5.0694444444vw;
  font-weight: 600;
  padding: 0;
}

@media (max-width: 576px) {
  section[data-section="Search"] .heading h2 {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 0;
  }
}

@media (min-width: 1920px) {
  section[data-section="Search"] .heading h2 {
    font-size: 2.7083333333vw;
    line-height: 3.8020833333vw;
  }
}

section[data-section="Search"] .search-results-wrapper {
  padding: 9.5833333333vw 8.2638888889vw;
}

section[data-section="Search"] .post-content-wrapper {
  display: flex;
  margin-bottom: 4.1666666667vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-content-wrapper {
    flex-direction: column;
  }
}

section[data-section="Search"] .post-content-wrapper:hover {
  text-decoration: none;
  color: initial;
}

section[data-section="Search"] .post-content-wrapper:last-of-type {
  padding-bottom: 0;
}

section[data-section="Search"] .post-content-wrapper.hidden {
  display: none;
}

section[data-section="Search"] .post-image-wrapper {
  margin-right: 8.3333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-image-wrapper {
    margin-right: 0;
  }
}

section[data-section="Search"] .post-image-wrapper img {
  object-fit: contain;
  width: 31.6666666667vw;
  height: 20.8333333333vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-image-wrapper img {
    width: 100%;
    height: auto;
  }
}

section[data-section="Search"] .post-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-info-wrapper {
    margin-top: 10px;
  }
}

section[data-section="Search"] .post-title {
  font-weight: 700;
  font-size: 1.9444444444vw;
  line-height: 2.6388888889vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-title {
    font-size: 5.8666666667vw;
    line-height: 8vw;
  }
}

section[data-section="Search"] .post-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
  color: #707070;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-date {
    font-size: 4.5333333333vw;
    line-height: 8vw;
  }
}

section[data-section="Search"] .post-excerpt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.1805555556vw;
  line-height: 1.9444444444vw;
}

@media (max-width: 576px) {
  section[data-section="Search"] .post-excerpt {
    font-size: 4.5333333333vw;
    line-height: 8vw;
  }
}

section[data-section="Search"] .no-results .heading {
  text-align: center;
  color: #000;
}

footer {
  margin-top: 40px;
  height: auto;
  background: #1b265c;
  color: #fff;
  overflow: hidden;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer p,
footer a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 140%;
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer-container {
  justify-content: center;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  footer .footer-container {
    justify-content: left;
  }
}

footer .content-wrapper {
  padding: 50px 20px 90px;
  display: flex;
  max-width: 1272px;
  margin: 0 auto;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    padding: 42px 0 50px;
    margin-left: 23px;
  }
}

footer .menu {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  padding-top: 35px;
  padding-bottom: 50px;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 768px) {
  footer .menu {
    padding-bottom: 50px;
    flex-direction: column;
    gap: 35px;
  }
}

footer .menu a:hover {
  color: #fff;
}

footer .contact-wrapper {
  position: relative;
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  padding-top: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  footer .contact-wrapper {
    padding-top: 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

footer .contact-wrapper::after {
  content: "";
  height: 1px;
  width: calc(100% - 30px);
  background-color: #fff;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 15px;
}

@media (max-width: 768px) {
  footer .contact-wrapper::after {
    width: 100px;
  }
}

footer .menu-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  footer .menu-items-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
}

footer .menu-item {
  flex: 1 1 calc(33.333% - 32px);
  box-sizing: border-box;
}

footer .menu-item .menu-item {
  flex: 1 1 100%;
  width: 100%;
}

footer .menu-item a {
  padding: 10px;
}

footer .menu-item a:hover .menu-title {
  text-decoration: underline;
}

footer .menu-title {
  display: inline-block;
}

@media (max-width: 768px) {
  footer .email {
    margin-left: 10px;
  }
}

@media (max-width: 576px) {
  footer .email {
    margin-top: 0px;
  }
}

footer .email a:hover,
footer .email :visited {
  color: #fff;
}

@media (max-width: 768px) {
  footer .contact-info {
    margin-left: 10px;
  }
}

footer .adress-container {
  display: flex;
  justify-content: left;
  width: auto;
}

@media (max-width: 576px) {
  footer .adress-container {
    flex-direction: column;
  }
}

footer .left-adress-column,
footer .right-adress-column {
  height: auto;
  width: auto;
}

footer .left-adress-column p,
footer .right-adress-column p {
  white-space: pre-line;
}

@media (max-width: 576px) {
  footer .left-adress-column p,
  footer .right-adress-column p {
    white-space: pre-line;
  }
}

footer .bottom-row {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 576px) {
  footer .bottom-row {
    flex-direction: column;
  }
}

footer .logo-no-text {
  margin-top: 10px;
  height: 64px;
  width: 75px;
  background: url("/wp-content/themes/unibap/assets/icons/unibap-footer-logo.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  footer .logo-no-text {
    margin-left: 10px;
  }
}

footer .social-media-wrapper {
  text-align: right;
  margin-top: 80px;
}

footer .social-media-wrapper.large {
  text-align: left;
  margin-bottom: 72px;
  margin-top: 0px;
}

footer .social-media-wrapper.large .social-media-link,
footer .social-media-wrapper.large .additional-link {
  margin-bottom: 0.6944444444vw;
}

footer .social-media-wrapper.large .social-media-link span,
footer .social-media-wrapper.large .additional-link span {
  opacity: 1;
}

footer .social-media-wrapper.large .social-media-link a,
footer .social-media-wrapper.large .additional-link a {
  text-decoration: underline;
}

footer .social-media-wrapper.large .social-media-link a:hover,
footer .social-media-wrapper.large .social-media-link a :visited,
footer .social-media-wrapper.large .additional-link a:hover,
footer .social-media-wrapper.large .additional-link a :visited {
  color: #fff;
}

@media (max-width: 576px) {
  footer .social-media-wrapper.large .social-media-link,
  footer .social-media-wrapper.large .additional-link {
    margin-bottom: 0px;
  }
}

@media (max-width: 576px) {
  footer .social-media-wrapper {
    text-align: left;
    margin-top: 0px;
  }
}

footer .social-media-link,
footer .additional-link {
  margin-bottom: 0.6944444444vw;
}

@media (max-width: 576px) {
  footer .social-media-link,
  footer .additional-link {
    margin-bottom: 10px;
  }
}

footer .social-media-link span,
footer .additional-link span {
  opacity: 0.7;
}

footer .social-media-link a,
footer .additional-link a {
  text-decoration: underline;
}

footer .social-media-link a:hover,
footer .social-media-link a :visited,
footer .additional-link a:hover,
footer .additional-link a :visited {
  color: #fff;
}

@media (max-width: 576px) {
  footer .additional-links-wrapper {
    margin: 15px;
  }
}

.section-banner {
  position: fixed;
  bottom: 0;
  background-color: #303F9B;
  display: flex;
  flex-direction: row;
  padding: 1.4583333333vw 8.5416666667vw 1.3888888889vw;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
}

.section-banner.fade-out {
  opacity: 0;
}

.section-banner.hidden {
  display: none;
}

.section-banner .close-banner {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  height: 14px;
  width: 14px;
  background: url("/wp-content/themes/unibap/assets/icons/white-x.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

.section-banner h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  max-width: 572px;
}

.section-banner p {
  color: white;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22px;
  max-width: 572px;
}

.section-banner a {
  color: white;
  text-transform: uppercase;
  height: 50px;
  width: 133px;
  background-color: #9f368b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  float: right;
  position: relative;
  top: 6px;
}

@media screen and (max-width: 576px) {
  .section-banner {
    flex-direction: column;
    padding: 21px 20px 20px;
  }
  .section-banner h3 {
    font-size: 17px;
  }
  .section-banner p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .section-banner a {
    font-size: 17px;
    height: 40px;
    width: 106px;
    float: left;
  }
}

section.breadcrumbs {
  opacity: 0;
  height: auto;
  max-width: 58.0555555556vw;
  width: auto;
  margin: 0 auto;
  padding: 5.625vw 0 0 0;
  display: flex;
  justify-content: center;
  -webkit-animation: fadeIn 800ms ease forwards;
  -moz-animation: fadeIn 800ms ease forwards;
  -ms-animation: fadeIn 800ms ease forwards;
  -o-animation: fadeIn 800ms ease forwards;
  animation: fadeIn 800ms ease forwards;
}

section.breadcrumbs .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 44.1666666667vw;
}

section.breadcrumbs .content-wrapper .breadCrumb {
  font-size: 12px;
  display: flex;
  margin-right: 7px;
  margin-bottom: 10px;
}

section.breadcrumbs .content-wrapper .breadCrumb:not(:first-child)::before {
  content: ">";
  margin-right: 7px;
}

section.breadcrumbs .content-wrapper .breadCrumb a, section.breadcrumbs .content-wrapper .breadCrumb p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  letter-spacing: 0.001px;
}

section.breadcrumbs .content-wrapper .breadCrumb a:hover {
  color: #303F9B;
}

@media screen and (max-width: 576px) {
  section.breadcrumbs {
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
    padding-top: 30px;
  }
  section.breadcrumbs .content-wrapper {
    max-width: unset;
    margin-left: 30px;
    margin-right: 30px;
  }
  section.breadcrumbs .content-wrapper .breadCrumb {
    margin-bottom: 5px;
  }
}

/* BUILD GUIDE */
.build-guide.page-wrapper {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  background: none;
  pointer-events: none;
  margin-bottom: 0;
}

.build-guide.page-wrapper .ze-center {
  height: 100vh;
  width: 0;
  border-left: 1px dotted rgba(255, 0, 0, 0.4);
  position: fixed;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.build-guide.page-wrapper .container-fluid {
  height: 100vh;
}

.build-guide.page-wrapper .container-fluid .col-1 .guide {
  background: rgba(255, 0, 0, 0.1);
  height: 100vh;
}

@media (max-width: 767px) {
  .build-guide.page-wrapper .container-fluid .col-1 .guide {
    background: rgba(0, 255, 0, 0.1);
  }
}

/* THEME STYLE */
.page-wrapper {
  z-index: 800;
  background: #fff;
  position: relative;
  margin-bottom: 100vh;
}

.page-wrapper.main-wrapper {
  padding-top: 4.44vw;
}

.post-meta,
label,
.meta-info {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 0.8333333333vw;
  line-height: 1.1111111111vw;
  letter-spacing: 0.001px;
}

small {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8333333333vw;
  line-height: 0.9722222222vw;
  letter-spacing: -0.04vw;
  white-space: nowrap;
  letter-spacing: 0.001px;
}

small.label {
  display: block;
  margin-bottom: 1.1111111111vw;
}

small.copyright {
  position: absolute;
  bottom: 2vw;
  left: 51.2%;
}

blockquote,
.wrapper-ingress blockquote p {
  color: #31409b;
  font-size: 2.2222222222vw;
  line-height: 2.7777777778vw;
  margin-top: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.free-quotetext {
  font-family: "Montserrat", sans-serif;
  color: #31409b;
  font-size: 0.8333333333vw;
  line-height: 1.1111111111vw;
  margin-top: 3.4722222222vw;
  letter-spacing: 0.001px;
}

/* HERO */
.hero-outer {
  background: #f0f0f0;
  height: 41.6666666667vw;
}

.hero-outer .hero-inner {
  height: 41.6666666667vw;
  margin-left: 14.6%;
  padding: 0 2.2222222222vw;
  overflow: visible;
}

.hero-outer .hero-inner h1 {
  width: 70%;
  font-size: 2.7777777778vw;
  line-height: 2.8472222222vw;
  font-weight: 100;
}

.hero-outer .hero-inner .hero-image {
  width: 42.45%;
  height: 20.5555555556vw;
  margin-left: 39.42889%;
  background-image: #efefef;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.hero-outer .hero-inner .hero-image .the-image {
  height: 20.5555555556vw;
  width: 100%;
  display: block;
  position: absolute;
  z-index: 200;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-outer .hero-inner .hero-image::before {
  content: " ";
  background-color: #eacfef;
  z-index: 100;
  left: 0;
  top: 0;
  height: 20.5vw;
  right: 0;
  position: absolute;
  opacity: 1;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-outer .hero-inner .hero-image .byline {
  position: absolute;
  bottom: -3.0555555556vw;
  width: 15.2777777778vw;
  height: 2.3611111111vw;
  margin-left: 3.8888888889vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 1.1111111111vw;
  line-height: 1.25vw;
  letter-spacing: 0.001px;
  z-index: 200;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-outer .hero-inner .hero-image:hover::before {
  height: 24.5vw;
}

.hero-outer .hero-inner .hero-image:hover .byline {
  color: #000;
}

.hero-outer .hero-inner .featured-image {
  width: 81.9%;
  height: 36.1111111111vw;
  margin-left: 0;
  background-image: #efefef;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.hero-outer .hero-inner .featured-image .the-image {
  height: 36.1111111111vw;
  width: 100%;
  display: block;
  position: absolute;
  z-index: 200;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-outer .hero-inner.blue {
  background: #31409b;
  color: #fff;
}

.hero-outer .hero-inner.light {
  background: #eacfef;
  color: #000;
  padding-bottom: 1.1111vw;
}

.hero-outer .hero-inner.light .featured-image {
  height: 30.11111vw;
}

.hero-outer .hero-inner.light h1 {
  padding-top: 8.3333333333vw;
  margin-bottom: 1.3888888889vw;
}

.article-hero .hero-outer {
  height: auto;
}

.article-hero .hero-outer .hero-inner {
  height: auto;
}

.article-hero.with-image .hero-outer {
  margin-bottom: 4.5vw;
}

/* article */
.wrapper-article,
.wrapper-ingress {
  margin-top: 4.5138888889vw;
  margin-bottom: 4.5138888889vw;
}

.wrapper-article p,
.wrapper-ingress p {
  font-size: 1.5277777778vw;
  line-height: 2.2222222222vw;
  margin-bottom: 1.5vw;
}

.wrapper-article a,
.wrapper-ingress a {
  text-decoration: underline;
}

.wrapper-article img,
.wrapper-ingress img {
  width: 100%;
  height: auto;
}

.wrapper-article .alignright,
.wrapper-ingress .alignright {
  float: right;
  margin-left: 2.2222222222vw;
}

.wrapper-article .alignleft,
.wrapper-ingress .alignleft {
  float: left;
  margin-right: 2.2222222222vw;
}

.wrapper-article .post-meta,
.wrapper-ingress .post-meta {
  margin-top: 0.4166666667vw;
}

.wrapper-article .post-meta .tabed,
.wrapper-ingress .post-meta .tabed {
  width: 6.2vw;
  display: inline-block;
}

.wrapper-article .post-meta .shares,
.wrapper-ingress .post-meta .shares {
  left: 3.8vw;
  top: 0;
}

.wrapper-productinformation p {
  margin-bottom: 1vw;
}

/* pagelinks */
.pagelinks-moduel-wrapper {
  margin-bottom: 4.8611111111vw;
}

.pagelinks-moduel-wrapper .pagelink-module {
  border-top: 1px solid #000;
  padding: 1.6666666667vw;
  height: 25vw;
  display: block;
}

.pagelinks-moduel-wrapper .pagelink-module h2 {
  width: 48%;
  float: left;
  z-index: 600;
  position: relative;
}

.pagelinks-moduel-wrapper .pagelink-module .link-info {
  width: 34.2%;
  float: right;
  z-index: 600;
  position: relative;
  height: 23.3333333333vw;
}

.pagelinks-moduel-wrapper .pagelink-module .read-more-text {
  position: absolute;
  bottom: 1.6666666667vw;
  z-index: 600;
}

.pagelinks-moduel-wrapper .pagelink-module .read-more-text::before {
  content: " ";
  background-image: url("/wp-content/themes/unibap/assets/icons/white-arrow.svg");
  background-size: 2.7777777778vw;
  height: 2.7777777778vw;
  width: 2.7777777778vw;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 2.5vw;
  opacity: 0;
  transform: translate3d(1vw, 0, 0);
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pagelinks-moduel-wrapper .pagelink-module::before {
  content: " ";
  background: #31409b;
  z-index: 100;
  left: 0;
  top: 0;
  width: 0%;
  height: 25vw;
  right: 0;
  position: absolute;
  opacity: 1;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pagelinks-moduel-wrapper .pagelink-module:hover {
  border-top: 1px solid #31409b;
  color: #fff;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pagelinks-moduel-wrapper .pagelink-module:hover .read-more-text::before {
  transform: translate3d(-0.5vw, 0, 0);
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.3s;
  opacity: 1;
}

.pagelinks-moduel-wrapper .pagelink-module:hover::before {
  width: 100%;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.info-box {
  background: #d4e8f4;
  padding: 1.6666666667vw;
  margin-bottom: 4.5138888889vw;
}

.info-box span,
.info-box a {
  display: block;
  padding-left: 2vw;
}

.info-box span::before,
.info-box a::before {
  content: "\2014";
  width: 2vw;
  float: left;
  left: 1.8vw;
  display: block;
  position: absolute;
}

.wrapper-productinformation {
  margin-bottom: 4.5138888889vw;
}

.wrapper-bluebox .info-box,
.wrapper-listbox .info-box {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8333333333vw;
  line-height: 1.0416666667vw;
  letter-spacing: 0.001px;
}

/* featured news */
.newspost {
  display: block;
  position: relative;
}

.newspost::before {
  content: " ";
  background: #eacfef;
  z-index: 100;
  left: 0;
  top: 0;
  height: 18.2vw;
  right: 0;
  position: absolute;
  opacity: 1;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.newspost:hover::before {
  opacity: 1;
  height: 100%;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.newspost .post-image {
  background-color: #efefef;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 65%;
  margin-bottom: 1.6666666667vw;
  z-index: 1000;
  position: relative;
}

.newspost .post-content {
  padding: 0 1.6666666667vw 1.6666666667vw 1.6666666667vw;
  z-index: 1000;
  position: relative;
}

.newspost p {
  margin-bottom: 2.7777777778vw;
}

.newspost .post-meta {
  font-size: 0.8333333333vw;
  line-height: 1.1111111111vw;
}

.wrapper-featurednews .newspost-1 {
  margin-top: -5.3125vw;
}

.wrapper-featurednews .newspost-2 {
  margin-top: 8.3333333333vw;
}

.wrapper-selectednews a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.wrapper-selectednews .newspost h3 {
  padding-top: 1.6666666667vw;
}

.wrapper-selectednews .newspost p {
  margin-bottom: 1.6666666667vw;
}

.wrapper-selectednews .newspost .post-image {
  margin-bottom: 0;
}

.wrapper-selectednews .newspost .post-content {
  padding-bottom: 0;
}

.wrapper-selectednews .newspost::before {
  content: " ";
  background: #eacfef;
  z-index: 100;
  left: 0;
  bottom: 0;
  top: auto;
  height: 28.4vw;
  right: 0;
  position: absolute;
  opacity: 1;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-selectednews .newspost:hover::before {
  opacity: 1;
  height: 100%;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* full size image section */
.wrapper-fullsizeimage {
  margin-bottom: 5.1388888889vw;
  margin-top: 1.6666666667vw;
}

.wrapper-fullsizeimage .fullsizeimage {
  background-color: #efefef;
  height: 42.7777777778vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrapper-fullsizeimage .fullsizeimage .info-box {
  background: #31409b;
  color: #fff;
  width: 34.15%;
  margin-left: 48.82889%;
  padding: 1.6666666667vw;
  position: relative;
  display: block;
}

.wrapper-fullsizeimage .fullsizeimage .info-box::before {
  content: " ";
  background: #ab40c1;
  z-index: 100;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  position: absolute;
  opacity: 1;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-fullsizeimage .fullsizeimage .info-box:hover {
  text-decoration: none;
}

.wrapper-fullsizeimage .fullsizeimage .info-box:hover::before {
  width: 100%;
  height: 100%;
}

.wrapper-fullsizeimage .fullsizeimage .info-box label {
  margin-bottom: 1.9444444444vw;
  display: block;
  z-index: 200;
  position: relative;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-fullsizeimage .fullsizeimage .info-box small {
  z-index: 200;
  position: relative;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-fullsizeimage .fullsizeimage .info-box h3 {
  margin-bottom: 0.8333333333vw;
  z-index: 200;
  position: relative;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-fullsizeimage .fullsizeimage .info-box p {
  margin-bottom: 0;
  z-index: 200;
  position: relative;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* selected news section */
.wrapper-selectednews {
  margin-bottom: 5.1388888889vw;
}

.wrapper-selectednews p {
  width: 65%;
}

.wrapper-selectednews .newspost-3 {
  margin-top: -12.0138888889vw;
}

/* related posts */
.wrapper-relatedarticles {
  margin-bottom: 22.2222222222vw;
}

.wrapper-relatedarticles .relatedarticles-module {
  margin-top: 1.6666666667vw;
}

.wrapper-relatedarticles .relatedarticles-module .related-article {
  display: block;
  padding: 1.6666666667vw;
  height: 11.6666666667vw;
  position: relative;
}

.wrapper-relatedarticles .relatedarticles-module .related-article .the-image {
  opacity: 0;
  height: 23.3vw;
  width: 70%;
  display: block;
  left: -70%;
  top: 0;
  position: absolute;
  z-index: 50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.wrapper-relatedarticles .relatedarticles-module .related-article:nth-child(odd) {
  background-color: #fff;
}

.wrapper-relatedarticles .relatedarticles-module .related-article:nth-child(even) {
  background-color: #fefadd;
}

.wrapper-relatedarticles .relatedarticles-module .related-article .post-excerpt {
  position: absolute;
  bottom: 1.6666666667vw;
  width: 65%;
  z-index: 200;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-relatedarticles .relatedarticles-module .related-article h3 {
  z-index: 200;
  position: relative;
  margin-bottom: 0.6944444444vw;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 576px) {
  .wrapper-relatedarticles .relatedarticles-module .related-article h3 {
    font-size: 3.2vw;
    padding-right: 2.6666666667vw;
  }
}

.wrapper-relatedarticles .relatedarticles-module .related-article p {
  z-index: 200;
  position: relative;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-relatedarticles .relatedarticles-module .related-article::before {
  content: " ";
  background: #31409b;
  z-index: 100;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  position: absolute;
  opacity: 1;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-relatedarticles .relatedarticles-module .related-article:hover::before {
  width: 100%;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-relatedarticles .relatedarticles-module .related-article:hover h3,
.wrapper-relatedarticles .relatedarticles-module .related-article:hover p,
.wrapper-relatedarticles .relatedarticles-module .related-article:hover .post-excerpt {
  color: #fff;
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-relatedarticles .relatedarticles-module .related-article:hover .the-image {
  opacity: 1;
  height: 23.3vw;
  width: 70%;
  display: block;
  left: -70%;
  top: 0;
  position: absolute;
  z-index: 50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.2s;
}

.load-more {
  border-top: 1px solid #31409b;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.001px;
  color: #31409b;
  font-size: 0.8333333333vw;
  line-height: 1.1111111111vw;
  display: block;
  padding-top: 0.4166666667vw;
  margin-top: 4.5138888889vw;
  text-decoration: none;
}

.load-more.read-more {
  margin-bottom: 4.1666666667vw;
  text-decoration: none;
}

.load-more.read-more::after {
  content: " ";
  background-image: url("/wp-content/themes/unibap/assets/icons/blue-arrow.svg");
  background-size: 2.77778vw;
  height: 2.77778vw;
  width: 2.77778vw;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  left: -1.3888888889vw;
  top: 2.7777777778vw;
  opacity: 1;
  transform: translate3d(1vw, 0, 0);
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-sociallinks {
  margin-bottom: 5.5555555556vw;
}

.wrapper-sociallinks a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

/* archive category selector */
.wrapper-categoryselector {
  margin-bottom: 18.75vw;
  color: #31409b;
}

.wrapper-categoryselector h3 {
  margin-bottom: 0.4166666667vw;
}

.wrapper-categoryselector .category {
  border-bottom: 1px solid #fff;
  background-color: #f3f3f3;
  display: block;
  padding: 1.6666666667vw;
  overflow: hidden;
  height: 4.8611111111vw;
}

.wrapper-categoryselector .category h3 {
  margin-bottom: 0;
  position: absolute;
  bottom: 0.6944444444vw;
  z-index: 600;
}

.wrapper-categoryselector .category .posts-nr {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8333333333vw;
  line-height: 1.1111111111vw;
  letter-spacing: 0.001px;
  margin-bottom: 0;
  position: absolute;
  bottom: 0.6944444444vw;
  left: 51.2%;
  z-index: 600;
}

.wrapper-categoryselector .category::after {
  content: " ";
  background-image: url("/wp-content/themes/unibap/assets/icons/blue-arrow.svg");
  background-size: contain;
  height: 1.1111111111vw;
  width: 1.1111111111vw;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 2.5vw;
  opacity: 1;
  right: 2.3611111111vw;
  bottom: 0.6944444444vw;
  transform: translate3d(1vw, 0, 0);
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 600;
}

.wrapper-categoryselector .category::before {
  content: " ";
  background: #31409b;
  z-index: 100;
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 0%;
  position: absolute;
  opacity: 1;
  transition: 500ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 100;
}

.wrapper-categoryselector .category:hover {
  color: #fff;
}

.wrapper-categoryselector .category:hover::before {
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  height: 100%;
}

.wrapper-categoryselector .category:hover::after {
  transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  background-image: url("/wp-content/themes/unibap/assets/icons/white-arrow.svg");
}

/* badges */
.wrapper-badges {
  text-align: center;
  margin-bottom: 6.9444444444vw;
  margin-top: 6.9444444444vw;
}

.wrapper-badges .badge-container {
  margin-bottom: 6.9444444444vw;
}

.wrapper-badges .badge-container .badge-image {
  padding-top: 50%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto 1.3888888889vw;
}

/* pre-footer */
.prefooter {
  background: #f0f0f0;
  height: 37.7777777778vw;
  position: relative;
}

.prefooter h2 {
  position: absolute;
  width: 40%;
  bottom: 1.6666666667vw;
  left: 1.6666666667vw;
  color: #ab40c1;
}

.prefooter h2 a {
  display: block;
  text-decoration: none;
  color: #ab40c1;
}

.prefooter .jobs-catcher {
  background: #31409b;
  color: #ccedf3;
  position: absolute;
  height: 17.2222222222vw;
  padding: 1.6666666667vw;
  right: 0;
  width: 48.75%;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.prefooter .jobs-catcher h2 {
  color: inherit;
  width: 50%;
  z-index: 1000;
  pointer-events: none;
}

.prefooter .jobs-catcher .meta-info {
  position: relative;
  z-index: 1000;
  pointer-events: none;
}

.prefooter .jobs-catcher .openings {
  width: 33.2%;
  float: left;
}

.prefooter .jobs-catcher .category {
  width: 39%;
  float: left;
}

.prefooter .jobs-catcher .date {
  float: left;
}

.prefooter .jobs-catcher .cta {
  background: #ab40c1;
  background-image: url("/wp-content/themes/unibap/assets/icons/white-arrow.svg");
  background-size: 2.7777777778vw;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6.5%;
  right: 0;
  z-index: 800;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.prefooter .jobs-catcher:hover {
  color: #fff;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.prefooter .jobs-catcher:hover .cta {
  width: 100%;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* mediaqueries */
@media (max-width: 767px) {
  .wrapper-productinformation h2 {
    margin-bottom: 8vw;
  }
  .wrapper-productinformation p {
    margin-bottom: 4vw;
  }
  .wrapper-ingress {
    margin-top: 6.4vw;
    margin-bottom: 6.4vw;
  }
  .wrapper-ingress h2 {
    margin-bottom: 8vw;
  }
  .wrapper-ingress p {
    margin-bottom: 4vw;
  }
  blockquote {
    margin-bottom: 4vw;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  body {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
  }
  .post-meta {
    font-size: 2.1333333333vw;
    line-height: 2.6666666667vw;
  }
  .page-wrapper.main-wrapper {
    padding-top: 9.7vw;
    margin-bottom: 0;
  }
  .top-navigation {
    display: none;
  }
  .top-logo {
    height: 9.6vw;
    background-size: 5.8666666667vw;
    background-position: 2.1333333333vw;
  }
  .top-logo.viewport-bottom {
    opacity: 1;
    transition: 0.2s ease-out;
  }
  .search-state .button-search {
    height: 9.6vw;
  }
  .search-state .button-search svg {
    height: 6.9333333333vw;
    top: 1.3333333333vw;
    left: 2.1333333333vw;
  }
  .hero-outer .hero-inner h1 {
    width: 90%;
  }
  .hero-outer .hero-inner .hero-image {
    width: 70.75%;
    height: 37.3333333333vw;
    margin-left: 21.42889%;
  }
  .hero-outer .hero-inner .hero-image .the-image {
    height: 37.3333333333vw;
  }
  .hero-outer .hero-inner.blue .byline {
    color: #000;
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
    width: 43.27778vw;
    margin-left: 0;
  }
  .wrapper-featurednews {
    margin-top: 34.6666666667vw;
  }
  .wrapper-featurednews .newspost-1 {
    margin-top: 0;
  }
  .wrapper-featurednews .newspost-2 {
    margin-top: 0;
  }
  .wrapper-featurednews .newspost {
    margin-bottom: 2vw;
  }
  .wrapper-featurednews .newspost .post-meta {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .page-wrapper {
    padding: 0;
  }
  .wrapper-header {
    width: 100%;
  }
  .wrapper-header.menu-scrolled {
    background: #fff;
    transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .wrapper-header.menu-scrolled .top-navigation {
    opacity: 1;
    pointer-events: all;
    transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .wrapper-header.menu-scrolled .button-search {
    opacity: 1;
    pointer-events: all;
    transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .wrapper-fullsizeimage .fullsizeimage {
    height: auto;
  }
  .wrapper-fullsizeimage .fullsizeimage .info-box {
    width: 49%;
    margin-left: 42.5%;
    margin-bottom: 0;
  }
  .wrapper-fullsizeimage .fullsizeimage .info-box h3 {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
    margin-bottom: 5vw;
  }
  .wrapper-fullsizeimage .fullsizeimage small {
    font-size: 2.6666666667vw;
    line-height: 2.6666666667vw;
    white-space: normal;
    display: inherit;
  }
  .wrapper-selectednews p {
    width: 100%;
  }
  .wrapper-selectednews .newspost {
    margin-bottom: 5vw;
  }
  .wrapper-selectednews .newspost-3 {
    margin-top: 0;
  }
  .prefooter {
    height: 80vw;
  }
  .prefooter h2 {
    width: 50%;
    color: #ab40c1;
  }
  .prefooter small {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .prefooter .jobs-catcher {
    height: 26.6666666667vw;
    width: 100%;
  }
  .prefooter .jobs-catcher h2 {
    width: 35%;
    margin-left: 41%;
  }
  .prefooter .jobs-catcher .cta {
    background-size: 6vw;
  }
  .prefooter .jobs-catcher .meta-info {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .prefooter .jobs-catcher .meta-info .category {
    width: 49%;
  }
  .prefooter .jobs-catcher .meta-info .openings {
    width: 42.4%;
  }
  .free-quotetext {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .wrapper-ingress p {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
  }
  .wrapper-ingress blockquote {
    font-size: 3.7333333333vw;
    line-height: 4vw;
  }
  .wrapper-ingress blockquote p {
    font-size: 3.7333333333vw;
    line-height: 4vw;
  }
  .badge-container .badge-image {
    width: 80% !important;
    height: auto;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .badge-container p {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
}

@media (max-width: 767px) {
  .badge-container h2 {
    display: none;
  }
  .wrapper-relatedarticles {
    margin-top: 10.6666666667vw;
  }
  .wrapper-relatedarticles h2 {
    margin-left: 42%;
  }
  .wrapper-relatedarticles .relatedarticles-module .related-article {
    min-height: 20.2666666667vw;
    height: auto;
    padding-bottom: 3vw;
  }
  .wrapper-relatedarticles .relatedarticles-module .related-article h3 {
    width: 40%;
    position: absolute;
  }
  .wrapper-relatedarticles .relatedarticles-module .related-article p {
    top: 1.8666666667vw;
    bottom: auto;
    left: 42%;
    width: 53%;
    position: relative;
    top: 0.2vw;
  }
  .wrapper-article p {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
  }
  .wrapper-article .post-meta {
    font-size: 2.1333333333vw;
    line-height: 2.4vw;
    display: none;
  }
  .wrapper-categoryselector .category {
    height: 7.2vw;
  }
  .wrapper-categoryselector .category::after {
    display: none;
  }
  .wrapper-categoryselector .category .posts-nr {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .load-more {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .pagelinks-moduel-wrapper {
    margin-top: 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
  .pagelinks-moduel-wrapper .pagelink-module {
    height: auto;
    overflow: hidden;
  }
  .pagelinks-moduel-wrapper .pagelink-module::before {
    height: 100%;
  }
  .pagelinks-moduel-wrapper .pagelink-module h2 {
    width: 29%;
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
  }
  .pagelinks-moduel-wrapper .pagelink-module .link-info {
    width: 60.2%;
    height: auto;
  }
  .pagelinks-moduel-wrapper .pagelink-module .link-info p {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
  }
  .pagelinks-moduel-wrapper .pagelink-module .link-info .read-more-text {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
    position: static;
    bottom: auto;
    margin-top: 10vw;
  }
  .pagelinks-moduel-wrapper .pagelink-module .link-info .read-more-text::before {
    background-size: 3.77778vw;
    height: 3.77778vw;
    width: 3.77778vw;
    bottom: 4.5vw;
  }
  .info-box p {
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
  }
  .info-box h3 {
    font-size: 3.7333333333vw;
    line-height: 4.2666666667vw;
    font-family: "Montserrat", sans-serif;
  }
  .info-box.pulled-box {
    margin-left: 0;
  }
  .load-more.read-more::after {
    background-size: 5.77778vw;
    height: 7.77778vw;
    width: 4.77778vw;
    top: 2.6666666667vw;
  }
  .mobile-navigation {
    position: fixed;
    background: #f0f0f0;
    top: 9.6vw;
    bottom: 0;
    display: block;
    z-index: 3000;
    width: 88.6%;
    padding: 8vw;
    opacity: 0;
    pointer-events: none;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .mobile-navigation {
    width: 88.1%;
  }
}

@media (max-width: 767px) {
  .mobile-navigation .menu-alt,
  .mobile-navigation .contact-link {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
    display: block;
    padding: 4vw 0;
    border-top: 1px solid #000;
  }
  .mobile-navigation .menu-alt:nth-last-child(2),
  .mobile-navigation .contact-link:nth-last-child(2) {
    border-bottom: 1px solid #000;
  }
  .mobile-navigation input {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: 82%;
    border-bottom: 1px solid #000;
    position: absolute;
    bottom: 8vw;
  }
  .mobile-navigation input::placeholder {
    color: #000;
  }
  .mobile-menu-open .mobile-navigation {
    opacity: 1;
    pointer-events: all;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .mobile-menu-open .button-search svg {
    transform: rotate(90deg);
    top: 2.22979vw;
    left: 1.22766vw;
  }
  .related-article::before {
    display: none !important;
  }
  .related-article .the-image {
    display: none !important;
  }
  .related-article:hover h3,
  .related-article:hover p {
    color: #000 !important;
  }
}

@media (device-aspect-ratio: 812 / 375) {
  .page-wrapper {
    margin-bottom: 0;
  }
}

@media (min-width: 1760px) {
  .page-wrapper {
    margin-bottom: 77.7vw;
  }
}

/*# sourceMappingURL=main.css.map */