@charset "UTF-8";
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */




/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* VARIABLES */
:root{
 --color-base: #316bb4; 
 --color-base-light: #447fc0;
 --color-base-dark: #164673;
 --color-base-darker: #11406b;
 --color-secondary: #ffe500;
 --color-secondary-dark: #aa9900;  
 --color-tertiary: #5bbfc6;
 --light-gray:  #f5f4f4;
  --font-family-sans-serif: "mena_grotesk_regularregular", sans-serif;
  --font-family-heading: "mena_grotesk_boldbold", sans-serif;
  --font-bolder: "monument_extendedultrabold", sans-serif;


  /*Header*/
  --nav-bg: #fff;
  /*Footer*/
  --footer-bg: var(--color-base-dark);


  /* Compontentes */
  --text-color:  #49494a;

  --jb-color:  #fff;
  /* --jb-bg:  #f9ec0e; */
  --jb-bg:  #154571;
  --jb-ff: 'fixturecondensed_bold';
  --jb-highlight: #ffe500;
  --jb-highlight-text: var(--color-base); 
  --jb-highlight-ff:var(--jb-ff);

  /* FORMULÁRIOS */
  --input-placeholder-ff:  var(--font-family-sans-serif);
  --input-ff:  var(--font-family-sans-serif);

  /* CARDS */
  --card-header-bg:  var(--color-base);
  --card-header-color:  #fff;
  --card-color:  var(--color-base-dark);
  --card-border:  var(--color-base-dark);

  /* BULLETS */
  --bullet-border: #050708;
  --bullet-bg: var(--color-secondary);

  /*SESSÕES*/
  --more-courses-bg: var(--color-base-light);

}


body {
  font-family: var(--font-family-sans-serif);
  overflow-x: hidden;
  font-size: 14px;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  text-transform: uppercase;
}


.highlight {
  font-weight: 700;
  color: var(--color-secondary);
}


.loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* spin */
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px; 
  background: var(--color-base);
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

/* BUTTONS */
.btn {
  border-width: 0;
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
}

.btn:hover,
.btn:focus {
  box-shadow: none;
  border-width: 0;
}

.btn-lg {
  padding: 1rem 2rem;
} 

.btn-primary {
  color: #454040;
  background-color: var(--color-secondary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
 .btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--color-secondary-dark);
}

.btn-default {
  color: #fff;
  background-color: #447fc0;
}
.btn-default:hover,
.btn-default:focus {
  color: #fff;
  background-color: #164673;
}

/* imagem */
.img-round-corner {
  border-radius: 16px;
}




/* HEADER  */
#mainHeader {
  margin-bottom: -1px;
  border-bottom: 8px solid var(--color-base);
}
#mainHeader .navbar{
  background-color: var(--nav-bg);
  align-items: center;
  justify-content: center;
 
}

.navbar-brand img {
  width: 200px;
}

.navbar .container {
  justify-content: center;
}


/* FOOTER  */
#mainFooter {
  color: #fff;  
  font-size: 0.85rem;
  margin-top: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  background-color: var(--color-base-dark);
  border-bottom: 10px solid var(--color-base-darker);

}

#mainFooter::before {
  content: "";
  background-color: var(--color-secondary);
  display: block;
  position: absolute;
  top: -10px;
  left: 20%;
  width: 60%;
  height: 10px;

}
.social-icons {
  margin-top: 20px;
}

.social-icons ul {
  display: flex;
}
.social-icons ul li {
  padding: 0 10px;
}
.social-icons ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-base-dark);
  background-color: #fff;
  border-radius: 50%;

  line-height: 40px;
  font-size: 20px;
  transform: scale(1, 1);
  transform-origin: center center;
  transition: all .2s ease;
}
.social-icons ul li a:hover {
  transform: scale(1.1, 1.1);
}

/* JUMBOTRON */
.jumbotron {
  font-family: var(--jb-ff);
  color: var(--jb-color);
  background-color: var(--jb-bg);
  border-radius: 0;
  position: relative;
  margin-bottom: 0;
}

.jumbotron .jp-content {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.jumbotron .title {
  font-family: var(--jb-ff);
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 1rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 2px;  
  text-align: center;
  border-top: 6px solid var(--jb-highlight);

}

.jumbotron .title strong {
  font-size: 4.5rem;
  display: block;
  color: var(--jb-highlight);
}

.jumbotron .jb-highlight {
  font-family: var(--jb-highlight-ff);
  background-color:  var(--jb-highlight);
  color: var(--jb-highlight-text);
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 2rem;

}
.jumbotron .jb-highlight.jb-desconto {
  margin-top: 30px;
}
.jumbotron .jb-highlight.jb-desconto h4{
  font-family: var(--jb-highlight-ff);
  font-size:2.1rem;
  line-height: 1;
}
.jumbotron .jb-highlight.jb-desconto h4 strong {
  display: block;
  font-size: 2.5rem;
}
.jumbotron .jb-highlight.jb-desconto small {
  font-family: var(--font-family-sans-serif);
  font-size: 10px;
}


.jumbotron .row {
  position: relative;
  z-index: 10;
}
.jumbotron .ct-call {
  position: relative;
  z-index: 10;
  font-size: 20px;
  margin-bottom: 15px;
}
.jumbotron .ct-call img{
  max-width: 260px;
  height: auto;
}
.img-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
.jumbotron .img-top  {
  position: relative;
  width: 160%;
  display: block;
  height: 530px;
  left: -25%;
  object-fit: cover;
  object-position: top right;
}

.jumbotron::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
  height: 4px;
  width: 50%;
  background-color: var(--bullet-border);
}

