:root {
  --nav-link-color: rgba(233, 242, 251, 1);
  --nav-link-hover-color: rgb(190, 217, 243);
  --title-span-color: rgb(24, 78, 129);
  --hero-background: rgb(255, 255, 255);
  --hero-background-gradient: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(17, 57, 96, 1) 100%);

  --font-small: 0.5em;
  --font-medium: 1em;
  --font-medium-large: 1.25em;
  --font-large: 1.5rem;
  --font-x-large: 2rem;
  --font-2x-large: 3rem;
  --font-3x-large: 3.5rem;
  --font-4x-large: 4rem;
  --font-5x-large: 4.5rem;
  --font-6x-large: 5rem;
  --font-7x-large: 5.5rem;

  -text-color: rgba(7, 26, 44, 1);

  --transition-slow: 0.6s;
  --transition-medium: 0.4s;
  --transition-fast: 0.2s;
  --transition-fastest: 0.1s;
}


/*Large Desktop*/
/*General CSS*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

* {
  margin: 0px;
  padding: 0;
}

h2,
h3 {
  color: var(--title-span-color);
  font-weight: bold;
}

h2,
h3,
p {
  font-family: "Quicksand", sans-serif;
}

.container {
  width: 60%;
  margin: 0px auto;
}


/*Navigation*/

.navigation {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0px;
  height: 45px;
}

.nav-container {
  margin: 0px auto;
  width: 70%;
  height: 100%;
  display: flex;
}

.nav-container .links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  font-family: "Courier New", monospace;
}

.nav-container .logo {
  display: flex;
  width: auto;
  align-items: center;
  min-width: 50%;
  width: auto;
  font-family: 'Boris';
  }

  @font-face {
  font-family: 'Boris';
  src: url('fuentes/BorisBlack.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  }

a {
  text-decoration: none;
}

.idiomas {
  display: flex;
  width: 100%;
  height: 16px;
  align-items: center;
  justify-content: flex-end;
  font-family: "Courier New", monospace;
  word-spacing: 25px;
}

a {
  text-decoration: none;
}

.bulto {
  display: flex;
  width: 16%;
  height: 16px;
  align-items: center;
  justify-content: flex-end;

}


      /* LOGOTIPO */
  img{ width:70px; height:70px; float:left; position:relative; top: 12px; right: 6px; z-index: 1; }


}

.nav-container .logo a {
  font-size: var(--font-large);
  color: #fff;
}

.nav-container .logo span {
  font-family: "Courier New", monospace;
  color: var(--nav-link-hover-color);
}

.nav-container .links a,
.nav-container .logo a {
  text-decoration: none;
  color: var(--nav-link-color);
  transition: var(--transition-fast);
}

.nav-container .links a {
  font-size: var(--font-medium);
}


.nav-container .links a:hover,
.nav-container .logo a:hover {
  color: var(--nav-link-hover-color);
}

.nav-container .links a:after,
.nav-container .logo a:after {
  display: block;
  content: "";
  border-bottom: 1px solid var(--nav-link-hover-color);
  transform: scaleX(0);
  transition: transform var(--transition-fastest) ease-in-out;
  transform-origin: 100% 50%;
}

.nav-container .logo a:hover:after,
.nav-container .links a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

.mobile-button {
  display: none;
}

.mobile-logo {
  display: flex !important;
}

.mobile-logo .logo {
  width: auto;
}

.mobile-links {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: var(--transition-fast);
  padding-top: 20px;
}

.mobile-links a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--nav-link-color);
  display: block;
  transition: 0.3s;
}

.mobile-links a:hover {
  color: #f1f1f1;
}

.mobile-links .closebtn {
  font-size: var(--font-x-large);
  margin-right: 25px;
}


/*Hero*/

.hero {
  /* display: flex; */
  min-height: 300px;
  height: 800px;
  background-image: url("./imagenes/haupt1.png");
  /*background-image: url("./imagenes/haupt1.png");*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: inset 0px 0px 300px 0px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0px 0px 3000px 2000px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 0px 300px 2000px rgba(255, 255, 255, 0.8);
}

.hero .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.hero .text .pre-title {
  font-size: var(--font-x-large);
}
.hero .text .title {
  font-size: var(--font-7x-large);
  font-family: 'Boris';
  color: var(--title-span-color);
}
.hero .text .title span {
  color: var(--title-span-color);
  border-bottom: 5px solid var(--title-span-color);
}
.hero .text .post-title {
  font-size: xx-large;
}


/*About*/

.about {
  min-height: 400px;
  height: 100%;
  display: flex;
  gap: 30px;
  padding: 50px 50px;
}

.about-us {
  min-height: 300px;
  padding: 50px;
}

.about .text-one {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 400px;
  width: 50%;
}

.about .text-one h2 {
  font-size: var(--font-3x-large);
  width: max-content;
}

.about .text-one p {
  font-size: var(--font-medium-large);
}

.about .text-one a {
  width: max-content;
}


/*Numbers*/

.numbers {
  padding-top: 0px;
  padding-bottom: 30px;
}

.numbers .container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0px;
}

