/* Minification failed. Returning unminified contents.
(45,1): run-time error CSS1019: Unexpected token, found '@import'
(45,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Roboto&display=swap')'
(1647,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1648,8): run-time error CSS1035: Expected colon, found '{'
 */
/*
 * Clearfix.
 * Reference: https://perishablepress.com/new-clearfix-hack/
 */

.clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clear             { zoom: 1; } /* IE6 */
*:first-child+html .clear { zoom: 1; } /* IE7 */

/* ==== FONTS ==== */

@font-face {
  font-family: EarcyDay;
  src: url("/fonts/earcy-day.otf") format("opentype");
}

@font-face {
  font-family: RochesterRegular;
  src: url("/fonts/rochester-regular.otf") format("opentype");
}

@font-face {
  font-family: MyriadProRegular;
  src: url("/fonts/myriad-pro-regular.otf") format("opentype");
}

@font-face {
  font-family: OliviaDhorgent;
  src: url("/fonts/olivia-dhorgent.ttf") format("truetype");
}

@font-face {
  font-family: BrittanySignature;
  src: url("/fonts/brittany-signature.ttf") format("truetype");
}

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

/* ==== GENERAL ==== */

body {
  background-color: #fff;
  font-family: 'Roboto', Helvetica, sans-serif;
  text-align: justify;
  font-size: 14px;
  font-weight: lighter;
  color: #282a2b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: MyriadProRegular, Helvetica, sans-serif;
  font-weight: normal;
}

h1 {
  font-size: 32px;
  color: #fff;
  text-align: left;
}

h2 {
  font-size: 25px;
  color: #003d6f;
}

h3 {
  font-size: 18px;
  color: #0c4269;
}

h4 {
  font-size: 14px;
  color: #282a2b;
}

button {}
section {}
p {}

img {
  max-width: 100%;
  margin: auto;
  display: block;
}

/* ==== COLORS ==== */

/*
 * Color Palette.
 * Blue: Pantone 7694 #0c4269;
 * Orange: Pantone 165 #f26724;
 * Light Orange: Pantone 714 #f9a961;
 * Green: Pantone 7480 #24b46f;
 *
 * Headings Light Blue: #003d6f;
 * Headings Dark Blue: #021629;
 * Body Dark 1: #000;
 * Body Dark 2: #282a2b;
 * Secondary Menu Green: #64c089;
 */

.text-blue {
  color: #0c4269;
}

.text-orange {
  color: #f26724;
}

.text-green {
  color: #24b46f;
}

.text-white {
  color: #ffffff;
}

.text-red {
  color: red;
}

.border-blue {
  border: 1px solid;
  border-color: #0c4269;
}

.border-orange {
  border: 1px solid;
  border-color: #f26724;
}

.border-green {
  border: 1px solid;
  border-color: #24b46f;
}

.oval {
  border: 2px solid;
  border-color: transparent;
  border-radius: 15px;
  line-height: 30px;
}

.oval-blue {
  border: 2px solid;
  border-color: #0c4269;
  border-radius: 15px;
  line-height: 30px;
}

.oval-orange {
  border: 2px solid;
  border-color: #f26724;
  border-radius: 15px;
  line-height: 30px;
}

.oval-green {
  border: 2px solid;
  border-color: #24b46f;
  border-radius: 15px;
  line-height: 30px;
}

ul.bullet-colored {
  list-style: none; /* Remove default bullets */
}

ul.bullet-colored li {
  position: relative;
}

ul.bullet-colored li::before {
  content: "\2022"; /* \2022 is the unicode for a bullet */
  color: #0c4269;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  font-size: 28px;
  position: absolute;
  top: -10px;
  left: -20px;
}

ul.bullet-colored li.bullet-blue::before {
  color: #0c4269;
}

ul.bullet-colored li.bullet-orange::before {
  color: #f26724;
}

ul.bullet-colored li.bullet-green::before {
  color: #24b46f;
}

h2.bullet-colored::before {
  content: "\2022";
  color: #0c4269;
  font-weight: bold;
  display: inline-block;
  width: 1.75em;
  margin-left: -1.75em;
}

h2.bullet-blue::before {
  color: #0c4269;
}

h2.bullet-orange::before {
  color: #f26724;
}

h2.bullet-green::before {
  color: #24b46f;
}

/* ==== GLOBAL ==== */

.btn {
  background-color: #094269;
  border-radius: 40px;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  margin: 1em auto;
  display: table;
  /*padding: 10px 40px;*/
  padding: 10px 35px;
  font-size: 14px;
}

