:root {
  --primaryColor: #014769;
  --secondaryColor: #ffb749;
  --buttonHoverColor: #f69d18;
  --lightColor: #fefffe;
  --backgroundColor: #efefef;
  --primaryFont: "Nunito", sans-serif;
  --secondaryFont: "Concert One", sans-serif;
  --overlayColor: rgba(0, 47, 104, 0.645);
}

.primary-font {
  font-family: var(--primaryFont);
}

.secondary-font {
  font-family: var(--secondaryFont);
}

* {
  font-family: var(--primaryFont);
  color: var(--primaryColor);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9;
  transition: 0.3s background-color ease-in-out, 0.3s color ease-in-out;
}
.header #navbarSupportedContent {
  text-align: center;
}
.header #navbarSupportedContent ul li {
  margin-left: 2rem;
}
.header.dark {
  background-color: var(--primaryColor);
}
.header.dark .top-header {
  background-color: var(--lightColor);
}
.header.dark .top-header ul li a {
  color: var(--primaryColor);
}
.header.dark .top-header ul li a svg {
  fill: var(--primaryColor);
}
.header .top-header {
  background-color: var(--primaryColor);
  position: relative;
  transition: 0.3s background-color ease-in-out, 0.3s color ease-in-out;
}
.header .top-header .top-header-container {
  display: flex;
  justify-content: space-between;
}
.header .top-header ul {
  margin: 0;
  display: flex;
  gap: 3rem;
  padding: 0;
}
@media screen and (max-width: 375px) {
  .header .top-header ul {
    gap: 1rem;
  }
}
.header .top-header ul li {
  list-style: none;
  display: flex;
  align-items: center;
  height: 1.8rem;
}
.header .top-header ul li a {
  color: var(--lightColor);
  fill: currentColor;
  transition: 0.3s color ease-in-out;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}
.header .top-header ul li a svg {
  transition: 0.3s fill ease-in-out;
  fill: var(--lightColor);
  margin-right: 0.3rem;
}
.header .top-header ul li a:hover {
  color: var(--secondaryColor);
}
.header .top-header ul li a:hover svg {
  fill: var(--secondaryColor);
}
.header .top-header .social-networks {
  gap: 0.8rem;
}
.header nav.navbar {
  background-color: transparent !important;
}
.header nav.navbar a {
  color: white !important;
  text-shadow: 1px 1px 1px var(--primaryColor);
  font-weight: 600;
  transition: 0.3s color ease-in-out;
}
.header nav.navbar a:hover {
  color: var(--secondaryColor) !important;
}

.hero {
  min-height: 90vh;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 47, 104, 0.4);
  z-index: 1;
}
.hero #video-hero {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  min-width: 100%;
  min-height: 100%;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  min-height: calc(90vh - 2rem);
}
.hero .hero-container .form-col {
  min-height: calc(90vh - 2rem);
}
.hero .hero-container .title {
  font-size: 1.8rem;
  color: var(--lightColor);
  padding-top: 2.8rem;
}
.hero .hero-container .line {
  width: 200px;
  height: 2px;
  background-color: var(--secondaryColor);
  margin: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .hero .hero-container .line {
    margin: 0 auto;
  }
}
.hero .hero-container .subtitle {
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: var(--lightColor);
}
.hero .hero-container .register-form {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 400px;
}
.hero .hero-container .register-form .card-header {
  background-color: var(--primaryColor);
  border-bottom: 5px solid var(--secondaryColor);
  font-weight: bold;
}
.hero .hero-container .register-form .card-header h3 {
  color: var(--lightColor);
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.hero .hero-container .register-form input,
.hero .hero-container .register-form textarea {
  background-color: #e5e5e5;
  border-radius: 1.2rem;
}
.hero .hero-container .register-form input:focus,
.hero .hero-container .register-form textarea:focus {
  box-shadow: 0 0 7px -1px var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.popular .popular-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 0 black;
  box-shadow: 2px 2px 10px -6px #4c4c4c;
}
.popular .popular-card .card-header {
  border-bottom: 7px solid var(--secondaryColor);
}
.popular .popular-card .popular-card-text {
  font-size: 1rem;
  font-weight: 700;
}

.about-us {
  background-color: var(--primaryColor);
  padding: 3rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}
.about-us [class^=box-] {
  position: absolute;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 0.8rem;
}
.about-us .box-1 {
  border: 2px solid rgba(255, 255, 255, 0.7);
  top: 60%;
  transform: translateX(0px) rotate(15deg);
}
.about-us .box-2 {
  border: 2px solid rgba(255, 255, 255, 0.3);
  top: calc(60% + 80px);
  transform: translateX(-10px) rotate(15deg);
}
.about-us .box-3 {
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: translateX(10px) rotate(15deg);
  top: calc(60% - 80px);
}
.about-us .box-4 {
  border: 2px solid rgba(255, 255, 255, 0.25);
  transform: translateX(15px) rotate(15deg);
  top: calc(60% - 140px);
}
.about-us .box-5 {
  border: 2px solid rgba(255, 255, 255, 0.25);
  transform: translateX(30px) rotate(15deg);
  top: -40px;
}
.about-us .header-section .title,
.about-us .header-section .subtitle {
  color: var(--lightColor);
}
.about-us p {
  color: var(--lightColor);
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  .about-us p {
    max-width: unset;
  }
}
.about-us .about-us-image-container {
  display: flex;
  align-items: center;
}
.about-us .about-us-image-container .about-us-image {
  width: 450px;
  max-width: 95%;
  border-radius: 0.5rem;
  border: 5px solid rgb(134, 187, 255);
  position: relative;
  z-index: 2;
}
.about-us .about-us-image-container .about-us-image img {
  border-radius: 0.2rem;
  height: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
}
.about-us .about-us-image-container .about-us-image::before {
  content: "";
  border-radius: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 234, 0, 0.361);
  transform: rotate(5deg) translateX(-9px) translateY(30px);
  z-index: 1;
}