.numbers .container .text {
  text-align: center;
  color: var(--nav-link-color);
  font-size: var(--font-large);
}

.numbers h2 {
  font-size: var(--font-2x-large);
  color: var(--nav-link-color);
}

.numbers .container .text .number {
  font-size: var(--font-2x-large);
}


#cajita {
  position:flex;
  display:block;
}

#flip1, #flip2, #flip3, #flip4  {
  height:20px;
  overflow:hidden;
}

#flip1 > div > div {
  display:inline-block;
}

#flip2 > div > div {
  display:inline-block;
}

#flip3 > div > div {
  display:inline-block;
}

#flip4 > div > div {
  display:inline-block;
}

#flip1 div:first-child {
  animation: showa 16s linear infinite;
}

#flip2 div:first-child {
  animation: showb 29s linear infinite;
}

#flip3 div:first-child {
  animation: showc 16s linear infinite;
}

#flip4 div:first-child {
  animation: showd 9s linear infinite;
}

@keyframes showa {
  from {margin-top:-380px;}
  to {margin-top:0px;}
}

@keyframes showb {
  from {margin-top:-860px;}
  to {margin-top:0px;}
}

@keyframes showc {
  from {margin-top:-450px;}
  to {margin-top:0px;}
}

@keyframes showd {
  from {margin-top:-280px;}
  to {margin-top:0px;}
}




/*
@keyframes show3 {
  0% {margin-top:-280px;}
  12.5% {margin-top:-245px;}
  25% {margin-top:-210px;}
  37.5% {margin-top:-175px;}
  50% {margin-top:-140px;}
  62.5% {margin-top:-105px;}
  75% {margin-top:-70px;}
  87.5% {margin-top:-35px;}
  100% {margin-top:0px;}
}
*/


/*Services*/
.services {
  padding-top: 50px;
  padding-bottom: 50px;
}

.services.container,
.careers.container {
  width: 80%;
}

.services h2,
.careers h2 {
  font-size: var(--font-3x-large);
}

.services .cards,
.careers .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.services .cards .card {
  max-height: 300px;
  height: 250px;
  overflow: auto;
  width: 30%;
  text-align: center;
}

.services .cards .card h3,
.careers .cards .card h3 {
  color: var(--title-span-color);
  font-size: var(--font-medium-large);
}

.services .cards .card .card-text p,
.careers .cards .card .card-text p {
  font-size: var(--font-medium-large);
}

.services .cards .card .card-text p span {
  color: var(--title-span-color);
}


/*Careers*/
/*
.careers {
  padding-top: 50px;
  padding-bottom: 50px;
}

.careers .cards .card {
  width: 30%;
  text-align: center;
}

.careers .cards .card header h3 {
  color: #fff;
}

.careers .cards .card footer {
  width: 100%;
}

.careers .cards .card .content {
  height: 400px;
  overflow: auto;
}

.careers .cards .card .card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
*/


/*Contact*/

.contact {
  min-height: 400px;
  display: flex;
  justify-content: space-evenly;
  padding: 60px;
}

.contact .form .container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.contact span {
  color: var(-text-color);
  transition: var(---transition-fast);
}

.contact span:hover {
  font-weight: bolder;
}

.contact .form .container form {
  width: 100%;
}

.contact .short-contact {
  display: flex;
  flex-direction: column;
  align-items: left;
  min-height: 400px;
  width: 36%;
}

.contact h2 {
  font-size: var(--font-3x-large);
  width: 90%;
}

/*
.contact .form input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.contact .form input[type="submit"] {
  background-color: #04aa6d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact .form input[type="submit"]:hover {
  background-color: #45a049;
}
*/

/* COMPARTIR */