.btn-orange {
  background-color: #f26724;
  border-color: #f26724;
}

.btn-green {
  background-color: #24b46f;
  border-color: #24b46f;
}

.divisor {
  width: 100%;
  border-top: 1px solid #094269;
  margin-top: 2em;
  margin-bottom: 2em;
}

.spacer {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid transparent;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.padding-l-10 {padding-left: 10px;}
.padding-l-20 {padding-left: 20px;}
.padding-l-30 {padding-left: 30px;}
.margin-t-1em {margin-top: 1em;}
.margin-t-2em {margin-top: 2em;}
.margin-b-2em {margin-bottom: 2em;}
.v-middle {vertical-align: middle;}

.flex-box {
  display: flex;
}

.information-box img {
  padding: 10px 0;
}

.information-box span {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.metadata {
  text-align: center;
}

.metadata .title {
  margin-bottom: 5px;
}

.text-tabbed {
  padding-left: 40px;
}

.decoration-leaf {
  margin-left: 1em;
}

.decoration-leaf::before {
  content: url("/Content/img/icons/icon-leaf.png");
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.decoration-hand {
  margin-left: 1em;
}

.decoration-hand::before {
  content: url("/Content/img/icons/icon-hand.png");
  display: inline-block;
  width: 1.5em;
  margin-left: -1em;
}

.decoration-hands {
  margin-left: 1em;
}

.decoration-hands::before {
  content: url("/Content/img/icons/icon-hands.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-plane {
  margin-left: 1em;
}

.decoration-plane::before {
  content: url("/Content/img/icons/icon-plane.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-computer {
  margin-left: 1em;
}

.decoration-computer::before {
  content: url("/Content/img/icons/icon-computer.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-tablet {
  margin-left: 1em;
}

.decoration-tablet::before {
  content: url("/Content/img/icons/icon-tablet.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-click {
  margin-left: 1em;
}

.decoration-click::before {
  content: url("/Content/img/icons/icon-click.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-lens {
  margin-left: 1em;
}

.decoration-lens::before {
  content: url("/Content/img/icons/icon-lens.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-quote {
  margin-left: 1em;
}

.decoration-quote::before {
  content: url("/Content/img/icons/icon-quote.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.decoration-book {
  margin-left: 1em;
}

.decoration-book::before {
  content: url("/Content/img/icons/icon-open-book.png");
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.right-decoration-book {
  background: #fff none repeat scroll 0 0;
  line-height: 0.7;
  padding: 0 0 1em 1em;
  position: absolute;
  right: -1px;
  text-align: center;
  top: -1px;
}

.right-decoration-book::before {
  content: url("/Content/img/icons/icon-open-book.png");
  display: inline-block;
}

.right-decoration-click {
  background: #fff none repeat scroll 0 0;
  line-height: 0.7;
  padding: 0 0 1em 1em;
  position: absolute;
  right: -1px;
  text-align: center;
  top: -1px;
}

.right-decoration-click::before {
  content: url("/Content/img/icons/icon-click.png");
  display: inline-block;
}

.text-line-through {
	text-decoration: line-through;
}

/* ==== MEDIA QUERIES ==== */

/* Containers */
@media (min-width: 992px) {

  .container.boxed-container {
    max-width: 960px !important;
  }

  .container.boxed-container.divisor {
    max-width: 930px !important;
  }

}

/* For partial adjustment */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  h2.bullet-colored::before {
    width: 1em;
    margin-left: -1em;
  }
}

@media only screen and (max-width : 800px) {

}

@media only screen and (max-width : 992px) and (min-width : 767px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Tablets ONLY */
@media only screen and (max-width : 767px) and (min-width : 480px) {

}

/* For partial adjustment */
@media only screen and (max-width : 640px) {

}

@media only screen and (max-width : 575px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

@media only screen and (max-width : 400px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}

/* Lower */
@media only screen and (max-width : 280px) {

}

/* Clases para ocultar/mostrar objetos */
@media (max-width:575px){.hidden-xs{display:none!important}.visible-xs{display: block !important}.margin-b-xs-0 {margin-bottom: 0;}}
@media (min-width:576px) and (max-width:767px){.hidden-sm{display:none!important}.visible-sm{display: block !important}.margin-b-sm-0 {margin-bottom: 0;}}
@media (min-width:768px) and (max-width:991px){.hidden-md{display:none!important}.visible-md{display: block !important}}
@media (min-width:992px) and (max-width:1199px){.hidden-lg{display:none!important}.visible-lg{display: block !important}}
@media (min-width:1200px){.hidden-xl{display:none!important}.visible-xl{display: block !important}}

/***************************************** COOKIE *******************************************/
#sliding-popup {position:fixed;	left:0; right:0; bottom:0; padding-bottom:20px; width:100%; text-align:justify; min-height:40px; background: #eceff1 none repeat scroll 0 0; color:#78909c; z-index:99999;}
.inner {font-family: verdana; font-size: 12px; padding-left: 5px; position: relative; padding-top: 1%;}
.team-members p {margin-bottom: 0;}

/*********************** MODIFICACIONES PARA COGER EL 100% PANTALLA *************************/
.container-all {max-width: 100%;}
/* ==== HEADER ==== */

header {
    background-color: #fff;
    background-image: url("/Content/img/header-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    position: relative;
}

/*header {
  position: relative;
  background: none;
  height: 200px;
}*/

/*header .container {
  background-color: #FFF;
  background-image: url("/Content/img/header-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}*/

header .top-border {
  border-top: #0c4269 0px solid;
  position: absolute;
  top: 0;
  width: 100%;
}

header .container, header .container .row,
header .header-right, header .header-left {
  height: 100%;
}

header .header-left {
  align-items: center;
  display: flex;
  width: 20%;
}

header .header-left img {
  margin-left: 40px;
}

header .header-right {
  width: 80%;
  position: relative;
}

header .header-right ul {
  font-family: MyriadProRegular, Helvetica, sans-serif;
  color: #fff;
  float: right;
  padding-inline-start: 10px;
  margin-top: 30px;
  margin-right: 30px;
  /*color: #64c089;*/
  color: #fff;
  font-size: 16px;
}

header .header-right ul li {
  float: left;
  margin: 1em 0.8em;
}

header .header-right ul li a, header .header-right ul li a:hover {
  color: #fff;
}

header .header-right > ul {
  list-style-type: none;
}

header .header-right > ul li {
  margin: 1em 0.5em;
}

header .header-right > ul li a:hover {
  text-decoration: none;
}

/*header .header-right .seach-box {
  position: absolute;
  bottom: 30px;
  right: 61px;
}*/

header .header-right .seach-box {
    position: absolute;
    bottom: 85px;
    right: 35px;
    display: inline-flex;
}

header .header-right .seach-box form input[type=text] {
  background-color: #021629;
  border: 1px solid #666;
  color: white;
  border-radius: 3px;
  font-size: 12px;
  padding: 5px;
  min-width: 200px;
}

header .header-right .seach-box form input[type=text]::placeholder {
  color: #ccc;
}

header .header-right .seach-box form button[type=submit] {
  border-radius: 3px;
}

/* ==== MEDIA QUERIES ==== */

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

  header .header-left {
    width: 30%;
  }

  header .header-left img {
    margin-left: 20px;
  }

  header .header-right {
    width: 70%;
  }

  header .header-right > ul {
    margin-top: -30px;
    margin-right: 38px;
    clear: right;
  }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

  header .header-left {
    width: 20%;
  }

  header .header-right {
    width: 80%;
  }

}

@media only screen and (max-width : 400px) {

  header .header-left {
    display: none;
  }

  header .header-right {
    width: 100%;
  }

}

/* ==== NAV BAR ==== */

.navbar-dark {
  background-color: #094269 !important;
}

.navbar-nav {
  margin: auto;
  text-transform: uppercase;
  font-family: 'Roboto', Helvetica, sans-serif;
  font-weight: normal;
  font-size: 17px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  content: "•";
}

.navbar-expand-lg .navbar-nav .nav-item .dropdown-toggle:after {
  border: none;
}

.navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link:after {
  content: "";
}

.navbar-expand-lg {
  padding: 0;
}

.navbar-expand-lg .navbar-header {
  /* Contained background */
  background-color: #FFF;
  background-image: url("/Content/img/header-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 200px;
}

.navbar-expand-lg .navbar-header .navbar-header-left, .navbar-expand-lg .navbar-header .navbar-header-right {
  width: 50%;
  display: flex;
}

.navbar-expand-lg .navbar-header .navbar-header-left {
  padding: 8px 0 8px 16px;
}

.navbar-expand-lg .navbar-header .navbar-header-right {
  padding: 8px 16px 8px 0;
}

.navbar-expand-lg .navbar-nav .nav-divider {
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  margin: 10px 20px;
}

/* ==== MEDIA QUERIES ==== */

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

  .navbar-expand-lg .navbar-nav .nav-link:after {
    content: "";
  }

  .navbar-expand-lg .navbar-nav .nav-item {
    text-align: center;
  }

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .navbar-expand-lg .navbar-header {
        height: 120px;
    }
    
    .navbar-expand-lg .navbar-header .navbar-header-left {
        height: 100%;
    }

    .navbar-expand-lg .navbar-header .navbar-header-left a {
        display: flex;
        margin: 0 auto 0 0;
    }

    .navbar-expand-lg .navbar-header .navbar-header-left a img {
        height: 100%;
        margin-left: 1em;
    }

    .navbar-expand-lg .navbar-header .navbar-header-left a svg {
        height: 100%;
        margin-left: 1em;
        width: initial;
    }
}

@media only screen and (max-width : 575px) {
    .navbar-expand-lg .navbar-header {
        height: 60px;
    }
}
/* ==== TITLE BAR ==== */

#title-bar {
  display: block;
}

#title-bar .container {
  background-color: #02213d;
  height: 100px;
}

#title-bar h2 {
  text-align: left;
  text-transform: none;
  color: white;
  padding-top: 1.2em;
  padding-left: 40px;
}

#title-bar h2 span {
  display: list-item;
  list-style-type: disc;
}

/* ==== TESTIMONIES SECTION ==== */

#testimonies {
  margin: 4em auto;
}

#testimonies h2 {
  font-family: EarcyDay, MyriadProRegular, Helvetica, sans-serif;
  text-transform: none;
  font-size: 120px;
}

#testimonies > div > div > div.testimonies-left > p {
  text-align: right;
  font-size: 38px;
  font-weight: 300;
  margin-top: -1.5em;
  /*margin-right: 1.2em;*/
  margin-right: 0;
  color: #003d6f;
}

#testimonies > div > div > div.testimonies-right {
  padding: 2em 6em 2em 4em;
  border: 1px solid #003d6f;
  border-radius: 30px;
  font-size: 16px;
}

#testimonies blockquote {
  text-align: right;
  line-height: 2;
  color: grey;
  position: relative;
}

#testimonies blockquote span {
  font-family: RochesterRegular, 'Roboto', Helvetica, sans-serif;
  font-size: 150px;
  line-height: 0.8;
  height: 60px;
  position: absolute;
}

#testimonies blockquote .left-q-mark {
  top: -20px;
  left: -50px;
  color: #ccc;
}

#testimonies blockquote .right-q-mark {
  font-size: 300px;
  top: -60px;
  right: -100px;
  background: #fff;
  color: #f26725;
  height: 80px;
  line-height: 0.7;
}