.benefits {
  padding: 3rem 0;
  background-image: url("../imagenes/background_benefits.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.benefits::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--overlayColor);
  z-index: 1;
}
.benefits .benefits-container {
  position: relative;
  z-index: 2;
  color: white;
}
.benefits .benefits-container .benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.benefits .benefits-container .benefit__image {
  background-color: var(--lightColor);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.benefits .benefits-container .benefit__image__icon {
  width: 60%;
}
.benefits .benefits-container .benefit__text {
  color: white;
  font-weight: bold;
  text-align: center;
}

.careers {
  padding: 3rem 0;
}
.careers .careers-section .career {
  height: 150px;
  margin: 1rem 0;
  border-radius: 0.5rem;
  padding: 1.3rem 1.8rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s all ease-in-out;
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .careers .careers-section .career {
    justify-content: center;
    text-align: center;
  }
}
.careers .careers-section .career::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlayColor);
  z-index: 1;
}
.careers .careers-section .career[class^=career]:hover {
  background-size: 120%;
}
.careers .careers-section .career.career-1 {
  background-image: url("../imagenes/image_category_administration.jpg");
}
.careers .careers-section .career.career-2 {
  background-image: url("../imagenes/image_category_accounting.jpg");
}
.careers .careers-section .career.career-3 {
  background-image: url("../imagenes/image_category_architecture.jpg");
}
.careers .careers-section .career.career-4 {
  background-image: url("../imagenes/image_category_mathematics.jpg");
}
.careers .careers-section .career.career-5 {
  background-image: url("../imagenes/image_category_programming.jpg");
}
.careers .careers-section .career.career-6 {
  background-image: url("../imagenes/image_category_biology.jpg");
}
@media screen and (min-width: 769px) {
  .careers .careers-section .career.double-height {
    height: 332px;
  }
}
.careers .careers-section .career .career-info {
  z-index: 2;
}
.careers .careers-section .career .career-info .text {
  color: var(--lightColor);
  margin-bottom: 1rem;
  font-weight: bold;
}

.our-team {
  background: var(--backgroundColor);
  padding: 3rem 0;
}
.our-team .team-carousel .card {
  width: 230px;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}
.our-team .team-carousel .card .card-header {
  position: relative;
  height: 100px;
  background-image: url("../imagenes/image_background_card_team_1.jpg");
  background-size: cover;
  background-position: bottom;
  border: none;
  margin-bottom: 2.5rem;
}
.our-team .team-carousel .card .card-header::before {
  content: "";
  position: absolute;
  background-color: var(--overlayColor);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.our-team .team-carousel .card .card-header img {
  z-index: 9;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  transform: translateY(38px);
  border: 5px solid var(--lightColor);
}
.our-team .team-carousel .card .name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
}
.our-team .team-carousel .card .charge {
  color: var(--secondaryColor);
}

#video {
  padding: 2rem 0;
}
#video .video-container {
  padding: 1rem 0;
  background-image: url("../imagenes/video-background.jpg");
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
#video .video-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 4, 32, 0.859), rgba(0, 11, 81, 0.609), rgba(0, 6, 49, 0.735));
  z-index: 2;
}
#video .video-section {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}
#video .video-section .testimonial-title {
  color: var(--lightColor);
  text-transform: uppercase;
  font-size: 0.9rem;
}
#video .video-section .testimonial-text {
  color: var(--lightColor);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.5rem;
}
@media only screen and (min-width: 769px) {
  #video .video-section .testimonial-text {
    max-width: 400px;
  }
}
#video .testimonial-videos {
  padding: 3rem 0 1rem 0;
}
#video .testimonial-videos .owl-item {
  padding-bottom: 2rem;
}
#video .testimonial-videos .testimonial {
  position: relative;
  height: 300px;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}
