/*!
 * Estilos Global Export by CoMa 2019
 * Copyright 2019 Global Export (http://www.globe-export.com/)
 * Copyright 2019 CoMa - Comunicación Marketing (https://www.coma-marketing.es/)
 */


/***************
 * TIPOGRAFÍA *
***************/

/* font-family: 'Montserrat', Helvetica, Arial, sans-serif; */
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap');

.font-globex, h2 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.font-black {
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}




/***************
 * GENERALES *
***************/

body {
  color: #404040;
  position: relative;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  /*max-width: 100%;
  max-width: 100vw;*/
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body:not(.home) {
  padding-top: 0;
}

main {
  max-width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.btn {
  border: 0;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

section:first-of-type {
  padding-top: 100px;
}

/*section:not(.intro) {
  padding-top: 140px;
}*/

.featured-1, .featured-2, .testimonials, .contact {
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}

/* dark background */
.dark-bg::before {
  background: rgba(0,0,0,0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/* blue background */
.blue-bg::before {
  background-color: rgba(0,203,255,.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/* orange background */
.orange-bg::before {
  background-color: rgba(174,67,31,.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/* sombra negra */
.sombra-negra {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.btn {
  text-shadow: none;
}



/***************
 * NAV MENU *
***************/

/* Toggler */
.navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Toggler icon */
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar {
  height: 120px;
  padding: 0 0 10px 0;
}

#mainNav {
  max-width: 100%;
  max-width: 100vw;
  /*overflow-x: hidden;*/
}

#mainNav.home {
  transition: all ease-in-out 200ms;
  background-color: transparent !important;
}

.supnav-fx {
    top: -40px;
}

#mainNav:not(.home) {
  background-color: #FFF !important;
  -webkit-box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
  transition: all ease-in-out 200ms;
}

.supnav {
  height: 40px;
  background-color: #343a40;
  position: absolute;
  top: 0;
}

.supnav .navbar-nav {
  /*flex-direction: row-reverse;*/
  float: right;
  padding-right: 10px;
}

.supnav .navbar-nav li {
  /*flex-direction: row-reverse;*/
  float: right;
  padding-right: 10px;
}

.supnav .navbar-nav a {
  font-size: 20px;
  color: #ff6633 !important;
  transition: all ease-in-out 200ms;
}

.supnav .navbar-nav a:hover {
  opacity: 0.75;
}

.navbar-brand img {
  height: 54px;
}

.navbar > .container:not(.supnav) {
  margin-top: 40px;
}

.navbar a {
  font-size: 13px;
}

.navbar-nav .nav-link {
  font-weight: 700;
}

.navbar-nav .dropdown-item {
  font-weight: 400;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-nav li.nav-item {
  margin-left: 10px;
  cursor: pointer;
}

li.nav-item.dropdown:before {
  position: relative;
  content: "";
  width: 0%;
  height: 100%;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.0);
  right: 40%;
  transition: all ease-in-out 200ms;
}

li.nav-item.dropdown:hover:before {
  width: 100%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all ease-out 350ms;
}

#mainNav:not(.home) li.nav-item a {
  color: #555;
}

#mainNav:not(.home) li.nav-item a.nav-link:hover, #mainNav:not(.home) li.nav-item.dropdown.show a.nav-link, li.nav-item.active a.nav-link {
  color: #2ca8ff !important;
}

a.nav-link.join-btn.pulse:hover {
  color: #56b9ff !important;
  background-color: #f8f9fa;
  opacity: 0.9;
}

#mainNav:not(.home) li.nav-item a.active {
    color: #FFF !important;
}

.dropdown-menu {
  width: 150%;
}

/*.dropdown:hover>.dropdown-menu {
  display: block;
}*/

a.dropdown-item {
  color: #555;
  transition: all ease-in-out 200ms;
  white-space: normal;
}

a.dropdown-item:hover {
  color: #2ca8ff !important;
  transition: all ease-in-out 200ms;
}

/***** Botón ¡Apúntate! *****/
a.join-btn {
  background-color: #2ca8ff;
  border-radius: 5px;
  padding: 7px;
  font-size: .85em !important;
  font-weight: 300 !important;
  line-height: normal;
  bottom: 1px;
  cursor: pointer !important;
  color: #FFF;
}

.supnav .navbar-nav a.join-btn, a.join-btn {
  color: #FFF !important;
}

li.join-btn {
  display: flex;
  align-items: center;
}

.dropdown-item.join-btn {
  margin: 0 10px;
  width: auto;
}

.join-btn.pulse {
    animation-name: pulse;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(.85);
  }
  100% {
    transform: scale(1);
  }
}

/* font awesome de supnav */
.supnav i {
  color: #FFF;
  margin-right: 5px;
}




/***************
 * HOME HEADER SECTION *
***************/

header.home {
  width: 100%;
  width: 100vw;
  height: 100%; /* Si se cambia, cambiar header.home .row */
  height: 100vh; /* Si se cambia, cambiar header.home .row */
  background-image: url('../images/content/estudiante-universitaria-en-clases-ingles-trabasse-languages.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  overflow: hidden;
}

header.home:before {
  position: absolute;
  top: 0;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  content: "";
  background: rgba(0,0,0,0.4);
}

.izquierda {
  text-align: left;
}

.derecha {
  text-align: right;
}

.centro {
  text-align: center;
}

header.home .row {
  height: 100%; /* La misma que tenga el header.home */
  height: 100vh; /* La misma que tenga el header.home */
}

header .title {
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
}

header .subtitle {
  color: #FFF;
}

.buttons {
  margin-top: 50px;
}

.buttons a, .buttons a:hover {
  background-color: #2ca8ff;
  font-weight: 300;
  padding: 15px 30px;
}

.btn:hover, .btn.btn-primary:hover, .button:hover, button:hover, input[type="submit"]:hover {
  box-shadow: 0 3px 8px 0 rgba(0,0,0,.17) !important;
  opacity: 0.9;
}
.accordion button:hover{
  box-shadow: none!important;
}
#accordion button:hover{
  box-shadow: none!important;
}
  
th small{
      font-size: 0.85em;

}
header .lateral {
  font-size: 23px;
  font-weight: 300;
  line-height: 1.6;
  color: #FFF;
}

header .row.lateral {
  height: auto;
  font-size: 15px;
  font-weight: 700;
  margin-top: 30px;
  color: #FFF;
  line-height: 1rem;
}

header .row.lateral i {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: #ff6633;
}




/***************
 * INTRO SECTION *
***************/

.intro:after {
  content: "";
  width: 100%;
  width: 100vw;
  height: 80px;
  background-color: #FFF;
  position: absolute;

  /* The points are: centered bottom, left top, right top */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin-left: -15px;
  bottom: -80px;
  z-index: 10;
}

/***************
 * SECTION INGLES KIDS *
***************/
.ingles-kids-content{
  background-image: url('../images/content/kids-fun-language-learning.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding-bottom: 70px;
  padding-top: 70px;
}
.ingles-kids-content::before{
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250,201,87,0.41);
  background: -moz-linear-gradient(top, rgba(250,201,87,0.41) 0%, rgba(255,119,41,0.51) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(250,201,87,0.41)), color-stop(100%, rgba(255,119,41,0.51)));
  background: -webkit-linear-gradient(top, rgba(250,201,87,0.41) 0%, rgba(255,119,41,0.51) 100%);
  background: -o-linear-gradient(top, rgba(250,201,87,0.41) 0%, rgba(255,119,41,0.51) 100%);
  background: -ms-linear-gradient(top, rgba(250,201,87,0.41) 0%, rgba(255,119,41,0.51) 100%);
  background: linear-gradient(to bottom, rgba(250,201,87,0.41) 0%, rgba(255,119,41,0.51) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fac957', endColorstr='#ff7729', GradientType=0 );

}
.ingles-kids-content i{
  border-radius:0%;
  font-size:62px;
  padding:5px;
}

/***************
 * IMPORTE *
***************/

.importe{
  padding: 20px;
}

/***************
 * COLLAPSE *
***************/


.TOEIC {
background-color: #e7e5e5;
}
.TOEFL{
  background-color: #e7e5e5;
}
.CAMBRIDGE{
  background-color: #e7e5e5;
}
/***************
 * FEATURED SECTIONS *
***************/

.featured-1, .featured-2 {
  word-break: normal;
  word-wrap: normal;
}

.featured-1 {
  background-image: url('../images/content/ingles-sin-fronteras.jpg');
  background-repeat: no-repeat;
  background-size: auto 90%;
  background-position: bottom center;
  background-color: #000;
  overflow: hidden;
  color: #FFF;
  padding-bottom: 200px;
  padding-top: 110px !important;
}

.featured-1 .btn-primary {
  color:#ffffff;
  background-color:#ff8b3d;
  font-weight: 700 !important;
}

.featured-2 {
  background-image: url('../images/content/madrid_spanish_for_foreigners.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  color: #FFF;
  padding-bottom: 200px;
}

.featured-2 .btn-primary {
  color: #ffffff;
  background-color: #5ed1e0;
  font-weight: 700 !important;
}

.featured-2 h2 {
  font-weight: 300;
}

.featured-2 h2 strong {
  font-weight: 700;
}

.featured-2 h5 {
  margin-bottom: 50px;
}

/***************
 * OFERTA  *
***************/
.oferta{
  background-color: #ffc23f!important;
}
.btn-oferta{
border-radius: 4px;
cursor: pointer;
opacity: 1;
background-color: #2091e1;
transition: all .2s ease-in-out;
padding-bottom: .375em;
padding-left: 1.25em;
padding-right: 1.25em;
padding-top: .375em;
line-height: 1.5 !important;
font-size: 1em;
margin-top: 20px;
display: inline-block;
text-align: center;
text-decoration: none;
overflow-wrap: break-word;
color: #FFF;
}
.btn-oferta:hover{
  text-decoration: none;
  color: #2091e1;
  background-color: #FFF;
  opacity: .8;
}
/***************
 * TESTIMONIAL SECTION *
***************/

.testimonials {
  background-image: url('../images/content/your_opinion_matters_testimonials.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-color: #000;
  /*overflow: hidden;*/
  padding-bottom: 100px;
  padding-top: 50px !important;
}

.testimonials h2, .testimonials .subtitle {
  color: #FFF;
}

.testimonials:after {
  content: "";
  width: 100%;
  width: 100vw;
  height: 80px;
  background-color: #000;
  position: absolute;

  /* The points are: centered bottom, left top, right top */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  top: -80px;
  margin-left: -15px;
  z-index: 10;

  /* Invertir triángulo */
  -webkit-transform: rotate(180deg);     /* Chrome and other webkit browsers */
  -moz-transform: rotate(180deg);        /* FF */
  -o-transform: rotate(180deg);          /* Opera */
  -ms-transform: rotate(180deg);         /* IE9 */
  transform: rotate(180deg);
}

.testimonials .card-body i {
  font-size: 2.5rem;
  padding: 15px 0 30px 0;
}

.testimonials .fa-quote-left {
  padding-right: 10px !important;
  color: #2ca8ff;
}

.testimonials .fa-quote-right {
  color: #ff6633;
  transform: translate(0,6px);
}



/***************
 * CONTACT SECTION *
***************/

.contact {
  background-image: url('../images/content/trabasse_location_madrid.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  /*overflow: hidden;*/
  color: #FFF;
  padding-bottom: 100px;
  /*padding-top: 150px !important;*/
}

.contact h2, .contact .subtitle {
  color: #FFF;
}

.contact .fa-map-marker-alt {
  display: block;
  margin-bottom: 10px;
  color: #ff6633;
  font-size: 20px;
}

.contact i:not(.fa-map-marker-alt) {
  margin-right: 5px;
}

.contact h4 {
  display: inline-block;
}




/***************
 * HEADER SECTIONS (not home) *
***************/

header {
  position: relative;
  width: 100%;
  width: 100vw;
}

header:not(.home) {
  height: 500px;
  max-height: 500px;
  padding-top: 150px;
}

header .row {
  height: 300px;
}

.main-content {
  font-size: 18px;
}

.cursos-ingles-01 {
  background-image: url('../images/content/cursos-ingles-madrid.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.cursos-ingles-02 {
  background-image: url('../images/content/exams_color.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.cursos-ingles-03 {
  background-image: url('../images/content/job-interview.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.cursos-ingles-04 {
  background-image: url('../images/content/kids-learning-english.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

/***************
 * SPANISH COURSE HEADER *
***************/
.spanish-course-01 {
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.spanish-course-02 {
  background-image: url('../images/content/preparacion_examen_siele_spanish_certificate.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.spanish-course-03 {
  background-image: url('../images/content/turista-foto.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.spanish-course-04 {
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.chino-course-01{
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.chino-course-02{
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.chino-course-03{
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.frances-course-01{
  background-image: url('../images/content/estudiantes-examen-idiomas.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.aleman-course-01{
  background-image: url('../images/content/estudiantes-examen-idiomas.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.portugues-course-01{
  background-image: url('../images/content/estudiantes-examen-idiomas.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.italiano-course-01{
  background-image: url('../images/content/estudiantes-examen-idiomas.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.chino-one-01{
  background-image: url('../images/content/estudiantes-examen-idiomas.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.niveles-course-01{
  background-image: url('../images/content/haciendo-examen.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.quienes-somos-01{
  background-image: url('../images/content/academia-idiomas-trabasse-interior_clase.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.contacto-01{
  background-image: url('../images/content/contactar-academia-idiomas-trabasse.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.trabaja-01{
 background-image: url('../images/content/academia-idiomas-trabasse-interior_clase.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.aviso-legal{
  background-color: #E5E5E5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden; 
  height: 50%!important;
}
.spanish-course{
  background-image: url('../images/content/language-academy-for-foreigners-in-madrid.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden; 
}
.spanish-course::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.7;

}
/***************
 * METODOLGIA CONTENT *
***************/
.methodology h3{
  color: black;
  font-weight: bold;
  z-index: 999;
}
.methodology-content{
  background-color: white;
  text-align: center;
  border-radius: 15px; 
}
.cuadrado-1{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(98,177,252,1);
  background: -moz-linear-gradient(top, rgba(98,177,252,1) 0%, rgba(0,90,179,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(98,177,252,1)), color-stop(100%, rgba(0,90,179,1)));
  background: -webkit-linear-gradient(top, rgba(98,177,252,1) 0%, rgba(0,90,179,1) 100%);
  background: -o-linear-gradient(top, rgba(98,177,252,1) 0%, rgba(0,90,179,1) 100%);
  background: -ms-linear-gradient(top, rgba(98,177,252,1) 0%, rgba(0,90,179,1) 100%);
  background: linear-gradient(to bottom, rgba(98,177,252,1) 0%, rgba(0,90,179,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62b1fc', endColorstr='#005ab3', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}
.arrow{
  width: 100px;
  left: 40%;
  left: calc(50% - 50px);
  position: relative;
  height: 40px;
  margin-bottom: -8px;
  z-index: 999;
  margin-top: -1px;

}
.arrow-1 {
  fill:rgba(0,90,179,1);
}
.cuadrado-2{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(147,206,222,1);
  background: -moz-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(147,206,222,1)), color-stop(41%, rgba(117,189,209,1)), color-stop(100%, rgba(73,165,191,1)));
  background: -webkit-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
  background: -o-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
  background: -ms-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
  background: linear-gradient(to bottom, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93cede', endColorstr='#49a5bf', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}
.arrow-2 {
  fill:rgba(73,165,191,1);
}
.cuadrado-3{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(77,250,112,1);
  background: -moz-linear-gradient(top, rgba(77,250,112,1) 0%, rgba(41,82,0,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(77,250,112,1)), color-stop(100%, rgba(41,82,0,1)));
  background: -webkit-linear-gradient(top, rgba(77,250,112,1) 0%, rgba(41,82,0,1) 100%);
  background: -o-linear-gradient(top, rgba(77,250,112,1) 0%, rgba(41,82,0,1) 100%);
  background: -ms-linear-gradient(top, rgba(77,250,112,1) 0%, rgba(41,82,0,1) 100%);
  background: linear-gradient(to bottom, rgba(77,250,112,1) 0%, rgba(41,82,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dfa70', endColorstr='#295200', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}

.arrow-3{
  fill:rgba(41,82,0,1);
}
.cuadrado-4{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(204,224,188,1);
  background: -moz-linear-gradient(top, rgba(204,224,188,1) 0%, rgba(69,122,23,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(204,224,188,1)), color-stop(100%, rgba(69,122,23,1)));
  background: -webkit-linear-gradient(top, rgba(204,224,188,1) 0%, rgba(69,122,23,1) 100%);
  background: -o-linear-gradient(top, rgba(204,224,188,1) 0%, rgba(69,122,23,1) 100%);
  background: -ms-linear-gradient(top, rgba(204,224,188,1) 0%, rgba(69,122,23,1) 100%);
  background: linear-gradient(to bottom, rgba(204,224,188,1) 0%, rgba(69,122,23,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cce0bc', endColorstr='#457a17', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}


.arrow-4{
  fill:rgba(69,122,23,1);
}
.cuadrado-5{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(236,245,188,1);
  background: -moz-linear-gradient(top, rgba(236,245,188,1) 0%, rgba(109,128,4,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(236,245,188,1)), color-stop(100%, rgba(109,128,4,1)));
  background: -webkit-linear-gradient(top, rgba(236,245,188,1) 0%, rgba(109,128,4,1) 100%);
  background: -o-linear-gradient(top, rgba(236,245,188,1) 0%, rgba(109,128,4,1) 100%);
  background: -ms-linear-gradient(top, rgba(236,245,188,1) 0%, rgba(109,128,4,1) 100%);
  background: linear-gradient(to bottom, rgba(236,245,188,1) 0%, rgba(109,128,4,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecf5bc', endColorstr='#6d8004', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}


.arrow-5{
  fill:rgba(109,128,4,1);
}
.cuadrado-6{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(255,248,176,1);
  background: -moz-linear-gradient(top, rgba(255,248,176,1) 0%, rgba(224,224,13,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,248,176,1)), color-stop(100%, rgba(224,224,13,1)));
  background: -webkit-linear-gradient(top, rgba(255,248,176,1) 0%, rgba(224,224,13,1) 100%);
  background: -o-linear-gradient(top, rgba(255,248,176,1) 0%, rgba(224,224,13,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,248,176,1) 0%, rgba(224,224,13,1) 100%);
  background: linear-gradient(to bottom, rgba(255,248,176,1) 0%, rgba(224,224,13,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff8b0', endColorstr='#e0e00d', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}

.arrow-6{
  fill:rgba(224,224,13,1);
}
.cuadrado-7{
  max-width:100%;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: rgba(250,108,129,1);
  background: -moz-linear-gradient(top, rgba(250,108,129,1) 0%, rgba(255,0,0,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(250,108,129,1)), color-stop(100%, rgba(255,0,0,1)));
  background: -webkit-linear-gradient(top, rgba(250,108,129,1) 0%, rgba(255,0,0,1) 100%);
  background: -o-linear-gradient(top, rgba(250,108,129,1) 0%, rgba(255,0,0,1) 100%);
  background: -ms-linear-gradient(top, rgba(250,108,129,1) 0%, rgba(255,0,0,1) 100%);
  background: linear-gradient(to bottom, rgba(250,108,129,1) 0%, rgba(255,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa6c81', endColorstr='#ff0000', GradientType=0 );
  padding: 20px;
  font-weight: bold;
}
.arrow-7{
  fill:rgba(255,0,0,1);
}

/***************
 * MORE INFO  *
***************/

.more-info{
    font-size: 20px;
    font-style: normal;
    border-width: 0px;
    border-radius: 3px;
    padding: 12px 24px;
    
}
.more-info span{
  color: #fff;
  background: #2b98ff;
  margin-left: 0;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  font-size: 20px;
}
.more-info span:hover{
  color: #fff;
  background: #444a50;
  cursor: pointer;
}
.more-info i{
  padding-right: 12px;
}
.more-info a{
  text-align: center;
}
.more-info a:link{
  text-decoration: none;
}
.arrow-icon{
  padding-left: 12px;
}

.rellenar-form{
margin: 10px;
border: solid 1px rgba(0,0,0,.15);
padding: 50px 15px;
border-radius: 10px;
background-color: #E5E5E5;
}
.rellenar-form a{
  border-radius: 4px;
cursor: pointer;
opacity: 1;
background-color: #2091e1;
transition: all .2s ease-in-out;
padding-bottom: .375em;
padding-left: 1.25em;
padding-right: 1.25em;
padding-top: .375em;
line-height: 1.5 !important;
font-size: 1em;
margin-top: 20px;
display: inline-block;
text-align: center;
text-decoration: none;
overflow-wrap: break-word;
color: #FFF;
}
.rellenar-form a:hover{
  text-decoration: none;
  color: #2091e1;
  background-color: #FFF;
  opacity: .9;
}

/***************
 * PRICING CONTENT *
***************/

.pricing-content {
  font-size: 18px;
}

.pricing-content .sidenotes {
  font-size: 13px;
  margin-top: 50px;
  opacity: 0.7;
}

.pricing-content .row div[class^="col-"]:not(.sidenotes):not(.price):not(.featured-item) {
  margin: 10px;
  border: solid 1px rgba(0,0,0,.15);
  padding: 15px 15px;
  border-radius: 10px;
  background-color: #fff;
}

.pricing-content .curso h3 {
  color: #fff !important;
  font-style: normal;
  text-transform: none;
  background-color: blue;
  border-radius: 5px;
  line-height: 2;
  text-align: center;
  margin-bottom: 0;
}

.pricing-content .curso h4 {
  font-weight: 700;
  font-size: 15px;
  margin: 30px 0;
  text-align: center;
}

/*.pricing-content .price div:first-of-type {
  color: #fff !important;
  font-style: normal;
  text-transform: none;
  background-color: blue;
  border-radius: 5px;
  line-height: 2;
  text-align: center;
  margin-bottom: 0;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}*/

.pricing-content .price p {
  text-align: center;
  width: 100%;
}

/*.pricing-content .price:not(:last-of-type) {
  margin-bottom: 10px;
}*/

.pricing-content ul {
  list-style: none;
  font-weight: 300;
}

.pricing-content ul li::before {
  content: url('../images/trabasse-dot.png');
  margin-right: -20px;
  vertical-align: sub;
  position: relative;
  left: -30px;
}

.pricing-content .row .price-table {
  padding: 0 0;
  display: flex;
  /*margin: 10px 90px;*/
  margin: 10px 40px;
  text-align: center;;
}

.price-table + .price-table {
  margin-top: 4%;
}
.price-table p:before{
  content: '\A';
  white-space: pre;
}
.pricing-content a.btn {
  color: #FF6633 !important;
  font-weight: 300 !important;
  background-color: transparent;
  border: #FF6633 2px solid;
  border-radius: 28px;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  margin: 30px 0 20px 0;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
}

.pricing-content a.btn:hover {
  color: #FFF !important;
  background-color: rgba(255,102,51,0.9);
  border: #E55B2D 2px solid;
}
.price small:before{
  white-space: pre;
  content: "\A";
  text-align: center;
}
.price{
  text-align: center;
}
.price.one{
  width: 100%;
  text-align: center; 
}
.price small {
  white-space: nowrap;
}
/***************
 * TABLE *
***************/
table {
  margin-bottom: 0!important;
  border: none;
  padding: 0;
}
.CAMBRIDGE table, .TOEIC table, .TOEFL table{
  background-color: white;
}


table td, table th{
padding: 25px!important;
}
tr:not(:last-of-type) td, :not(thead) tr:not(:last-of-type) th{
  border-bottom: 1px solid gray;
}
table thead th{
  border-bottom: 2px solid black;
}
thead{
  text-align: center;
  background-color: #cccccc;
}
.tabla-group th{
  background-color: #cccccc;
}
.group-price{
  margin-top: 30px;
  margin-bottom: 20px; 
}
/***************
 * FEATURED ITEM *
***************/
.featured-item {
  background-color: #ff6633;
  background-image: url(../images/content/exams_color.jpg);
  --ugb-background-color: #ff6633;
  --ugb-background-color2: #ffc17f;
  --ugb-background-direction: 0deg;
  position: relative;
  background-size: cover;
  background-position: 50%;
  box-shadow: 0 5px 5px 0 rgba(18,63,82,.035),0 0 0 1px rgba(176,181,193,.2);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 60px 35px;
  --box-padding-vert: 60px;
  --box-padding-hori: 35px;
  margin-top: 100px !important;
}

.featured-item::before {
  background-image: linear-gradient(var(--ugb-background-direction,0deg),var(--ugb-background-color, #fff),var(--ugb-background-color2, #fff));
  opacity: .8;
  display: block !important;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--ugb-background-color, #fff);
}

.featured-item * {
  z-index: 3;
  position: relative;
  text-align: center;
}

.featured-item h3 {
  color: #FFF;
  font-size: 32px;
  font-weight: 400;
}

.featured-item p {
  color: #3c4858;
  font-size: 18px;
  font-weight: 300;
}

.featured-item a.featured-btn {
  border-radius: 4px;
  cursor: pointer;
  opacity: 1;
  background-color: #2091e1;
  transition: all .2s ease-in-out;
  padding-bottom: .375em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  padding-top: .375em;
  line-height: 1.5 !important;
  font-size: 1em;
  margin-top: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
  color: #FFF;
}

.featured-item a.featured-btn:hover {
  color: #2091e1;
  background-color: #FFF;
}


/***************
 * TABS  *
***************/
 #nav-tab a i{
  font-size: 50px;
   width: 100%;
  }
  @media screen and (max-width: 576px) {
  
  #nav-tab a i{
    font-size: 30px;
  }
}
/***************
 * ELSEWHERE LINKS *
***************/

.elsewhere-links {
  margin-top: 50px;
}

.elsewhere-links a {
  text-decoration: none;
  opacity: 1;
  transition: all ease-in-out 200ms;
}

.elsewhere-links a:hover {
  text-decoration: none;
  opacity: 0.75;
  transition: all ease-in-out 200ms;
}

.elsewhere-links .card {
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(200,200,200,1);
  background: 0.7;
  height: 140px;
  overflow: hidden;
}

.elsewhere-links .card-body {
  z-index: 1;
}

.elsewhere-links .card h5 {
  color: #FFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}




/***************
 * FORMULARIO*
***************/

#fcontacto i{
  padding: 12px;
}
#fcontacto button{
  font-size: 24px;
  width: 130px;
}
.cv{
   border-style:dashed;
   overflow: hidden;
   padding: 20px;

}
.cv input{
  text-align: center; 
  font-size: 70%;
}



/***************
 * FOOTER *
***************/

footer {
  height: 60px;
  padding-top: 19px;
  /*color: #FFF;*/
  padding-bottom: 5px;
  -webkit-box-shadow: 0px 0px 34px -10px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 34px -10px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 34px -10px rgba(0,0,0,0.25);
}

footer:not(.footer-home) {
  margin-top: 100px;
}

footer p:first-of-type {
  float: left;
}

footer p:last-of-type {
  float: right;
}



/********************
 * MODAL POP UP BOX *
*********************/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 40%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 20px 30px 2px 30px;
  background-color: #ff6633;
  color: white;
  text-align: left;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  z-index: 999;
}

.modal-body {padding: 20px 30px 2px 30px;}

.modal-body img {
  float: left;
  width: 44%;
  margin-right: 30px;
  margin-bottom: 20px;
}

.modal-footer {
  padding: 20px 30px 20px 30px;
  background-color: #ff6633;
  color: white;
  text-align: left;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .modal {
    padding-top: 10%;
  }
  .modal-content {
    width: 90%;
    max-height: 80%;
    position: fixed;
    margin: auto auto auto 5%;
    overflow: -moz-scrollbars-vertical; 
    overflow: scroll;
  }
  .modal-footer p.h3 {
    font-size: 1.10rem;
    font-weight: bold;
  }
  .modal-body img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}




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

/* Large devices (desktops, 992px and up) 
@media screen and (min-width: 992px) {
  

}*/

/* Large devices (desktops, 992px and up) */
@media screen and (max-width: 1199px) {

	.supnav .navbar-nav {
	    flex-direction: row;
	    justify-content: center;
	    float: none;
  	}  

}

/* Medium devices (desktops, 992px and up) */
@media screen and (max-width: 992px) {

	/*.supnav .navbar-nav {
	    flex-direction: row;
	    justify-content: center;
	    float: none;
  	} */ 

}



/* Small devices (desktops, 768px and up) */
@media screen and (max-width: 1199px) {

  .navbar {
    height: 140px;
  }

  #mainNav.home {
    transition: all ease-in-out 200ms;
    background-color: transparent !important;
    background-color: #FFF !important;
    -webkit-box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 10px 46px 0px rgba(0,0,0,0.3);
    transition: all ease-in-out 200ms;
  }

  #mainNav.home li.nav-item a {
    color: #555;
  }

  #mainNav.home li.nav-item a.nav-link:hover, #mainNav.home li.nav-item.dropdown.show a.nav-link {
    color: #2ca8ff;
  }

  /*#mainNav:not(.home) {
    top: 0px;
  }*/

  .navbar > .container:not(.supnav) {
    margin-top: 60px;
  }

  .supnav {
    height: 60px;
  }

  .supnav-fx {
    top: -60px;
  }

  /*.supnav-fx {
    top: 0;
  }*/

  .supnav .navbar-nav {
    /*flex-direction: row-reverse;*/
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: center;
    
  }

  .supnav .navbar-nav li {
    /*flex-direction: row-reverse;*/
    float: none;
    padding-right: 10px;
  }

  .supnav .navbar-nav a {
    font-size: 26px;
  }

  .supnav li:not(.main) {
    display: none;
  }

  .navbar-brand {
    margin-left: 10px;
  }

  .navbar-toggler {
    margin-right: 10px;
  }

  header.home {
    padding-top: 200px;
    height: 150vh;
    background-image: url('../images/content/estudiante-universitaria-en-clases-ingles-trabasse-languages-vertical.jpg');
    background-position: center center;
  }

  header.home::before {
    height: 150vh;
  }

  header.home .row {
    /*height: 150vh; /* La misma que tenga el header.home */
    height: auto;
  }

  .navbar-collapse {
    min-height: 100%;
    min-height: 100vh;
    background: rgba(240,240,240,1);
    background: -moz-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 18%, rgba(254,254,254,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(240,240,240,1)), color-stop(18%, rgba(240,240,240,1)), color-stop(100%, rgba(254,254,254,1)));
    background: -webkit-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 18%, rgba(254,254,254,1) 100%);
    background: -o-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 18%, rgba(254,254,254,1) 100%);
    background: -ms-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 18%, rgba(254,254,254,1) 100%);
    background: linear-gradient(to bottom, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 18%, rgba(254,254,254,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#fefefe', GradientType=0 );
  }

  .dropdown-menu {
    width: 80%;
  }

  .dropdown-item {
    padding: 0.75rem 1.5rem;
  }

  .izquierda, .derecha {
    text-align: center;
  }

  .home .derecha {
    margin-top: 50px;
  }

  .featured-1 ul {
    text-align: left;
    margin-left: 20px;
  }

  .pricing-content .col-12 {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
  }

  .pricing-content .row .price-table {
    margin: 10px 10%;
  }

  .contact {
    padding-top: 2px;
  }
   iframe{
      width: 100%!important;

    }
    .CAMBRIDGE table td,.CAMBRIDGE table th{
      padding: 10px !important;
      font-size: 0.80em;
    }
}

/* Small devices (desktops, 992px and up) */
@media screen and (max-width: 576px) {
  
  .nav-item i{
    font-size: 20px;
  }


}