/* ==== BREADCRUMS ==== */

#breadcrums {
  text-align: right;
  margin-top: 2em;
}

#breadcrums ul {
  color: #24b46f;
  font-weight: bold;
}

#breadcrums ul li {
  display: inline-block;
  margin-right: 1em;
}

#breadcrums ul li::before {
  content: "\2022";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  text-align: center;
}

#breadcrums ul li:first-child:before, #breadcrums ul li#btn-contact::before {
  content: "";
}

#breadcrums ul li a {
  color: #24b46f;
}

/* ==== DESCRIPTION ==== */

#description {
  /*margin-top: 4em;*/
  margin-top: 2em;
  margin-bottom: 2em;
}

#description h3 {
  text-transform: uppercase;
  text-align: left;
}

/* ==== VIDEO SECTION ==== */

#video {
  margin: 4em auto;
  text-align: center;
}

#video .video-ubl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-container {
  width: 100%
}

#video-frame {
  width: 100%;
  height: 400px;
}

/* ==== OTHER SECTIONS ==== */

#mision-vision {
  margin: 1em 0 4em 0;
}

#counters {
  text-align: center;
}

#counters h2 {
  font-family: 'Roboto', Helvetica, sans-serif;
  font-weight: lighter;
  font-size: 52px;
}

#guides {
  margin: 4em auto;
  text-align: center;
}