#video .testimonial-videos .testimonial__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.1rem;
}
#video .testimonial-videos .testimonial__video__wrapper {
  overflow: hidden;
  height: 300px;
  width: 350px;
  position: relative;
}
#video .testimonial-videos .testimonial__video {
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 0.1rem;
  display: none;
}
#video .testimonial-videos .testimonial__title {
  position: absolute;
  left: 50%;
  top: calc(100% - 20px);
  transform: translateX(-50%);
  max-width: 95%;
  background-color: var(--lightColor);
  color: var(--buttonHoverColor);
  width: 300px;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  font-weight: 800;
  font-size: 1.2rem;
}
#video .testimonial-videos .testimonial__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  height: 80px;
  width: 80px;
  display: grid;
  place-items: center;
  background-color: var(--secondaryColor);
  border-radius: 50%;
  transition: 0.3s transform ease-in-out;
  opacity: 0;
}
@media (pointer: coarse) {
  #video .testimonial-videos .testimonial__button {
    opacity: 1;
  }
}
#video .testimonial-videos .testimonial__button svg {
  transform: translateX(5px);
}
#video .testimonial-videos .testimonial__button:hover {
  background-color: var(--buttonHoverColor);
  transform: translate(-50%, -50%) scale(1.2);
}
#video .testimonial-videos .testimonial:hover .testimonial__button {
  opacity: 1;
}
#video .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.3rem;
}
#video .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--lightColor);
}
#video .owl-dots .owl-dot.active {
  background-color: var(--secondaryColor);
}

.footer {
  background-color: var(--primaryColor);
}
.footer .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .logo-container .main-logo {
  width: 130px;
}
.footer ul {
  padding: 0;
}
.footer ul li {
  list-style: none;
  margin-bottom: 0.3rem;
}
.footer ul li a {
  color: var(--lightColor);
  text-decoration: none;
  padding: 0.4rem 1rem;
  transition: 0.2s color ease-in-out;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .footer ul li a {
    justify-content: center;
    align-items: center;
  }
}
.footer ul li a svg {
  fill: var(--lightColor);
  width: 20px;
}
@media only screen and (min-width: 769px) {
  .footer ul li a svg {
    transform: translateY(3px);
  }
}
.footer ul li a:hover {
  color: var(--secondaryColor);
}
.footer ul li a:hover svg {
  fill: var(--secondaryColor);
}
.footer .social-networks {
  display: flex;
  gap: 0.8rem;
  margin-left: 2rem;
}
.footer .social-networks a svg {
  fill: var(--lightColor);
  transition: 0.2s fill ease-in-out;
}
.footer .social-networks a:hover svg {
  fill: var(--secondaryColor);
}
.footer .title-section {
  color: var(--secondaryColor);
  font-weight: 800;
  padding: 0 1rem;
  margin-bottom: 1.8rem;
}
.footer .title-section.newsletter {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .footer .title-section.newsletter {
    margin-bottom: 0;
  }
}
.footer .input-group {
  position: relative;
}
.footer .input-group .newsletter-input {
  background-color: white;
  border-radius: 2rem;
  border: none;
  padding: 0.5rem 6.7rem 0.5rem 1rem;
  width: 100%;
  outline: none;
}
.footer .input-group .newsletter-input:focus {
  box-shadow: 0 0 7px -1px var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.footer .input-group button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 2px solid var(--lightColor);
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.318);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.btn {
  font-weight: bold;
}

.btn-custom {
  background-color: var(--secondaryColor);
  border: 1px solid var(--lightColor);
  color: var(--lightColor);
  border-radius: 2rem;
}
.btn-custom:hover {
  color: var(--lightColor);
  background-color: var(--buttonHoverColor);
}

.btn-outline-custom {
  background-color: transparent;
  border: 1px solid var(--secondaryColor);
  color: var(--secondaryColor);
  border-radius: 2rem;
}

.btn-outline-custom:hover {
  background-color: var(--secondaryColor);
  border: 1px solid var(--lightColor);
  color: var(--lightColor);
  border-radius: 2rem;
}

.header-section {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .header-section {
    text-align: center;
  }
}
.header-section .title {
  font-size: 1.3rem;
  margin: 0;
  position: relative;
  display: inline;
}
.header-section .title::after {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondaryColor);
}
.header-section .subtitle {
  font-family: var(--secondaryFont);
  font-size: 1.4rem;
  position: relative;
}
.header-section .subtitle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: var(--secondaryColor);
}
@media only screen and (max-width: 768px) {
  .header-section .subtitle::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=index.css.map */