.REDES {
	 width: 100%;
	 height: 200px;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    /*background-color: #ffffff;*/
  }


 .compartir {
    margin-top: 3%;
    /*width: 600px;*/
    /*border-radius: 40px;*/
  }
  
  .compartir span {
    width: 200px;
    line-height: 60px;
    display: inline-block;
    font-weight: 700;
    text-transform: lowercase;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }
  .compartir nav {
    font-size: 0;
  }
  .compartir a {
    line-height: 60px;
    width: 60px;
    text-align: center;
    display: inline-block;
    background-image: linear-gradient(180deg, #184e81, #003360);
    color: #ffffff;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    margin: 0px -5px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .compartir a:nth-child(1) {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    margin-left: 0;
  }
  .compartir a:nth-child(1):hover {
    background-color: #0077B5;
  }
  .compartir a:nth-child(2):hover {
    background-color: #126567;
  }
  .compartir a:nth-child(3):hover {
    background-color: #0077FF;
  }
  
    .compartir a:nth-child(4):hover {
    background-color: #1877F2;
  }
  
    .compartir a:nth-child(5):hover {
    background-color: #0088cc;
  }
  
  
  .compartir a:nth-child(6) {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-right: 0;
  }
  .compartir a:nth-child(6):hover {
    background-color: #25d366;
  }
  .compartir:hover span, .compartir.hover span {
    opacity: 0;
  }
  .compartir:hover a {
    margin: 0 10px;
    color: #413838;
    font-size: 28px;
    border-radius: 50%;
    background: #ffffff15; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);; 
    -webkit-backdrop-filter: blur(2px);; 

  }
  .compartir:hover a:hover {
    color: #fff;
  }
/* ********************* */



/*FOOTER*/

#footer p span {
  color: var(--nav-link-hover-color);
}




/*Utilities*/

.show-medium {
  display: none;
}

@media screen and (max-width: 1200px) {
  .services.container,
  .careers.container {
    width: 100%;
  }
  .services .cards .card {
    height: 200px;
  }
  .services .cards .card .card-text p,
  .careers .cards .card .card-text p {
    font-size: var(--font-medium);
  }
  .contact.container {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .nav-container {
    width: 80%;
  }

  .container {
    width: 80%;
  }
  .nav-container .links {
    display: none;
  }

  .mobile-button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-button span {
    font-size: var(--font-x-large);
    color: var(--nav-link-hover-color);
  }

  .mobile-logo {
    display: flex;
  }
  .mobile-links-active {
    width: 40%;
  }

  .hero .text .pre-title {
    font-size: var(--font-x-large);
  }
  .hero .text .title {
    font-size: var(--font-2x-large);
  }
  .hero .text .post-title {
    font-size: x-large;
  }

  .about .text-one {
    width: 70%;
  }

  .about .text-one h2,
  .contact h2 {
    font-size: var(--font-2x-large);
  }

  .about .text-one p {
    font-size: var(--font-medium);
  }

  .about .text-two ul {
    font-size: var(--font-medium);
  }

  .services .cards .card,
  .careers .cards .card {
    width: 45%;
  }

  .services .cards .card .card-text p {
    font-size: var(--font-medium);
  }

  .careers .cards .card {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .mobile-links-active {
    width: 70%;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about .text-one {
    min-height: 0;
  }

  .about .text-one h2,
  .contact h2 {
    width: 100%;
  }

  .about .text-one a {
    margin: 0 auto;
  }

  .about .text-one {
    width: 100%;
  }
  .about .text-two {
    width: 100%;
  }

  .numbers .container {
    justify-content: center;
    flex-direction: column;
  }

  .show-medium {
    display: block;
  }

  .services .cards .card,
  .careers .cards .card {
    width: 100%;
  }

  .services .cards .card {
    height: auto;
  }

  .services .cards .card .card-text p {
    font-size: var(--font-medium);
  }

  .contact {
    flex-direction: column;
    justify-content: center;
  }

  .contact .short-contact {
    width: 100%;
    min-height: 0;
    justify-content: center;
  }

  .contact .short-contact h2 {
    width: fit-content;
  }

  .contact .container {
    width: 90%;
  }

  .contact .form .container form {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  html,
  body {
    overflow-x: none;
  }

  .nav-container {
    width: 90% !important;
  }

  .hero {
    height: 400px;
    width: 100%;
  }

  .hero .text .pre-title {
    font-size: var(--font-large);
  }
  .hero .text .title,
  .contact h2,
  .services h2,
  .careers h2 {
    font-size: var(--font-x-large);
  }
  .hero .text .post-title {
    font-size: large;
  }

  .mobile-links-active {
    width: 100%;
  }

  .services {
    padding: 0 !important;
  }

  .services.container,
  .about.container,
  .careers.container {
    width: 100%;
  }

  .contact {
    padding: 10px;
  }

  .contact p {
    font-size: var(--font-medium-large) !important;
  }

  .contact .container {
    width: 100%;
  }
}