.jumbotron .bullet {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 10px);
  z-index: 15;
  height: 16px;
  width: 64px;
  border:solid 4px var(--bullet-border); 
  background-color: var(--bullet-bg);
}
.form-area {
  padding: 2.5rem 2rem;
  background-color: #fff;
  border-radius: 14px;
  color:  var(--color-base-dark);
}

.form-area  h3,
.form-area  h4{
  font-size: 1.2rem;
  text-align: center;
}
.form-area  h4 {
  font-size: 1.1rem;
  font-family: var(--font-family-sans-serif);
}
.form-area form{
  margin-top: 20px;
}

.form-control {
  background-color: #efefec;
  border-width: 0;
  font-family: var(--input-ff);
}
.form-control::placeholder {
   color: var(--color-base-dark); 
   font-family: var(--input-placeholder-ff);
   font-weight: normal;
}



/* CURSOS */
.courses-group { 
  
}

.courses-header {
  padding: 4rem 0 200px;
  text-align: center;  
  margin: 0 auto -150px;
  font-size: 1rem;
  background-color: var(--light-gray);
}
.courses-header .title {
  font-size: 1.2rem ;
}

/* INFORMAÇÕES DA UBIQUA-NÚCLEO DE TRABALHIDADE */
.ubiqua-trabalhidade {
  padding: 80px 0;
}
.ubiqua-trabalhidade  .box  {
  margin-bottom: 60px;
}
.ubiqua-trabalhidade  .box .title{
  position: relative;
  padding-left: 80px;
  color: #316bb4;
  text-transform: uppercase;
  font-size: 1.2rem;
  min-height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}
.ubiqua-trabalhidade  .box .title img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 60px;
  height: auto;
}
.ubiqua-trabalhidade  .box.box-ub .title{
 padding-left: 120px; 
}
.ubiqua-trabalhidade  .box.box-ub .title img {
    max-width: 110px;
}

.ubiqua-trabalhidade  .box .box-content {
  line-height: 2;
  padding-left: 20px;
  position: relative;
}
.ubiqua-trabalhidade  .box .box-content::before {
  content: "";
  position: absolute; 
  display: block;
  left: 0;
  top: 0;
  width: 8px;
  height: 110px;
  background-color: var(--color-base);
} 


/* MAIS CURSOS */
.more-courses {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background-color: var(--more-courses-bg);
  position: relative;
}

.more-courses::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 10;
  height: 4px;
  width: 50%;
  background-color: var(--color-base-dark);
}


.more-courses .bullet {  
  position: absolute;
  top: -8px;
  right: calc(50% - 64px);
  z-index: 15;
  height: 16px;
  width: 64px;
  border:solid 4px var(--bullet-border); 
  background-color: var(--bullet-bg);
}

.more-courses .title {
  font-size: 1.6rem;
}


.mercado {
  margin-bottom: 60px;
  padding-bottom: 60px;
  position: relative;

}

.mercado::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  
  height: 6px;
  background-color: var(--color-secondary);
}

/* BANNER PROMO */
.banner-promo {
  padding: 80px 0;
}



@media only screen and (min-width: 768px) {

  .navbar-brand {
    margin-right: 0
  }
  .navbar-brand img{
    width: 300px;
  }

  /* FOOTER  */  
  #mainFooter:before {    
    width: 80%;    
    left: 10%;    
  }
  
  #mainFooter .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto
  }
  .footer-inner img{
    
    max-width: 280px;
    height: auto
  }
  /* JUMBOTRON */
  .jumbotron {
    --jb-bg:  #f9ec0e;
    padding-top: 40px;      
  }
  .jumbotron .ct-call img{
    /* max-width: 364px; */
    max-width:100%;
    width: auto
    height: auto
  }
 .jumbotron   .jb-highlight.jb-desconto {
    text-align: left
  }
  .jumbotron  .jb-highlight.jb-desconto  h4 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .jumbotron  .jb-highlight.jb-desconto  h4 strong{
    font-size: 2.4rem
  }
  .jumbotron .img-holder  {    
    top: 0;    
    max-width: 100%;
    height: 100%

  }
   .img-holder .img-top {
     right: 0;
      height: 100%;
      
      object-fit: cover;
      object-position: top right;
   }
  .jumbotron .title {
    margin-top: 0
  }

  /* MORE COURSES */
  .more-course-box {
    height: 100%;
    position: relative;
    padding-bottom: 100px
  }
  .more-course-box .btn{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .mercado {
    margin-bottom: 0;
    padding-bottom: 0px;
    position: relative;
    padding-right: 20px;

  }

  .mercado::after {
    bottom: initial;
    left:initial;
    top: 15%;
    height: 50%;
    right: -18px;
    
    
    width: 6px;
    background-color: var(--color-secondary);
  }

  .more-course-box:not(.mercado){
    padding-left: 20px
  }

  
  
}

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

  .jumbotron .title {
    text-align-last: left
  }


 
}

@media only screen and (min-width: 1200px) {

  .jumbotron .jp-content {
    margin-left: initial;
    max-width: 260px;
  }

  .jp-content img {

  }
  .jumbotron .title {   
    text-align: left;
    font-size: 1.2rem;    
    line-height: 1;
    
  }

  .jumbotron .title strong {
    font-size: 4rem;
    display: block;
  }

.jumbotron .jb-highlight {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1
}
  .jumbotron .jb-highlight.jb-desconto h4{
    font-size: 1.6rem;
    margin-bottom: 0
  }
  .jumbotron .jb-highlight.jb-desconto h4 strong {
    font-size: 1.8rem;
  }
  .jumbotron .jb-highlight.jb-desconto small {
    font-size: 10px;
    line-height: 1;
  }
  .jumbotron .img-top {
    max-width: 100%;
    left: initial;
    width: inherit;
  }

  .courses-header .content {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }

  .card-course .card-body {
    height: 250px;
  }

}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