#guides a {
  text-decoration: none;
  font-weight: bold;
  color: #0c4269;
}

#degrees h2, #postdegrees h2, #open h2 {
  text-align: center;
}

#postdegrees .subtitle {
  text-align: center;
  font-weight: bold;
  color: #0c4269;
}

#postdegrees img {
  display: inline-block;
  margin: 20px;
}

#open {
  margin-bottom: 4em;
}

#open img {
  margin-top: 2em;
  margin-bottom: 2em;
}

#cost h3 {
  text-align: center;
}

#cost .oval-orange, #cost .oval-green {
  padding: 5px 10px;
  border-radius: 30px;
  line-height: 20px;
  text-align: center;
}

#diplomas img {
  margin-top: 2em;
  margin-bottom: 2em;
}

#diplomas h3 {
  text-align: center;
}

#diplomas a {
  text-decoration: none;
  font-weight: bold;
  color: #0c4269;
  text-align: center;
  display: block;
}

#privacidad {
  margin-top: 2em;
  margin-bottom: 2em;
}

/* ==== MEDIA QUERIES ==== */

/* For partial adjustment */
@media only screen and (max-width : 1200px) {

  #testimonies blockquote .right-q-mark {
      font-size: 280px;
      right: -85px;
  }

}

@media only screen and (max-width : 992px) and (min-width : 767px) {

  #testimonies h2 {
    font-size: 90px;
    padding: 40px 0;
  }

  #testimonies > div > div > div.testimonies-left > p {
    font-size: 32px;
    margin-top: -2.6em;
    margin-right: -0.25em;
  }

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

  #counters h2 {
    font-size: 32px;
  }

}

