/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'gothammedium';
  src: url('gotham-medium-webfont.woff2') format('woff2'),
    url('gotham-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gothamblack';
  src: url('gotham-black-webfont.woff2') format('woff2'),
    url('gotham-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gothambold';
  src: url('gotham-bold-webfont.woff2') format('woff2'),
    url('gotham-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gothambook';
  src: url('gotham-book-webfont.woff2') format('woff2'),
    url('gotham-book-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gothamregular';
  src: url('gotham-light-webfont.woff2') format('woff2'),
    url('gotham-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body {
  font-family: "gothambook", sans-serif;
  color: #444444;
}

a {
  color: #33D8E2;
  text-decoration: none;
}

a:hover {
  color: #33D8E2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gothambook", sans-serif;
}

/*Variables*/
:root {
  --lightblue: #00B4DC;
}

/*Clases predefinidas*/
.bg-lightblue {
  background-color: var(--lightblue);
}

.border-radius-mtd {
  border-radius: 100px !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #049BB4;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #049BB4;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 35px 0;
}



#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header .logo2 img {
  padding-left: 30px;
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
@media (max-width: 991px) {
  #hero {
    padding-top: 200px;
  }
}

#header img {
  width: 100%;
}

.navbar-color {
  background-color: rgba(255, 255, 255, 0.5);
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.nav-link1 {
  padding-right: 20px;
  border-right: 1px solid #333333;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px 10px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: red;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-image: url(/assets/img/backgroundhero.png);
  background-color: #e2e2e2;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#hero .container {
  padding-top: 10%;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  color: #00B4DC;
}

#hero h2 {
  font-family: 'gothammedium';
  color: #333333;
  margin-bottom: 10px;
  font-size: 20px;
}

#hero .col-tx {
  max-width: 28%;
}



#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.img-btn img {
  max-width: 70%;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 70%;
  }

  #hero .col-tx {
    max-width: 100%;
  }

  #hero .col-img {
    margin-left: auto;
  }

  .img-btn {
    justify-content: center;
  }

  .img-btn img {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Aprenda mas
--------------------------------------------------------------*/
#aprenda {
  background-image: url(/assets/img/bg-aprendamas.png);
  background-color: #e2e2e2;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#aprenda .container {
  padding-top: 2%;
  max-width: 80%;
}

.tx-aprenda p {
  text-align: left;
  font-family: 'gothammedium';

}

.tx-aprenda2 p {
  text-align: left;
  font-family: 'gothammedium';

}

.tx-aprenda img {
  max-width: 30%;
  padding-bottom: 20px;
}

.tx-aprenda2 img {
  max-width: 22%;
  padding-bottom: 20px;
}

.col-lg-4.tx-aprenda {
  text-align: center;
  border-right: 2px solid #00B4DC;
  padding: 0 40px;
}

.col-lg-4.tx-aprenda2 {
  text-align: center;
  padding: 0 40px;
}

.title-aprenda {
  max-width: 25%;
}

.title-aprenda p {
  font-family: 'gothamblack';
  background-color: #00B4DC;
  color: white;
  padding: 10px 30px 10px 150px;
  border-radius: 0 50px 50px 0;
}

.imagen {
  min-height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  #aprenda {
    padding-top: 0;
  }

  .col-lg-4.tx-aprenda {
    border-right: none;
    padding: 0 10px;
  }

  .col-lg-4.tx-aprenda2 {
    padding: 0 10px;
  }

  .title-aprenda {
    max-width: 60%;
  }

  .title-aprenda p {
    padding: 10px 10px 10px 80px;
  }
}

/*--------------------------------------------------------------
# Test home
--------------------------------------------------------------*/
.haga {
  position: absolute;
  right: 5%;
}

.haga img {
  max-width: 40%;
}

#testhome {
  background-image: url(/assets/img/bg-test.png);
  background-color: #e2e2e2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tx-test4 p {
  font-family: 'gothambold';
  color: #000000;
  font-size: 8px;
  text-align: center;
}

.tx-test3 p {
  font-family: 'gothammedium';
  color: #047D88;
  font-size: 10px;
  text-align: left;
}

.logoast {
  align-items: center;
  display: flex;
}

.ctest {
  margin-top: 28px;
  background-color: #00B4DC;
  padding: 50px 40px 30px 40px;
  border-radius: 50px;
}

.tx-rect {
  text-align: center;
  color: white;
}

.tx-rect h1 {
  font-family: 'gothamblack';
  font-size: 18px;
}

.tx-rect p {
  font-family: 'gothambook';
  font-size: 12px;
}

.tx-rect h2 {
  font-family: 'gothambook';
  font-size: 16px;
}

.divbtn {
  margin: 40px 0;
}

