@charset "UTF-8";
/*===============================
=		COMPASS / VENDORS       =
===============================*/
/*===============================
=            MODULES            =
===============================*/
/*===============================
=            VARIABLES          =
===============================*/
/*===============================
=			sass-mq				=
================================*/
/* 
	Name your breakpoints in a way that creates a ubiquitous language
	across team members. It will improve communication between
	stakeholders, designers, developers, and testers. 
*/
/* 
	If you want to display the currently active breakpoint in the top
	right corner of your site during development, add the breakpoints
	to this list, ordered by width, e.g. (mobile, tablet, desktop).
	$mq-show-breakpoints: (mobile, mobileLandscape, tablet, desktop, wide);
*/
/*===============================
=			Layout				=
===============================*/
/** 
	Main Web Containers 
**/
/*===============================
=			Z-index				=
===============================*/
/** 
	Define here all the z-indexes that you need. 
	NEVER assign a z-index directly to any class, write down a new rule here and call to z-index(variable_name) instead
**/
/** from desktop **/
/*=====================================
=            Pantone		          =
=====================================*/
/*
	Here there are all the colors that will be present in the Web. 

	NEVER include them colors directly in your scss files. You should create in the Colors sections all the links to those colors and include them instead

	The names are generated from http://www.color-blindness.com/color-name-hue/
*/
/*=====================================
=            Colors           		 =
=====================================*/
/* 
	Here we decide the "conceptual" colors of the WEB. It englobes concepts as primary, secondary, tertiary, text, selected, lead, title, background...

	TRY NOT TO put here colors referencing Components or HTML tags (such as h1, h2, tbody, nav, user-form...). 

	This colors can be included in scss files althought we can create intermediate colors referencing this ones if we need so.
*/
/**
	We now add colors referencing HTML Tags. 

	This colors SHOULD reference those defined in the $color Map, althougt can reference $pantone (not ideally thought)
**/
/* 
	DO NOT MODIFY NOR COMMENT: 
	Mergin the two maps. CAUTION, ATTRIBUTES WITH THE SAME NAME WILL BE OVERRIDED 
*/
/*==================================
=            Typography            =
==================================*/
/**
	Define here all the typographies and sizes of the web fonts. We can use HTML tags directly or conceptual terms like title, lead...
**/
/*===============================
=         MODULES CUSTOM        =
===============================*/
/**
	Basic image container. Image withing is showed without any distorsion
**/
/**
	Fuente de los input
**/
/**
	Tintar contenedor con un color y una opacidad
**/
/*===============================
=            PARTIALS           =
===============================*/
/*===============================
=            COMPONENTS         =
===============================*/
@keyframes openb2t {
  from {
    opacity: 0;
    top: 110vh;
    display: inherit;
  }
  to {
    top: 0;
  }
}
@keyframes openl2r {
  from {
    opacity: 1;
    left: -110vw;
    display: inherit;
  }
  to {
    left: 0;
  }
}
@keyframes openr2l {
  from {
    left: 110vw;
    display: inherit;
  }
  to {
    left: 0;
  }
}
@keyframes opent2b {
  from {
    opacity: 0;
    top: -110vh;
    display: inherit;
  }
  to {
    top: 0;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadein-bottom {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadein-top {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes from-corer-rt {
  from {
    opacity: 0;
    transform: translate3d(-20%, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes from-top {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes from-top-100 {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.animation-delay-100 {
  animation-delay: 100ms;
}

.animation-delay-150 {
  animation-delay: 150ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-250 {
  animation-delay: 250ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-350 {
  animation-delay: 350ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-450 {
  animation-delay: 450ms;
}

.animation-delay-500 {
  animation-delay: 500ms;
}

.animation-delay-550 {
  animation-delay: 550ms;
}

.animation-delay-600 {
  animation-delay: 600ms;
}

.animation-delay-700 {
  animation-delay: 700ms;
}

.animation-delay-800 {
  animation-delay: 800ms;
}

.animation-delay-900 {
  animation-delay: 900ms;
}

.animation-delay-1000 {
  animation-delay: 1000ms;
}

.animation-delay-1100 {
  animation-delay: 1100ms;
}

.animation-delay-1200 {
  animation-delay: 1200ms;
}

.animation-delay-1300 {
  animation-delay: 1300ms;
}

.animation-delay-1400 {
  animation-delay: 1400ms;
}

.animation-delay-1500 {
  animation-delay: 1500ms;
}

.animation-delay-1600 {
  animation-delay: 1600ms;
}

.animation-delay-1700 {
  animation-delay: 1700ms;
}

.animation-delay-1800 {
  animation-delay: 1800ms;
}

.animation-delay-1900 {
  animation-delay: 1900ms;
}

.animation-delay-2000 {
  animation-delay: 2000ms;
}

.show-on-view {
  visibility: hidden;
}
.show-on-view.show-on-view--visible {
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-name: fadein-bottom;
  animation-delay: 0ms;
  animation-fill-mode: forwards;
}

.smooth-load {
  visibility: hidden;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-name: fadein;
  animation-delay: 0ms;
  animation-fill-mode: forwards;
}

.uoc-dismissable-module {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.5s ease-out, margin-top 0.5s ease-out, opacity 0.5s ease-out;
}
.uoc-dismissable-module .uoc-dismissable-module__inner {
  overflow: hidden;
}
.uoc-dismissable-module.fadeOut-slideUp {
  margin: -64px 0 0 0;
  grid-template-rows: 0fr;
  opacity: 0;
}

/**
	Ocupamos todo el espacio horizontal de la página, sin los márgenes laterales
**/
.fullwidth {
  position: relative;
  max-width: 100vw;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
}
.uoc-grid__col > .fullwidth {
  height: auto !important;
}
.fullwidth.overflow-visible {
  overflow: visible;
}

@media (max-width: 991.98px) {
  .sm-fullwidth {
    position: relative;
    max-width: 100vw;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
  }
}

/** B L O C K S **/
.fullwidth__content {
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* M O D I F I E R S */
.fullwidth--1600 .fullwidth__content {
  max-width: 1600px;
}

.fullwidth--1440 .fullwidth__content {
  max-width: 1440px;
}

@media (min-width: 1440px) {
  .fullwidth--right .fullwidth__content {
    max-width: calc(1440px);
    left: calc(80px);
  }
}

@media (max-width: 991.98px) {
  .fullwidth--mobile, .fullwidth--mobile-only {
    left: -24px;
  }
}
@media (max-width: 359.98px) {
  .fullwidth--mobile, .fullwidth--mobile-only {
    left: -16px;
  }
}

@media (min-width: 992px) {
  .fullwidth--mobile-only {
    width: auto;
    max-width: auto;
    left: 0;
    margin-left: 0;
  }
}

.fullwidth--overflow {
  overflow: unset;
}

.font-alternate, .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__title {
  font-family: uoc-serif, Georgia;
}

.uoc-pretitle {
  text-transform: uppercase;
  font-family: uoc-sans, Arial;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767.98px) {
  .uoc-pretitle {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.0375rem;
  }
}

.uoc-info-header {
  padding: 32px 0 !important;
  margin-bottom: 64px !important;
}
@media (max-width: 767.98px) {
  .uoc-info-header {
    margin-bottom: 32px !important;
    padding: 16px 0 !important;
  }
}
.uoc-info-header__title {
  display: inline-block;
  max-width: calc(100% - 44px);
  vertical-align: middle;
  padding-left: 16px;
}

.absolute-link {
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
}

.uppercase {
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
  clip: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  position: static !important;
  width: auto !important;
  white-space: normal !important;
}

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

.uoc-flex-end {
  display: flex;
  align-items: flex-end;
}

.uoc-flex-grow {
  flex-grow: 1;
}

.uoc-flex-nowrap {
  flex-wrap: nowrap;
}

.uoc-flex-auto {
  flex: 0 0 auto !important;
}

.uoc-valign--top {
  vertical-align: top;
}
.uoc-valign--bottom {
  vertical-align: bottom;
}
.uoc-valign--middle {
  vertical-align: middle;
}
.uoc-valign--sub {
  vertical-align: sub;
}

.h-auto {
  height: auto !important;
}

.h-100 {
  height: 100% !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.icon--inverted {
  transform: rotateY(180deg);
  transform-origin: center;
}

.d-none {
  display: none !important;
}

.uoc-pointer-events-none {
  pointer-events: none;
}

@media (max-width: 1399.98px) {
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-none {
    display: none !important;
  }
  .d-xs-block {
    display: block !important;
  }
}
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

@media (max-width: 991.98px) {
  .order-1--tablet {
    order: 1;
  }
  .order-2--tablet {
    order: 2;
  }
}
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.mw-100 {
  max-width: 100% !important;
}

.uoc-hr {
  margin: 16px 0;
}
.uoc-hr--dotted {
  border-color: transparent;
  background-image: linear-gradient(to right, #000078 33%, transparent 0%);
  background-position: bottom;
  background-size: 0.3125rem 0.0625rem;
  background-repeat: repeat-x;
}

.uoc-link {
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.0125rem;
}
.uoc-link:focus {
  text-decoration: underline;
}
.uoc-link:hover, .uoc-link:active {
  text-decoration: underline;
  color: #878787;
}
.uoc-link--bold {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.020625rem;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.img-ratio--1-1 {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.img-ratio--1-1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.img-ratio--16-9 {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.img-ratio--16-9 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.img-ratio--5-4 {
  position: relative;
  height: 0;
  padding-bottom: 80%;
}
.img-ratio--5-4 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

@media (max-width: 991.98px) {
  .xs-mt--32 {
    margin-top: -32px !important;
  }
}

@media (max-width: 767.98px) {
  .xs-mb-2 {
    margin-bottom: 32px !important;
  }
}

.mb-05 {
  margin-bottom: 8px !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:focus-visible {
  width: auto;
  height: auto;
  border: inherit;
  margin: 0;
  clip: auto;
  right: 0;
  bottom: 64px;
}

.uoc-logo-fixed-height {
  max-height: 100px;
  max-width: 100%;
  width: auto;
}

.uoc-img-align-top, .uoc-img-align-top img {
  -o-object-position: top;
     object-position: top;
}

hr.dotted {
  /*border-bottom: 1px dotted color(primary);
  margin: $spacer 0;*/
  background-image: linear-gradient(to right, #000078 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
  height: 1px;
  border: 0;
}

.uoc-scrolltop-120 {
  scroll-margin-top: 120px;
}

.uoc-scrolltop-80 {
  scroll-margin-top: 80px;
}

@media (max-width: 1399.98px) {
  .uoc-scrolltop-120, .uoc-scrolltop-80 {
    scroll-margin-top: 56px;
  }
}

.uoc-overflow-visible {
  overflow: visible;
}

.uoc-xs-visible {
  display: none;
}
@media (max-width: 575.98px) {
  .uoc-xs-visible {
    display: block;
  }
}

.uoc-sm-visible {
  display: none;
}
@media (max-width: 767.98px) {
  .uoc-sm-visible {
    display: block;
  }
}

.uoc-md-visible {
  display: none;
}
@media (max-width: 991.98px) {
  .uoc-md-visible {
    display: block;
  }
}

.uoc-lg-visible {
  display: none;
}
@media (max-width: 1279.98px) {
  .uoc-lg-visible {
    display: block;
  }
}

.uoc-xl-visible {
  display: none;
}
@media (max-width: 1399.98px) {
  .uoc-xl-visible {
    display: block;
  }
}

.uoc-xs-hidden {
  display: block;
}
@media (max-width: 575.98px) {
  .uoc-xs-hidden {
    display: none;
  }
}

.uoc-sm-hidden {
  display: block;
}
@media (max-width: 767.98px) {
  .uoc-sm-hidden {
    display: none;
  }
}

.uoc-md-hidden {
  display: block;
}
@media (max-width: 991.98px) {
  .uoc-md-hidden {
    display: none;
  }
}

.uoc-lg-hidden {
  display: block;
}
@media (max-width: 1279.98px) {
  .uoc-lg-hidden {
    display: none;
  }
}

.uoc-xl-hidden {
  display: block;
}
@media (max-width: 1399.98px) {
  .uoc-xl-hidden {
    display: none;
  }
}

.uoc-button-list > li a, .uoc-button-list > li button {
  width: 100%;
}

.gap-0 {
  gap: 0 !important;
}

.gap-0h {
  gap: 8px !important;
}

.gap-1 {
  gap: 16px !important;
}

.gap-1h {
  gap: 24px !important;
}

.gap-2 {
  gap: 32px !important;
}

.gap-2h {
  gap: 40px !important;
}

.gap-3 {
  gap: 48px !important;
}

.gap-3h {
  gap: 56px !important;
}

.gap-4 {
  gap: 64px !important;
}

.gap-5 {
  gap: 80px !important;
}

.gap-6 {
  gap: 96px !important;
}

.gap-7 {
  gap: 112px !important;
}

.gap-8 {
  gap: 128px !important;
}

.gap-8h {
  gap: 136px !important;
}

.gap-9 {
  gap: 144px !important;
}

.gap-10 {
  gap: 160px !important;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-position-top {
  -o-object-position: top;
     object-position: top;
}

.object-position-center {
  -o-object-position: center;
     object-position: center;
}

.object-position-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

/**
	Basic drop shadow
**/
.drop-shadow {
  box-shadow: 5px 5px 24px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .hover-shadow {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .hover-shadow:hover {
    box-shadow: -14px 14px 0 0 #e6e4f2;
    transform: translate3d(14px, -14px, 0);
  }
  .hover-shadow-small {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .hover-shadow-small:hover {
    box-shadow: -4px 4px 0 0 #e6e4f2;
    transform: translate3d(4px, -4px, 0);
  }
  .hover-shadow-within .shadowable {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .hover-shadow-within:hover .shadowable {
    box-shadow: -14px 14px 0 0 #e6e4f2;
    transform: translate3d(14px, -14px, 0);
  }
}
.uoc-hero-card {
  position: relative;
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-bcard--overlay, .uoc-hero-card .uoc-bcard--hero {
    padding: 32px 24px;
    height: calc(100vh - 129px);
    min-height: 440px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .uoc-hero-card .uoc-bcard--overlay, .uoc-hero-card .uoc-bcard--hero {
    max-height: 480px;
  }
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-bcard--overlay, .uoc-hero-card .uoc-bcard--hero {
    height: calc(100vh - 229px);
  }
}
.home .uoc-hero-card .uoc-bcard--overlay, .home .uoc-hero-card .uoc-bcard--hero {
  height: calc(100vh - 170px);
  max-height: 750px;
}
.uoc-hero-card .uoc-bcard--overlay.fullwidth, .uoc-hero-card .fullwidth.uoc-bcard--hero {
  padding: 50px;
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-bcard--overlay.fullwidth, .uoc-hero-card .fullwidth.uoc-bcard--hero {
    padding: 32px 24px;
  }
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-bcard--overlay.uoc-bcard--video, .uoc-hero-card .uoc-bcard--video.uoc-bcard--hero {
    height: calc(100vh - 130px);
  }
}
.uoc-hero-card .uoc-hero-card__container {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px;
}
@media (max-width: 1279.98px) {
  .uoc-hero-card .uoc-hero-card__container {
    padding: 50px 100px;
  }
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container {
    padding: 32px 24px;
  }
}
.uoc-hero-card .uoc-hero-card__container .uoc-bcard__content {
  margin-top: 0;
  width: 100% !important;
  max-width: 1440px !important;
  height: 100%;
  padding: 0 !important;
  margin-bottom: 0 !important;
  min-height: 600px;
}
.uoc-hero-card .uoc-hero-card__container .uoc-bcard__content > div {
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-bcard__content {
    margin-bottom: 0;
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-bcard__content * {
    --gutter-x: 0;
  }
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content {
    padding-top: 120px;
  }
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content {
    max-width: 50%;
  }
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content.home-institutional {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content .uoc-pretitle {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
  }
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__title {
  margin-bottom: 16px;
  font-weight: 700;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__subtitle {
  margin-bottom: 12px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2rem;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__subtitle.text-center {
  margin-top: -16px;
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__subtitle.text-center {
    margin-bottom: 16px;
  }
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
  }
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content__text {
  margin-bottom: 0;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-search .uoc-pretitle {
  margin-bottom: 0;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-search .uoc-hero-card__content__title {
  font-family: "uoc-sans", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-search {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
  }
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-search .uoc-hero-card__content__subtitle {
    order: 2;
  }
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-search .uoc-header__search {
    order: 3;
  }
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-news {
  padding-top: 0;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-news .uoc-pretitle {
  margin-bottom: 0;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content--home-news .uoc-hero-card__content__title {
  margin: 0 0 32px;
  font-family: "uoc-sans", Arial, sans-serif;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content .uoc-cta {
  margin-top: 24px;
  margin-bottom: 0 !important;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content .uoc-cta.uoc-cta--stretched {
  margin-top: 0;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content .uoc-cta:hover {
  color: #000078;
}
.uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content .uoc-cta.uoc-cta--primary:hover {
  color: #fff;
}
.uoc-hero-card .uoc-bcard__image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 58%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00007) 0%, rgba(0, 0, 0, 0.7) 72.13%);
  z-index: 1;
}
@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-bcard__image-container:before {
    width: 100%;
    height: 75%;
    top: 25%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00007) 0%, rgba(0, 0, 0, 0.7) 72.13%);
  }
}
.uoc-hero-card .uoc-bcard__image-container:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0007) 36.19%, rgba(0, 0, 0, 0.906) 77.94%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .uoc-hero-card .uoc-bcard__image-container:after {
    display: none;
  }
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient:after, .uoc-hero-card .uoc-bcard__image-container.filter-gradient:before {
  right: inherit;
  top: inherit;
  left: inherit;
  bottom: inherit;
  background: none;
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient:after, .uoc-hero-card .uoc-bcard__image-container.filter-gradient:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient.filter-gradient--top:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient.filter-gradient--right:before {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient.filter-gradient--bottom:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.uoc-hero-card .uoc-bcard__image-container.filter-gradient.filter-gradient--left:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.uoc-hero-card .uoc-bcard {
  /**:not(.uoc-cta, .uoc-cta span, .uoc-cta svg, .uoc-cta use) {
    color: white;
  }*/
}
.uoc-hero-card .uoc-bcard h1, .uoc-hero-card .uoc-bcard h2, .uoc-hero-card .uoc-bcard h3, .uoc-hero-card .uoc-bcard h4, .uoc-hero-card .uoc-bcard h5, .uoc-hero-card .uoc-bcard h6, .uoc-hero-card .uoc-bcard p {
  color: #fff;
}
.uoc-hero-card .uoc-bcard h1 a, .uoc-hero-card .uoc-bcard h2 a, .uoc-hero-card .uoc-bcard h3 a, .uoc-hero-card .uoc-bcard h4 a, .uoc-hero-card .uoc-bcard h5 a, .uoc-hero-card .uoc-bcard h6 a, .uoc-hero-card .uoc-bcard p a {
  color: #fff;
}
.uoc-hero-card .uoc-bcard.uoc-bcard--hero .uoc-bcard__image-container {
  animation: none;
}
.uoc-hero-card .uoc-common-hero-card .uoc-hero-card__content__title {
  margin: 8px 0 !important;
}
@media (max-width: 1599.98px) {
  .uoc-hero-card .uoc-common-hero-card {
    padding-left: 50px;
  }
}
@media (max-width: 1279.98px) {
  .uoc-hero-card .uoc-common-hero-card {
    padding-left: 0;
  }
}
.uoc-hero-card .uoc-cta--stretched {
  z-index: 3;
}
.uoc-hero-card.image-only {
  height: 746px;
}
@media (max-width: 767.98px) {
  .uoc-hero-card.image-only {
    height: 320px;
  }
}
.uoc-hero-card.image-only img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767.98px) {
  .uoc-hero-card .uoc-bcard .uoc-hero-card__container .uoc-bcard__content .uoc-col--xl-7.m-auto {
    margin-bottom: inherit !important;
  }
  .uoc-hero-card .uoc-bcard .uoc-hero-card__container .uoc-bcard__content .uoc-common-hero-card .align-items-center {
    align-items: flex-end !important;
    padding-top: 0 !important;
  }
  .swiper.swiper-initialized .uoc-hero-card .uoc-bcard .uoc-hero-card__container .uoc-bcard__content .uoc-common-hero-card .align-items-center {
    align-items: flex-end !important;
    margin-bottom: 32px;
  }
  .uoc-bcard--video .uoc-bcard__video {
    position: relative;
    align-items: flex-start;
  }
  .uoc-bcard--video .uoc-bcard__video-controls {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    z-index: 4;
  }
  .uoc-hero-card .uoc-hero-card__container .uoc-hero-card__content > *:last-child {
    margin-bottom: 0 !important;
  }
  .uoc-landing__header .uoc-landing__header-content {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .uoc-landing__header .uoc-landing__header-content .uoc-badge {
    align-self: flex-start;
  }
  .uoc-landing__header .uoc-landing__header-content--space-between .uoc-title {
    margin-bottom: 16px;
  }
  .uoc-bcard .uoc-bcard__image-container .filter-gradient--left:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .uoc-landing__header .uoc-landing__header-background:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
/*@include mq($from: desktop) {
  .swiper-slide {
    pointer-events: none;
    opacity: 0;
  }
  .swiper-backface-hidden .swiper-slide.transitioned {
    transition: opacity 1s ease-in;
  }
  .swiper-slide-active {
    pointer-events: auto;
    opacity: 1;
  }
}*/
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
.swiper-container {
  position: relative;
  pointer-events: none;
}
.swiper-container * {
  pointer-events: auto;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper.hoverable {
  padding-top: 14px;
  top: -14px;
  margin-bottom: -14px;
}
.swiper.shadowed {
  padding-left: 16px;
  margin-left: -16px;
}

@media (min-width: 992px) {
  .swiperOnlyTablet .swiper.hoverable {
    padding-top: 14px;
    top: 0;
    margin-bottom: 0;
  }
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  padding: 0;
  margin: 0;
  line-height: normal;
  list-style-type: none;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-pagination {
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  padding: 20px 0 0;
  position: relative;
  /*@include mq($until: desktop) {
    padding: 20px 0 0;
    position: relative;
  }*/
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: rgb(0, 0, 120);
  transition: width 0.3s;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: rgb(0, 0, 120);
  width: 25px;
  border-radius: 8px;
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper .uoc-bcard--overlay, .swiper .uoc-bcard--hero {
  height: 100%;
}
.swiper .uoc-card {
  height: 100%;
}
.swiper .uoc-bcard {
  height: 100%;
}

@media (max-width: 991.98px) {
  .uoc-carousel .ccontrols {
    display: none;
  }
}
.uoc-carousel .ccontrols--split {
  opacity: 0;
  transition: opacity 0.3s;
}
.uoc-carousel:hover .ccontrols--split {
  opacity: 1;
}

.uoc-carousel-wrapper {
  height: auto !important;
  overflow: hidden;
  position: relative;
  margin-top: -16px;
}
.uoc-carousel-wrapper .uoc-carousel {
  padding-top: 16px;
}
.fullwidth__content > .uoc-carousel-wrapper {
  position: static;
}
.uoc-carousel-wrapper--overflow-right {
  overflow: visible;
}
.uoc-carousel-wrapper--overflow-right::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: inherit;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.uoc-carousel-wrapper--overflow-right .ccontrols--col {
  z-index: 2;
}

.uoc-carousel--image .ccontrols {
  top: calc(50% - 30px);
}

.ccontrols,
.ccontrols > li {
  margin: 0;
  padding: 0;
  display: block;
  float: left;
}
.ccontrols > li {
  margin: 0 1px 0 0;
}
.ccontrols > li:last-child {
  margin-right: 0;
}

.ccontrols__item {
  box-shadow: 5px 5px 24px 2px rgba(0, 0, 0, 0.1);
  width: 68px;
  height: 60px;
  position: relative;
  background-color: #fff;
  fill: #000078;
}
.ccontrols__item:hover {
  background-color: #000078;
  fill: #fff;
}

.ccontrols__item-icon {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  fill: inherit;
}

.ccontrols--split {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.ccontrols--split .ccontrols__item {
  padding: 0;
  pointer-events: auto;
}
.ccontrols--split .ccontrols__item--next {
  position: absolute;
  right: 0;
}

.ccontrols--col,
.ccontrols--col-alt {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: 68px;
  left: -34px;
  z-index: 1;
}
.ccontrols--col .ccontrols__item,
.ccontrols--col-alt .ccontrols__item {
  padding: 0;
}

.ccontrols--col {
  margin-top: -43px;
}
.ccontrols--col-fix {
  margin-top: 0;
}

/** M O D I F I E R S **/
.uoc-carousel--video-cards .ccontrols--col {
  top: 40%;
}
.uoc-carousel--video-cards .swiper {
  padding-top: 14px;
  top: -14px;
  margin-bottom: -14px;
}

.uoc-carousel--cards .ccontrols--col-alt {
  top: 150px;
}

.uoc-carousel--cards .swiper,
.uoc-carousel--prcards .swiper {
  padding-top: 14px;
  top: -14px;
  margin-bottom: -14px;
}

.ccontrols--col-alt {
  left: 100%;
  top: -60px;
  transform: none;
  margin-left: -136px;
  width: 136px;
  white-space: nowrap;
}
.ccontrols--col-alt > li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.ccontrols--col-alt > li button {
  background-color: transparent;
}
.ccontrols--col-alt * {
  box-shadow: none !important;
}

/*@include mq($from: desktop, $until: $carouselBannerCardWidth * 1.1){
  .ccontrols--col-alt{
    left: 90%;
  }
}*/
.cnav--fullwidth {
  position: absolute;
  bottom: 50px !important;
}

.cnav--secondary .swiper-pagination-bullet-active {
  background: #73edff !important;
  opacity: 1 !important;
}
.cnav--secondary .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.cnav--spaced {
  bottom: 100px !important;
  position: absolute;
}
@media (max-width: 767.98px) {
  .cnav--spaced {
    bottom: 20px !important;
  }
}
.cnav--spaced .swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
}
.cnav--spaced .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.cnav--inverse {
  bottom: 50px !important;
  position: absolute !important;
}
@media (max-width: 767.98px) {
  .cnav--inverse {
    bottom: 20px !important;
  }
}
.cnav--inverse .swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
}
.cnav--inverse .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.cnav--onlytablet {
  display: none;
}
@media (max-width: 767.98px) {
  .cnav--onlytablet {
    display: block;
  }
}

.ccontrols .swiper-button-lock {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 992px) and (max-width: 1340px) {
  .uoc-carousel--bcard-video .uoc-bcard--overlay .uoc-bcard__top, .uoc-carousel--bcard-video .uoc-bcard--hero .uoc-bcard__top {
    max-width: 50%;
    margin-left: 60px;
  }
}

.uoc-carousel--video-cards .swiper .swiper-slide {
  max-width: 334px;
}
@media (max-width: 767.98px) {
  .uoc-carousel--video-cards .swiper .swiper-slide {
    max-width: 306px;
  }
}

@media (max-width: 575.98px) {
  .uoc-faculty {
    max-width: 270px;
  }
}

.uoc-faculty__image {
  max-width: 458px;
}
@media (max-width: 991.98px) {
  .uoc-faculty__image {
    max-width: 270px;
  }
}

@media (max-width: 991.98px) {
  .uoc-faculty__image__container {
    max-width: 294px !important;
  }
}

@media (max-width: 991.98px) {
  .uoc-faculty-cards__container > li:only-child .uoc-faculty__image__container .uoc-faculty__image {
    margin-right: 0 !important;
  }
}

.uoc-carousel--faculty-cards .swiper .swiper-slide {
  max-width: 458px;
}
@media (max-width: 991.98px) {
  .uoc-carousel--faculty-cards .swiper .swiper-slide {
    max-width: 270px;
  }
}
.uoc-carousel--faculty-cards .swiper .swiper-slide:only-child {
  max-width: 1200px;
}
@media (max-width: 1248px) {
  .uoc-carousel--faculty-cards .swiper .swiper-slide:only-child {
    max-width: calc(100% - 24px);
  }
}

.uoc-carousel--uoc-news .swiper .swiper-slide, .uoc-carousel--uoc-img-card .swiper .swiper-slide, .uoc-carousel--uoc-inmedia .swiper .swiper-slide, .uoc-carousel--uoc-photogaleri .swiper .swiper-slide {
  max-width: 457px;
}
@media (max-width: 991.98px) {
  .uoc-carousel--uoc-news .swiper .swiper-slide, .uoc-carousel--uoc-img-card .swiper .swiper-slide, .uoc-carousel--uoc-inmedia .swiper .swiper-slide, .uoc-carousel--uoc-photogaleri .swiper .swiper-slide {
    max-width: 300px;
  }
}

.uoc-carousel--video-cards-horizontal .swiper .swiper-slide {
  max-width: 582px;
}
.uoc-carousel--video-cards-horizontal .swiper .swiper-slide .uoc-ncard--image-big .uoc-ncard__image-container {
  height: 292px;
}
@media (max-width: 767.98px) {
  .uoc-carousel--video-cards-horizontal .swiper .swiper-slide {
    max-width: 300px;
  }
  .uoc-carousel--video-cards-horizontal .swiper .swiper-slide .uoc-ncard--image-big .uoc-ncard__image-container {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .uoc-carousel--blog {
    width: 1200px !important;
    max-width: 100%;
  }
}

.swiper.slide-width-100w .swiper-slide {
  max-width: 100%;
  width: 100%;
}
.swiper.slide-width-950 .swiper-slide {
  max-width: 950px;
}
@media (max-width: 991.98px) {
  .swiper.slide-width-950 .swiper-slide {
    width: 600px !important;
  }
}
@media (max-width: 767.98px) {
  .swiper.slide-width-950 .swiper-slide {
    width: 300px !important;
  }
}
.swiper.slide-width-600 .swiper-slide {
  max-width: 600px;
}
@media (max-width: 767.98px) {
  .swiper.slide-width-600 .swiper-slide {
    width: 300px !important;
  }
}
.swiper.slide-width-460 {
  padding-left: 16px;
  margin-left: -16px;
  padding-top: 16px;
  top: -16px;
  margin-bottom: -16px;
}
.swiper.slide-width-460 .swiper-slide {
  max-width: 460px;
}
@media (max-width: 767.98px) {
  .swiper.slide-width-460 .swiper-slide {
    width: 300px !important;
  }
}
.swiper.slide-width-400 {
  padding-left: 16px;
  margin-left: -16px;
  padding-top: 16px;
  top: -16px;
  margin-bottom: -16px;
}
.swiper.slide-width-400 .swiper-slide {
  max-width: 400px;
}
@media (max-width: 767.98px) {
  .swiper.slide-width-400 .swiper-slide {
    width: 300px !important;
  }
}
.swiper.slide-width-340 {
  padding-left: 16px;
  margin-left: -16px;
  padding-top: 16px;
  top: -16px;
  margin-bottom: -16px;
}
.swiper.slide-width-340 .swiper-slide {
  max-width: 340px;
}
@media (max-width: 767.98px) {
  .swiper.slide-width-340 .swiper-slide {
    width: 300px !important;
  }
}
.swiper.slide-width-180 .swiper-slide {
  max-width: 180px;
}

@media (min-width: 992px) {
  .uoc-carousel--commoncards {
    width: 100% !important;
    max-width: 1440px;
  }
  .uoc-carousel--commoncards .swiper {
    overflow: visible;
  }
}
.uoc-carousel--commoncards .slide-width-460 .swiper-slide {
  max-width: calc((100% - 96px) / 4);
}
@media (max-width: 991.98px) {
  .uoc-carousel--commoncards .slide-width-460 .swiper-slide {
    max-width: 300px !important;
  }
}

.swiper-button-disabled {
  fill: #bcbcdc;
}
.swiper-button-disabled:hover {
  background-color: #fff;
  fill: #bcbcdc;
}

.uoc-cta {
  position: relative;
  display: inline-flex;
  min-width: 200px;
  padding: 12px 28px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  color: #000078;
  text-align: center;
  background-color: transparent;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.0125rem;
}
.uoc-cta:hover {
  color: #878787;
}
.uoc-cta.uoc-cta-description {
  background-color: #f0f0f0;
  min-height: 136px;
}
@media (max-width: 991.98px) {
  .uoc-cta.uoc-cta-description {
    min-height: 108px;
    padding: 12px 16px;
  }
}
.uoc-cta.uoc-cta-description span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2rem;
}
@media (max-width: 991.98px) {
  .uoc-cta.uoc-cta-description span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 4px;
  }
}
.uoc-cta.uoc-cta-description span.uoc-cta-description--text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .uoc-cta.uoc-cta-description span.uoc-cta-description--text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
  }
}
.uoc-cta > span:only-child {
  width: 100%;
}
.uoc-cta .svg-icon {
  fill: currentColor;
  stroke: transparent;
  align-self: center;
}
.uoc-cta .svg-icon:last-child {
  margin-left: auto;
}
.uoc-cta--caret {
  text-align: left;
}
.uoc-cta--caret .uoc-cta__icon {
  width: 0.75em;
  min-width: 0.75em;
  height: 1.5em;
  box-sizing: content-box;
  margin-left: auto;
  padding-left: 28px;
}
.uoc-cta--block {
  width: 100%;
}
.uoc-cta--icon {
  min-width: unset;
}
.uoc-cta--icon .svg-icon, .uoc-cta--icon .svg-icon:last-child {
  margin: 0;
}
.uoc-cta--primary {
  color: #fff;
  border-color: #000078;
  background-color: #000078;
}
.uoc-cta--primary:hover {
  color: #fff;
  border-color: #000078;
  background-color: #000078;
}
.uoc-cta--primary:active {
  color: #fff;
  border-color: #8686bf;
  background-color: #000063;
}
.uoc-cta--primary:focus {
  color: #fff;
  border-color: #000078;
  background-color: #000078;
}
.uoc-cta--primary.uoc-cta--disabled, .uoc-cta--primary:disabled, .uoc-cta--primary[disabled] {
  color: #878787;
  border-color: #d0d0d0;
  background-color: #d0d0d0;
}
.uoc-cta--primary.uoc-cta--inverse:hover {
  color: #000078;
  border-color: #73edff;
  background-color: #73edff;
}
.uoc-cta--secondary {
  color: #000078;
  border-color: #000078;
  background-color: #fff;
}
.uoc-cta--secondary:hover {
  color: #000078;
  border-color: #000078;
  background-color: #fff;
}
.uoc-cta--secondary:active {
  color: #000078;
  border-color: #000078;
  background-color: #8686bf;
}
.uoc-cta--secondary:focus {
  color: #000078;
  border-color: #000078;
  background-color: #fff;
}
.uoc-cta--secondary.uoc-cta--disabled, .uoc-cta--secondary:disabled, .uoc-cta--secondary[disabled] {
  color: #acacac;
  border-color: #acacac;
  background-color: #fff;
}
.uoc-cta--tertiary {
  color: #000078;
  border-color: #73edff;
  background-color: #73edff;
}
.uoc-cta--tertiary:hover {
  color: #000078;
  border-color: #73edff;
  background-color: #73edff;
}
.uoc-cta--tertiary:active {
  color: #000078;
  border-color: #d5faff;
  background-color: #5fc4d2;
}
.uoc-cta--tertiary:focus {
  color: #000078;
  border-color: #73edff;
  background-color: #73edff;
}
.uoc-cta--tertiary.uoc-cta--disabled, .uoc-cta--tertiary:disabled, .uoc-cta--tertiary[disabled] {
  color: #5fc4d2;
  border-color: #d5faff;
  background-color: #d5faff;
}
.uoc-cta--action {
  color: #000078;
  border-color: #ff87ff;
  background-color: #ff87ff;
}
.uoc-cta--action:hover {
  color: #000078;
  border-color: #ff87ff;
  background-color: #ff87ff;
}
.uoc-cta--action:active {
  color: #000078;
  border-color: #8686bf;
  background-color: #ff33ff;
}
.uoc-cta--action:focus {
  color: #000078;
  border-color: #ff87ff;
  background-color: #ff87ff;
}
.uoc-cta--action.uoc-cta--disabled, .uoc-cta--action:disabled, .uoc-cta--action[disabled] {
  color: #878787;
  border-color: #d0d0d0;
  background-color: #d0d0d0;
}
.uoc-cta--link {
  color: #000078;
  border-color: transparent;
  background-color: transparent;
}
.uoc-cta--link:hover {
  color: #878787;
  border-color: transparent;
  background-color: transparent;
}
.uoc-cta--link:active {
  color: #000078;
  border-color: transparent;
  background-color: transparent;
}
.uoc-cta--link:focus {
  color: #878787;
  border-color: transparent;
  background-color: transparent;
}
.uoc-cta--link.uoc-cta--disabled, .uoc-cta--link:disabled, .uoc-cta--link[disabled] {
  color: #acacac;
  border-color: transparent;
  background-color: transparent;
}
.uoc-cta--link {
  min-width: unset;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  text-decoration: underline;
}
.uoc-cta--link:hover {
  text-decoration: underline;
}
.uoc-cta--link--big {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}
.uoc-cta--link--wrapped {
  width: 100%;
  padding: 32px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.020625rem;
  text-decoration: underline;
  color: #000024;
  background-color: #f0f0f0;
}
.uoc-cta--link--wrapped:active, .uoc-cta--link--wrapped:hover {
  color: #000024;
  text-decoration: underline;
}
.uoc-cta--link--wrapped .uoc-cta__icon {
  width: 1em;
  max-width: 1em;
  min-width: 1em;
  color: #000078;
}
@media (max-width: 991.98px) {
  .uoc-cta--link--wrapped {
    font-size: 1.125rem;
    padding: 16px;
  }
}
.uoc-cta--tag {
  text-align: unset;
}
.uoc-cta--tag:not(:hover) {
  color: inherit;
  text-decoration: none;
}
.uoc-cta--stretched {
  position: unset;
}
.uoc-cta--stretched:empty {
  height: 0;
  width: 0;
  min-width: unset;
  padding: 0;
  border: 0;
  opacity: 0;
}
.uoc-cta--stretched::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
.uoc-cta--disabled:hover, .uoc-cta:disabled:hover, .uoc-cta[disabled]:hover {
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

/** M O D I F I E R S **/
.uoc-cta--big {
  /**
  	The 'default' rule is not submitted to any responsive query
  **/
  width: 246px;
  /*
  	Loop through $breakpoints keys order. 
  	This defines the correct order for the sass-mq $from rules while allowing passing $propValues in any order 
  */
  padding-left: 32px;
  background-color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: 0.0125rem;
  color: #000078;
  fill: #000078;
  min-height: 96px;
}
@media (max-width: 767.98px) {
  .uoc-cta--big {
    width: 200px;
  }
}
@media (max-width: 991.98px) {
  .uoc-cta--big {
    min-height: 79px;
  }
}
.uoc-cta--big-type2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2rem;
}
.uoc-cta--big .svg-icon {
  right: 24px;
}
.uoc-cta--big:hover {
  opacity: 1;
  background-color: #000078;
  color: #fff;
  fill: #fff;
}

/* This class animates uoc-cta when the selected element is hovered, for intance, .uoc-bcard.uoc-cta--animated */
.uoc-cta--animated .uoc-cta .svg-icon {
  right: calc(35% - 32px);
  transition: right ease-in 200ms;
}
.uoc-cta--animated:hover .uoc-cta .svg-icon {
  right: 24px;
}

.uoc-bcard--overlay .uoc-bcard__footer .uoc-cta--big .svg-icon, .uoc-bcard--hero .uoc-bcard__footer .uoc-cta--big .svg-icon {
  right: calc(35% - 32px);
  transition: right ease-in 200ms;
}
.uoc-bcard--overlay:hover .uoc-bcard__footer .uoc-cta--big .svg-icon, .uoc-bcard--hero:hover .uoc-bcard__footer .uoc-cta--big .svg-icon {
  right: 24px;
}

/** Banner Card **/
.uoc-bcard {
  position: relative;
  display: flex;
  flex-flow: wrap;
  padding: 0;
  background-color: transparent;
  color: #000078;
}
.uoc-bcard__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.uoc-bcard__content--reorder {
  order: 2;
  margin-top: 16px;
}
.uoc-bcard__pretitle {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.uoc-bcard__title {
  margin-bottom: 16px;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 4.5rem;
  letter-spacing: 0.021875rem;
  color: #fff;
  word-break: break-word;
}
.uoc-bcard__title a {
  color: #fff;
}
.uoc-bcard__title:last-child {
  margin-bottom: 0;
}
.uoc-bcard__title--alt {
  font-family: uoc-serif, Georgia;
  font-weight: normal;
}
.uoc-bcard__sub-title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.uoc-bcard__body {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #1b1b25;
  word-break: break-word;
  z-index: inherit;
}
.uoc-bcard__body p {
  font-size: inherit;
}
.uoc-bcard__body p:last-child {
  margin-bottom: 0;
}
.uoc-bcard__footer .uoc-cta {
  margin-top: 32px;
}
.uoc-bcard__divider {
  display: inline;
  height: 100%;
  border-right: 1px solid;
  margin: 0 10px;
}
.uoc-bcard__clock {
  min-width: 100px;
  max-width: 100%;
}
.uoc-bcard__lead {
  padding: 32px 0 8px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: normal;
}
@media (max-width: 991.98px) {
  .uoc-bcard__body {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .uoc-bcard__title {
    font-size: 3.25rem;
    line-height: 3rem;
  }
  .uoc-bcard__title--alt {
    font-size: 2.75rem;
    line-height: 3rem;
  }
  .uoc-bcard__lead {
    padding: 16px 0 0;
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .uoc-bcard__image-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    order: 1;
  }
}

/** M O D I F I E R S **/
.uoc-bcard--overlay, .uoc-bcard--hero {
  min-height: 580px;
  padding: 80px 0;
  background-color: transparent;
  color: #fff;
}
.uoc-bcard--overlay .uoc-bcard__content, .uoc-bcard--hero .uoc-bcard__content {
  width: 100%;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  z-index: 2;
}
.swiper .uoc-bcard--overlay .uoc-bcard__content, .swiper .uoc-bcard--hero .uoc-bcard__content {
  max-width: calc(100% - 136px);
}
@media (max-width: 991.98px) {
  .swiper .uoc-bcard--overlay .uoc-bcard__content, .swiper .uoc-bcard--hero .uoc-bcard__content {
    max-width: calc(100% - 40px);
  }
}
.uoc-bcard--overlay .uoc-bcard__top, .uoc-bcard--hero .uoc-bcard__top {
  max-width: 50%;
}
.uoc-bcard--overlay .uoc-bcard__body, .uoc-bcard--hero .uoc-bcard__body {
  color: inherit;
}
.uoc-bcard--overlay .uoc-bcard__image-container, .uoc-bcard--hero .uoc-bcard__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.uoc-bcard--overlay .uoc-bcard__image-container div, .uoc-bcard--hero .uoc-bcard__image-container div {
  height: 100%;
}
.uoc-bcard--overlay .uoc-bcard__image-container .uoc-bcard__image, .uoc-bcard--hero .uoc-bcard__image-container .uoc-bcard__image {
  position: unset;
  top: unset;
  left: unset;
  transform: unset;
  width: 100%;
  height: 100%;
}
.uoc-bcard--overlay .uoc-bcard__image, .uoc-bcard--hero .uoc-bcard__image {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  max-width: 400%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.uoc-bcard--overlay ul, .uoc-bcard--hero ul {
  padding-left: 12px;
  list-style: none;
}
.uoc-bcard--overlay ul li, .uoc-bcard--hero ul li {
  position: relative;
}
.uoc-bcard--overlay ul li::before, .uoc-bcard--hero ul li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: -12px;
}
.uoc-bcard--overlay ul li, .uoc-bcard--hero ul li,
.uoc-bcard--overlay ul li a,
.uoc-bcard--hero ul li a {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: 0.01875rem;
  color: #fff;
}
@media (max-width: 767.98px) {
  .uoc-bcard--overlay ul li, .uoc-bcard--hero ul li,
  .uoc-bcard--overlay ul li a,
  .uoc-bcard--hero ul li a {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.0125rem;
  }
}
.uoc-bcard--overlay ul li a, .uoc-bcard--hero ul li a {
  text-decoration: underline;
}
.uoc-bcard--overlay ul li a:hover, .uoc-bcard--hero ul li a:hover {
  opacity: 1;
  color: #38ff90;
}
@media (max-width: 767.98px) {
  .uoc-bcard--overlay .uoc-bcard__top, .uoc-bcard--hero .uoc-bcard__top {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .uoc-bcard--overlay .uoc-bcard__content, .uoc-bcard--hero .uoc-bcard__content {
    width: 1200px;
  }
  .uoc-bcard--overlay .uoc-bcard__content--1440, .uoc-bcard--hero .uoc-bcard__content--1440 {
    width: 1440px;
  }
}

.uoc-bcard--hero {
  padding: 128px 0;
}
.uoc-bcard--hero .uoc-bcard__footer {
  position: absolute;
  bottom: 48px;
  right: 9%;
  max-width: 100% !important;
  width: auto !important;
}
.uoc-bcard--hero .uoc-bcard__date-time {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 175px;
  background-color: transparent;
  border: 4px solid #fff;
}
.uoc-bcard--hero .uoc-bcard__date-time > div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.0275rem;
}
.uoc-bcard--hero .uoc-bcard__date-time > :nth-child(1) {
  color: #000078;
  background-color: #fff;
}
.uoc-bcard--hero .uoc-bcard__date-time > :nth-child(2) {
  border-right: 4px;
  border-style: solid;
}
.uoc-bcard--hero .uoc-bcard__date-time > :nth-child(2) > span {
  text-align: center;
}
@media (min-width: 992px) {
  .uoc-bcard--hero .uoc-bcard__date-time {
    visibility: hidden;
    animation-duration: 500ms;
    animation-timing-function: linear;
    animation-name: fadein-bottom;
    animation-delay: 500ms;
    animation-fill-mode: forwards;
  }
}
@media (max-width: 991.98px) {
  .uoc-bcard--hero .uoc-bcard__date-time {
    grid-template-columns: repeat(2, 1fr);
  }
  .uoc-bcard--hero .uoc-bcard__date-time > div {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .uoc-bcard--hero .uoc-bcard__date-time > :nth-child(2) {
    grid-column: 1/3;
    grid-row: 2;
    border-top: 4px solid;
    border-right: 0;
  }
  .uoc-bcard--hero .uoc-bcard__date-time > :nth-child(2) .uoc-bcard__divider,
  .uoc-bcard--hero .uoc-bcard__date-time > :nth-child(3) .uoc-bcard__divider {
    margin: 0 8px;
  }
  .uoc-bcard--hero .uoc-bcard__date-time > :nth-child(2) > span,
  .uoc-bcard--hero .uoc-bcard__date-time > :nth-child(3) > span {
    flex-basis: 100%;
  }
}
.uoc-bcard--hero .uoc-bcard__image-container {
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-name: fadein-bottom;
  animation-delay: 0ms;
  animation-fill-mode: forwards;
}
@media (max-width: 991.98px) {
  .uoc-bcard--hero {
    padding: 80px 0;
  }
  .uoc-bcard--hero .uoc-bcard__top {
    max-width: 100%;
    margin-top: auto;
  }
  .uoc-bcard--hero .uoc-bcard__footer {
    position: relative;
    grid-template-columns: auto auto;
    left: unset;
    right: unset;
    bottom: unset;
    margin-bottom: -48px;
    margin-top: 32px;
  }
}

.uoc-bcard--main {
  min-height: 746px;
}
.uoc-bcard--main .uoc-bcard__content > div {
  width: 100%;
  max-width: 752px;
}
.uoc-bcard--main .uoc-bcard__body {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}
@media (max-width: 767.98px) {
  .uoc-bcard--main .uoc-bcard__body {
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: 0.010625rem;
  }
}
@media (max-width: 767.98px) {
  .uoc-bcard--main {
    min-height: 320px;
  }
}

.uoc-bcard--detail .uoc-bcard__title,
.uoc-bcard--detail .uoc-bcard__title > a {
  font-family: uoc-sans, Arial;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 4.5rem;
  letter-spacing: 0.025rem;
}
@media (max-width: 767.98px) {
  .uoc-bcard--detail .uoc-bcard__title,
  .uoc-bcard--detail .uoc-bcard__title > a {
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: normal;
  }
}

.uoc-bcard--floating .uoc-bcard__content {
  width: 100%;
  min-height: 450px;
  padding: 40px 120px;
  background-color: #f0f0f0;
}
@media (max-width: 1279.98px) {
  .uoc-bcard--floating .uoc-bcard__content {
    padding: 40px 80px;
  }
}
@media (max-width: 991.98px) {
  .uoc-bcard--floating .uoc-bcard__content {
    padding: 40px;
  }
}
.uoc-bcard--floating .uoc-bcard__top {
  max-width: calc(50% - 64px);
}
.uoc-bcard--floating .uoc-bcard__body {
  font-size: 1.25rem;
}
.uoc-bcard--floating .uoc-bcard__body a {
  color: #1b1b25;
  text-decoration: underline;
}
.uoc-bcard--floating .uoc-bcard__body a:hover {
  color: #000078;
}
.uoc-bcard--floating .uoc-bcard__image-container {
  position: absolute;
  bottom: 0;
  height: 450px;
  width: 50%;
  z-index: 1;
}
.uoc-bcard--floating .uoc-bcard__image-container * {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.uoc-bcard--floating .uoc-bcard__floating-button {
  order: 2;
  min-height: 80px;
  margin-top: 40px;
}
.uoc-bcard--floating .uoc-bcard__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: 0.021875rem;
  color: #000078;
}
@media (max-width: 991.98px) {
  .uoc-bcard--floating .uoc-bcard__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: 0.021875rem;
  }
}
@media (max-width: 767.98px) {
  .uoc-bcard--floating .uoc-bcard__content {
    min-height: auto;
    padding: 24px;
  }
  .uoc-bcard--floating .uoc-bcard__top {
    max-width: 100%;
  }
  .uoc-bcard--floating .uoc-bcard__image-container {
    position: relative;
    width: 100%;
    max-height: 365px;
  }
  .uoc-bcard--floating .uoc-bcard__floating-button {
    min-height: unset;
  }
}
.uoc-bcard--floating.uoc-bcard--floating-left {
  position: relative;
}
.uoc-bcard--floating.uoc-bcard--floating-left:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 15%;
  background-color: white;
  right: 0;
  top: 0;
}
@media (max-width: 767.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-left:before {
    display: none;
  }
}
.uoc-bcard--floating.uoc-bcard--floating-left .uoc-bcard__image-container {
  left: 50%;
}
.uoc-bcard--floating.uoc-bcard--floating-left .uoc-bcard__floating-button {
  margin-left: 25%;
}
@media (max-width: 991.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-left .uoc-bcard__floating-button {
    margin-left: 12.5%;
  }
}
.uoc-bcard--floating.uoc-bcard--floating-right {
  position: relative;
}
.uoc-bcard--floating.uoc-bcard--floating-right:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 15%;
  background-color: white;
  left: 0;
  top: 0;
}
@media (max-width: 767.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-right:before {
    display: none;
  }
}
.uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__top {
  margin-left: auto;
}
.uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__image-container {
  right: 50%;
}
.uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__floating-button {
  margin-left: 75%;
  transform: translateX(-100%);
}
@media (max-width: 991.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__floating-button {
    margin-left: 87.5%;
  }
}
@media (max-width: 767.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-left .uoc-bcard__image-container, .uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__image-container {
    left: unset;
    right: unset;
    transform: unset;
  }
  .uoc-bcard--floating.uoc-bcard--floating-left .uoc-bcard__floating-button, .uoc-bcard--floating.uoc-bcard--floating-right .uoc-bcard__floating-button {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transform: unset;
  }
}
@media (max-width: 1279.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-no-image {
    min-height: auto;
    padding-bottom: 32px;
    background-color: #f0f0f0;
  }
}
@media (max-width: 1279.98px) {
  .uoc-bcard--floating.uoc-bcard--floating-no-image .uoc-bcard__image-container {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .uoc-bcard--floating {
    display: block;
    height: auto;
  }
}

.uoc-bcard--video .uoc-bcard__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.uoc-bcard--video .uoc-bcard__video-controls {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: absolute;
  z-index: 4;
}
.uoc-bcard--video .uoc-bcard__video-control {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: transparent;
}
.uoc-bcard--video .uoc-bcard__video-control--play {
  padding: 16px;
  border: 4px solid #73edff;
  border-radius: 50%;
}

.uoc-bcard--default {
  min-height: 580px !important;
}

.uoc-bcard__image-container.no-shadow:after, .uoc-bcard__image-container.no-shadow:before {
  display: none !important;
}

/*============================================================================================
=   This file intends to add swiper styles (only) and other required styles for it           =
=   This file has been generated from https://gitlab.opentrends.net/aem-uoc/mockups.git      =
=============================================================================================*/