/* Tablets ONLY */
@media only screen and (max-width : 767px) and (min-width : 480px) {

}

/* For partial adjustment */
@media only screen and (max-width : 640px) {

  #video-frame {
    height: 250px;
  }

  #testimonies > div > div > div.testimonies-left > p {
    margin-right: 5.8em;
  }
}

@media only screen and (max-width : 575px) {

  #mision-vision .row > div:last-child {
    margin-top: 2em;
  }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

  #video .video-ubl-logo img {
    max-width: 40%;
  }

  #testimonies > div > div > div.testimonies-left > p {
    margin-right: 1.1em;
  }

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

  #video-frame {
    width: 100%;
    height: 200px;
  }

}

/* ==== PAGE RELATED STYLES ==== */

#page-about #mision-vision h3 {
  text-transform: uppercase;
  color: #f26724;
  text-align: center;
}

#page-about #mision-vision .ronded-block {
  padding: 1em;
  border: solid 1px #f26724;
  border-radius: 10px;
  display: flex;
  min-height: 115px;
  align-items: center;
}

#page-about #timeline .timeline-header h2 {
  font-family: EarcyDay, MyriadProRegular, Helvetica, sans-serif;
  text-transform: none;
  font-size: 120px;
  float: left;
}

#page-about #timeline .timeline-header p {
  font-size: 64px;
  font-weight: 400;
  color: #003d6f;
  margin-left: 16px;
  margin-top: 14px;
  float: left;
}

#page-about #timeline .timeline-container {
  position: relative;
}

#page-about #timeline .timeline-container .timeline-line {
  width: 20px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58.5%;
  border-radius: 10px;
  background: #f26725;
  background: linear-gradient(180deg, rgba(9,66,105,1) 0%, rgba(152,86,78,1) 25%, rgba(242,103,37,1) 50%, rgba(152,86,78,1) 75%, rgba(40,181,112,1) 100%);
}

#page-about #timeline .timeline-movement {
  position: relative;
}

#page-about #timeline .timeline-movement .timeline-badge {
  position: absolute;
  left: 57%;
  top: 42%;
  width: 42px;
  height: 42px;
  text-align: center;
  background-color: white;
  display: flex;
  align-items: center;
  border-radius: 21px;
}

#page-about #timeline .timeline-movement .timeline-badge span {
  width: 100%;
  font-weight: bold;
}

#page-about #timeline .timeline-movement .timeline-item.centered {
  display: flex;
  align-items: center;
}

#page-about #timeline .timeline-movement .timeline-item {
  margin-top: 2em;
  margin-bottom: 2em;
}

#page-about #timeline .timeline-movement .timeline-item h3 {
  text-align: center;
}

#page-about #timeline .timeline-movement .timeline-item img {
  margin: auto;
  padding: auto;
  display: block;
}

#page-about section#values {
  padding-bottom: 3em;
}

#page-about #values .row {
  margin-top: 3em;
}

#page-about #values .section-title {
  text-transform: none;
}

#page-about #values img {
  display: block;
  margin: auto;
}

#page-about #values .value-box {
  text-align: left;
  padding: 5px 30px 5px 20px;
  color: #FFF;
  background-color: #094269;
  border-radius: 26px;
  margin: 1em 0 2em 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 13px;
}

#page-about #values .value-box button {
  position: absolute;
  right: 10px;
  top: 13px;
  color: #094269;
  border-radius: 13px;
  line-height: 19px;
}