.btn-test {
  background-color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'gothambook';
  font-stretch: 10%;
  font-size: 25px;
}

.ctestm {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .logoast {
    align-items: center;
    display: block;
    margin-bottom: 10px;
  }

  .tx-test3 p {
    text-align: center;
  }

  .btn-test {
    font-size: 20px;
  }

}

@media (min-width: 768px) {
  .haga {
    right: 5%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.comparta {
  position: absolute;
  left: 20%;
  padding-top: 20px;
}

.comparta img {
  max-width: 40%;
}

#footer {
  font-size: 14px;
  background: #333333;
}

#footer .footer-top {
  padding: 80px 0 30px 0;
  background: #00B4DC;
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

.tx-footer p {
  font-family: 'gothambold';
  color: white;
}

.tx-footer2 p {
  font-family: 'gothambold';
  color: white;
  font-size: 13px;
}

.tx-footer3 p {
  font-family: 'gothambold';
  color: white;
  font-size: 13px;
}

.tx-footer4 p {
  font-family: 'gothambook';
  color: white;
  font-size: 8px;
  text-align: center;
}

.tx-footer5 p {
  font-family: 'gothambook';
  color: #333333;
  font-size: 8px;
  text-align: center;
}

.bgnota {
  background-color: #E8EAED;
  padding: 10px 0 0 0 !important;
}

.imgweb {
  justify-content: left;
}

.imgweb img {
  max-width: 90%;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
  padding: 0 1% 0 0;
}

.copyright p {
  font-size: 8px;
  text-align: center;
}

#footer .credits {
  display: block;
}

#footer .credits img {
  max-width: 70%;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }

  .footer-links {
    justify-content: center;
  }

  #footer .footer-top .social-links a {
    font-size: 24px;
    padding: 12px 0;
    width: 50px;
    height: 50px;
    margin: 10px;
  }

  .cfooter {
    max-width: 85%;
  }

  .imgweb {
    justify-content: center;
  }

  .imgweb img {
    max-width: 30%;
  }

  .tx-footer p {
    text-align: center;
  }

  .tx-footer2 p {
    text-align: center;
  }

  .tx-footer3 p {
    text-align: center;
  }

  .tx-footer4 p {
    text-align: center;
  }

  .tx-footer5 p {
    text-align: center;
  }
}

/*Ajustes NavBar Dani */
@media (min-width:990px) {
  .collapse.navbar-collapse {
    justify-content: end;
  }
}

.navbar-light .navbar-nav .nav-link {
  padding: 0 30px;
}


@media (min-width:991px) {
  .nav-item1 {
    border-right: 1px solid #333333;
  }
}


/*Estilos de test-mdi*/

#takethetest #test-progress:before {
  font-family: 'gothambook';
  color: white;
  font-size: 14px;
}

.bar2 {
  background-color: white;
}

#takethetest .quiz-statement {
  font-family: 'gothamblack';
  color: white;
}

#takethetest .btn-quiz {
  font-family: 'gothambook';
  border-radius: 50px;
}

#start-test {
  font-family: 'gothambook';
  border-radius: 50px !important;
  overflow: hidden;
}

.fill {
  background-color: black !important;
}

#question-container {
  display: block;
}



section#takethetest:after {
  content: '';
  background-image: none;
}



#takethetest .btn-quiz:active,
#takethetest .btn-quiz:hover {
  box-shadow: 4px 7px 13px -10px #000 !important;
  background-color: #2596be;
}

#takethetest .btn-quiz {
  box-shadow: 4px 7px 13px -10px #000 !important;
  background-color: #2596be;
  border-radius: 50px !important;
  font-size:1rem;
}



#takethetest {
  background-image: url('/assets/img/bg-test-1.png');
  background-color: #e2e2e2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#takethetest .btn-quiz:active,
#takethetest .btn-quiz:hover {
  animation: botondms 2s ease 0s 1 normal forwards;
}

.navbar-color {
  background-color: rgba(255, 255, 255, 0.5);

}


@keyframes botondms {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}


.navbar-nav>a {
  min-height: 30px;
}


@media (max-width:992px) {
  .navbar-nav {
    padding-top: 15px;
  }
}

.condicional.panama {
  display: none;
}

/*Ajustes Dani*/
      .footer-bottom {
        font-size: 12px;
      
      }

      .copyright p {
        font-size: 12px;
        text-align: center;
      }

            .tx-footer3 p {
      
        color: white;
        font-size: 13px;
      }

      .tx-footer4 p {
      
        color: white;
        font-size: 12px;
        text-align: center;
      }


        .tx-footer5 p {
    
        color: #333333;
        font-size: 12px;
        text-align: center;
      }

      
            .botones a {
                width: 100% !important;
                max-width: none;
                text-align: center;
            }