#page-about #values .value-box button[aria-expanded="true"]::before {
    content: "\2013";
}
#page-about #values .value-box button[aria-expanded="false"]::before {
    content: "+";
}

#page-team section#description,
#page-team section#board,
#page-team section#administrative,
#page-team section#team,
#page-team section#conductor {
  margin: 4em auto;
}

#page-team #board h3,
#page-team #administrative h3,
#page-team #team h3,
#page-team #conductor h3 {
  text-align: left;
}

#page-team #board img,
#page-team #administrative img,
#page-team #team img,
#page-team #conductor img {
  width: 100%;
}

#page-team #team p {
  margin-bottom: 0;
}

#page-team .team-members {
  margin-bottom: 2em;
}

#page-offer #description {
  margin-top: 1em;
}

#page-offer h3, #page-product h3, #page-diplomas h3, #page-facilities h3 {
  text-transform: uppercase;
}

#page-diplomas #cost {
  margin-top: 3em;
  margin-bottom: 3em;
}

#page-diplomas #cost .oval-green {
  text-align: center;
}

#page-get-involved #giving #testimonies {
  margin: 0;
}

#page-get-involved #giving #testimonies .testimonies-left {
  flex: 0 0 100%;
  max-width: 100%;
}

#page-get-involved #giving #testimonies .testimonies-left h2 {
  font-size: 92px;
  text-align: center;
  line-height: 50px;
}

#page-get-involved #giving #testimonies .testimonies-right {
  flex: 0 0 100%;
  max-width: 100%;
}

#page-get-involved #giving #testimonies .testimonies-right {
  padding: 2em 6em 1em 4em;
}

#page-get-involved #giving #testimonies .testimonies-right blockquote {
  line-height: 1.2;
}

#page-get-involved #friends {
  margin-bottom: 4em;
}

#page-get-involved #friends img {
  display: inline-block;
}

#page-research #team img {
  width: 100%;
}

#page-research #project h3.oval-green {
  text-align: center;
}

#page-research #project .ad-quote {
  background-color: #0c4269;
  background-image: url("/Content/img/research-001.png"), linear-gradient(90deg, rgba(12,66,105,1) 0%, rgba(12,66,105,1) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 2em 0 1em;
  margin: 2em 0;
  text-align: center;
  font-family: MyriadProRegular, Helvetica, sans-serif;
}

#page-research #project .ad-quote p {
  font-size: 18px;
}

#page-research #project .ad-quote p:first-child {
  font-size: 20px;
}

#page-research #project .ad-quote span {
  font-family: BrittanySignature, MyriadProRegular, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 2em;
  margin: 0 10px;
}

#page-resources #resources {
  margin-bottom: 4em;
}

#page-resources #resources h3 {
  text-transform: uppercase;
  text-align: center;
}

#page-resources #resources img {
  margin: 2em auto;
}

#page-contact #contact-ubl #contact_form .form-group.form-inline label {
  justify-content: left;
}

#page-contact #contact-ubl #contact_form .form-group.form-inline input[type=text] {
  width: 100%;
  background-color: #e6ecf0;
  border: none;
  border-radius: 19px;
}

#page-contact #contact-ubl #contact_form .form-group.form-inline.form-gender {
  align-items: flex-start;
}

#page-contact #contact-ubl #contact_form .form-group.form-inline .form-check {
  justify-content: left;
  margin-bottom: 5px;
}

#page-contact #contact-ubl #contact_form .form-group .form-check.form-inline {
  margin-bottom: 5px;
  padding-left: 0;
}

#page-contact #contact-ubl #contact_form .form-group .form-check-input {
  background-color: #e6ecf0;
  border: medium none;
  border-radius: 10px;
  height: 20px;
  margin-top: 0;
  width: 20px;
  -webkit-appearance: none;
}

#page-contact #contact-ubl #contact_form .form-group .form-check-input.form-squared-check-input {
  border-radius: 0;
}

#page-contact #contact-ubl #contact_form .form-group .form-check-input:checked {
  background-color: #7a93a1;
}

#page-contact #contact-ubl #contact_form .form-group textarea {
  width: 100%;
  background-color: #e6ecf0;
  border: none;
  border-radius: 19px;
}

#page-contact #contact-ubl #contact_form .form-group.form-submit .btn-primary {
  margin-right: 0;
  padding-right: 4em;
  padding-left: 4em;
}

#page-contact #terms-conditions {
  margin-left: 2em;
}

#page-contact #newsletter {
  margin-top: 2em;
  margin-bottom: 4em;
}

#page-contact #contact_form .bootstrap-select > .btn {
    background-color: #dae0e5;
    margin: 0;
}

#page-contact #contact-ubl .bootstrap-select {
    width: 100%;
}

#page-courses-list #courses_list > div:first-child {
  margin-top: 4em;
}

#page-courses-list #opinions h2, #page-courses-list #courses_list h3 {
  font-family: 'Roboto', Helvetica, sans-serif;
  margin-bottom: 10px;
}

#page-courses-list #courses_list .course-details p {
  text-align: center;
  margin: 0;
  font-weight: 400;
  border-width: 2px;
}

#page-courses-list #courses_list .course-details .btn {
  padding: 5px 25px;
}

#page-courses-list #testimonies {
  margin-top: 1em;
}

#page-courses-list #testimonies .testimonies-left {
  align-self: center;
}

/*#page-library-list #library_list > div:first-child {
  margin-top: 4em;
}*/

#page-library-list #opinions h2, #page-library-list #library_list h3 {
  font-family: 'Roboto', Helvetica, sans-serif;
  margin-bottom: 10px;
}

#page-library-list #library_list .course-details p {
  text-align: center;
  margin: 0;
  font-weight: 400;
  border-width: 2px;
}

#page-library-list #library_list .course-details .btn {
  padding: 5px 25px;
  width: 100%;
}

#page-library-list #testimonies {
  margin-top: 1em;
}

#page-library-list #testimonies .testimonies-left {
  align-self: center;
}

/* ==== MEDIA QUERIES ==== */

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

  #page-get-involved #giving #testimonies {
    margin: 2em auto 4em;
  }

  #page-get-involved #giving #testimonies .testimonies-left h2 {
    padding: 40px 0 0 0;
  }

  #page-about #timeline .timeline-movement .timeline-badge {
    left: 0;
    top: 0;
    font-size: 24px;
  }

  .margin-sm-b-05r{margin-bottom: 0.5rem}

}

/* For partial adjustment */
@media only screen and (max-width : 640px) {

  #page-contact #terms-conditions {
    margin-left: -1.25rem;
  }

  #page-contact .form-check label {
    margin-top: 5px;
    margin-left: 5px;
  }

  #page-contact .form-subject .form-check label {
    margin-top: 12px;
  }

  .margin-xs-b-10{margin-bottom:10px}

}

@media only screen and (max-width : 575px) {

  #page-about #timeline .timeline-movement .timeline-badge {
    top: -0.5em;
    left: 0.5em;
  }

  #page-about #timeline .timeline-movement .timeline-item {
    margin-bottom: 0;
  }

  #page-about #timeline .timeline-movement .timeline-item:last-child {
    margin-top: 0;
    margin-bottom: 4em;
  }

}

/* ==== LIBRARY PAGE STYLES ==== */

/* ==== SLIDER SECTION ==== */

#slider {}

#slider-student {
  visibility: hidden;
  position: relative;
  margin: 0 auto;
  width: 1200px;
  height: 545px;
  overflow: hidden;
}

#slider-student .slider-slides {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 545px;
  overflow: hidden;
}

#slider-student img {
  max-width: none;
}

.jssorl-009-spin {
  position:absolute;top:0px;left:0px;width:100%;height:100%;text-align:center;background-color:rgba(0,0,0,0.7);
}

.jssorl-009-spin img {
  animation-name: jssorl-009-spin;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.jssorb031 {position:absolute;}
.jssorb031 .i {position:absolute;cursor:pointer;}
.jssorb031 .i .b {fill:#000;fill-opacity:0.5;stroke:#fff;stroke-width:1200;stroke-miterlimit:10;stroke-opacity:0.3;}
.jssorb031 .i:hover .b {fill:#fff;fill-opacity:.7;stroke:#000;stroke-opacity:.5;}
.jssorb031 .iav .b {fill:#fff;stroke:#000;fill-opacity:1;}
.jssorb031 .i.idn {opacity:.3;}

.jssora051 {display:block;position:absolute;cursor:pointer;}
.jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssora051:hover {opacity:.8;}
.jssora051.jssora051dn {opacity:.5;}
.jssora051.jssora051ds {opacity:.3;pointer-events:none;}

.jssorb031 {
  position:absolute;bottom:12px;right:12px;
}

.jssora051 {
  width:55px;height:55px;top:0px;
}

.jssora051.arrowleft {
  width:55px;height:55px;top:0px;left:25px;
}

.jssora051.arrowright {
  width:55px;height:55px;top:0px;right:25px;
}

/* ==== SECTIONS ==== */

#page-student-review #links {
  text-align: center;
}

#page-student-review #catalog h3 {
  margin: 1em auto;
  display: table;
  padding: 10px 0;
}

#page-student-review #services {
  text-align: left;
  margin-bottom: 40px;
}

#page-student-review #services .border-orange,
#page-student-review #services .border-green {
  padding: 1em;
  border-radius: 1em;
}

#page-student-review #services .contact-info {
  text-align: center;
}

/* ==== MEDIA QUERIES ==== */

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

  #page-student-review #services .border-green {
    margin-top: 1em;
  }

}

/* ==== Menus Nav ==== */
.tab-pane.fade.show.active {padding: 1rem;}

/* Menu nav 1 columna Verde */
.nav-pills .nav-link.active.text-green {background-color: #24b46f; border-radius: 0;}
#pills-tab-repo .nav-item {width: 100%;}

/* Menu Collapse 1 columnas Verde */
#accordion-repo .card-header {background-color: #24b46f;border-radius: 0;}

/* Menu Nav 2 columnas Azul */
#pills-tab-bbdd .nav-item, #pills-tab-search .nav-item {width: 50%;}
#pills-tab-bbdd .nav-link.active, #pills-tab-search .nav-link.active {background-color: #0c4269; border-radius: 0; height: 100%;}

/* Menu Collapse 2 columnas Azul */
#accordion-bbdd .card-header, #accordion-search .card-header {background-color: #0c4269;border-radius: 0;}

/* Menu Nav 3 columnas Naranja */
#pills-tab-journals .nav-item, #pills-tab-journals-2 .nav-item {border-right: 1px solid #f26724; width: 33.33%;}
#pills-tab-journals .nav-item:last-child, #pills-tab-journals-2 .nav-item:last-child {border-right: 0 none;}
#pills-tab-journals .nav-link.active, #pills-tab-journals-2 .nav-link.active {background-color: #f26724; border-radius: 0; height: 100%;}

/* Menu Collapse 3 columnas Naranja */
#accordion-journals .card-header {background-color: #f26724;border-radius: 0;}
/* ==== FOOTER ==== */

footer {
    background-image: url("/Content/img/footer-bg.png");
    background-repeat: repeat-x;
    height: 150px;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
}

footer .container .row {
    align-items: center;
}

footer .container .desktop-footer > div:last-child {
    margin-bottom: auto;
    margin-top: 10px;
}

footer .container .desktop-footer ul {
    list-style-type: none;
    padding-left: 0;
}

/*footer .container .desktop-footer ul li a.fa, footer .container .desktop-footer ul li a.fab {
  float: left;
  margin-left: 10px;
}*/

footer .container .desktop-footer ul li a.fa, footer .container .desktop-footer ul li a.fab {
    float: left;
    font-size: 16px;
    font-weight: normal;
    margin-left: 10px;
}

footer .container .desktop-footer ul li a.fa, footer .container .desktop-footer ul li a.fa:hover, footer .container .desktop-footer ul li a.fab, footer .container .desktop-footer ul li a.fab:hover {
    /*color: #64c089;*/
    color: #fff;
}

footer .container .mobile-footer {
    display: none;
}

footer .container .mobile-footer .mobile-footer-logo {
    width: 25%;
    padding-left: 15px;
    float: left;
}

footer .container .mobile-footer .mobile-footer-logo svg {
    display: block;
    margin: auto;
    max-width: 100%;
}

footer .container .mobile-footer .mobile-footer-links {
    width: 75%;
    position: relative;
    float: left;
}

footer .container .mobile-footer .mobile-footer-links ul {
    font-family: MyriadProRegular, Helvetica, sans-serif;
    color: #fff;
    position: absolute;
    right: 20px;
}

footer .container .mobile-footer .mobile-footer-links ul li {
    float: left;
    margin: 1em;
}

footer .container .mobile-footer .mobile-footer-links ul li a, footer .container .mobile-footer .mobile-footer-links ul li a:hover {
    color: #fff;
}

footer .container .mobile-footer .mobile-footer-links ul li.links {
    list-style: outside none none;
    margin-left: 0;
}

footer .container .mobile-footer .mobile-footer-links ul li.links a {
    color: #64c089;
}

/* ==== MEDIA QUERIES ==== */

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    footer .container .desktop-footer {
        font-size: 12px;
        font-weight: normal;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    footer .container .desktop-footer {
        display: none;
    }

    footer .container .mobile-footer {
        display: inherit;
    }
}

