@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600&display=swap");

:root {

  --body-font: 'Exo', sans-serif;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: hsl(219, 100%, 71%);
  color: var(--text-color);
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--titulos);
  font-weight: var(--font-semi-bold);
  color: purple;
}

p,
a {
  font-family: var(--parrafos);
  text-decoration: none;
}

.foto .img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

nav {
  background: transparent;
  box-shadow: var(--light-shadow);
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.nav-toggle {
  font-size: 25px;
  margin-right: 15px;
  color: rgb(255, 255, 255);
  background: hsl(219, 100%, 71%);
  border-color: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.nav-toggle:hover {
  color: gold;
  transform: rotate(90deg);
}


.links a {
  margin-top: 20px;
  color: purple;
  font-size: 21px;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  display: block;
  transition: var(--transition);
}

.links a:hover {
  background: purple;
  color: gold;
  font-size: 26px;
  border-radius: 10px;
}

.social-icons {
  display: none;
  font-size: 18px;
}

/* By default hide the links */
.links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

/* Toggle class */
.show-links {
  height: 260px;
  text-align: center;
}

@media screen and (min-width: 725px) {
  .nav-center {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .nav-header {
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .links {
    height: auto;
    display: flex;
  }

  .links a {
    padding: 0;
    margin: 15px 5px;
  }

  .links a:hover {
    padding: 0;
    background: transparent;
  }

  .social-icons {
    display: flex;
  }

  .social-icons a {
    margin: 0 0.5rem;
    color: purple;
    transition: var(--transition);
  }

  .social-icons a:hover {
    color: gold;
    font-size: 18px;
  }
}

.texto-encabezado {
  position: absolute;
  z-index: 2;
  width: 100%;
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.texto-encabezado h2 {
  color: purple;
  text-align: center;
  font-size: 36px;
}

@media(min-width: 475px) {
  .texto-encabezado h2 {
    font-size: 38px;
  }
}

@media(min-width: 620px) {
  .texto-encabezado h2 {
    font-size: 46px;
  }
}

.texto-encabezado-2 {
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.texto-encabezado-2 h3 {
  color: rgb(20, 20, 215);
  text-align: center;
  font-size: 20px;
  margin-top: 230px;
}

@media(min-width: 475px) {
  .texto-encabezado-2 h3 {
    font-size: 24px;
  }
}

@media(min-width: 580px) {
  .texto-encabezado-2 h3 {
    font-size: 27px;
    margin-top: 240px;
  }
}

.contenido-header .dibujo1{
  display: flex;
  justify-content: right;
  margin-right: 15px;
}
@media(min-width: 620px) {
  .contenido-header .dibujo1 {
    margin-right: 20px;
  }
}
@media(min-width: 900px) {
  .contenido-header .dibujo1 {
    margin-right: 30px;
  }
}
@media(min-width: 1120px) {
  .contenido-header .dibujo1 {
    margin-right: 40px;
  }
}
@media(min-width: 1200px) {
  .contenido-header .dibujo1 {
    margin-right: 50px;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: -1px;
}

.banner .clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner .clouds img {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  height: 450px;
  -webkit-animation: animate calc(4s * var(--i)) linear infinite;
  animation: animate calc(7s * var(--i)) linear infinite;
}

@-webkit-keyframes animate {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes animate {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.down-cloud {
  margin-top: 0px;
}

.down-cloud .home-img-1 img {
  width: 100%;
  height: 180px;
}

@media screen and (min-width: 450px) {
  .down-cloud .home-img-1 img {
    height: 210px;
  }
}

@media screen and (min-width: 560px) {
  .down-cloud .home-img-1 img {
    height: 250px;
  }
}

@media screen and (min-width: 670px) {
  .down-cloud .home-img-1 img {
    height: 300px;
  }
}

@media screen and (min-width: 780px) {
  .down-cloud .home-img-1 img {
    height: 360px;
  }
}

@media screen and (min-width: 920px) {
  .down-cloud .home-img-1 img {
    height: 420px;
  }
}

@media screen and (min-width: 1080px) {
  .down-cloud .home-img-1 img {
    height: 520px;
  }
}

.banner .dibujo2 img  {
  margin-top: 250px;
  width: 100%;
  height: 200px;
}

.background__1 {
  background-image: url(assets/pics/nurse3.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50rem;
  opacity: 0.8;
}

.background__1--text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35rem;
}

.background__1 h1 {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  background-color: rgb(29, 26, 26);
  color: gainsboro;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.5rem inset purple;
  outline-offset: 0.6rem;
  text-transform: uppercase;
}

.Full-Stack {

  background-color: gainsboro;
  opacity: 0.7;
  padding: 2.5rem;
}

.Full-Stack--header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1rem;
}
.Full-Stack--header h2 {
  color: rgb(29, 26, 26);
}

.Full-Stack--text {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: justify;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  word-spacing: 2.8px;
  line-height: 1.5;
}
.Full-Stack--text p {
  text-align: justify;
}

.background__2 {
  background-image: url(assets/pics/salud1.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  opacity: 0.8;
}

.Aws {
  background-color: black;
  color: white;
  border: 2px black solid;
  opacity: 0.8;
  padding: 2.5rem;

}

.Aws--header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1rem;
}

.Aws--text {
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: justify;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  word-spacing: 2.8px;
  line-height: 1.5;
}

.background__2--image {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#img-clarusway {
  width: 600px;
  height: auto;
  opacity: 0.3px;
}

.background__3 {
  background-image: url(assets/pics/moni.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.background__3 h1 {
  display: inline-block;
  width: 32rem;
  height: 3.5rem;
  padding: 0px;
  background-color: #111010;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.4rem inset purple;
  outline-offset: 0.4rem;

}

.background__3--image {
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background__3 h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;

}


.Data {

  background-color: white;
  opacity: 0.7;
  padding: 2.5rem;
}

.Data--header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1rem;
}

.Data--text {
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.5rem;
  text-align: center;
  font-size: 0.8rem;

}

.background__4 {
  background-image: url(assets/pics/EducadoraMontessori.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.background__4 h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32rem;
  height: 3.5rem;
  padding: 0px;
  background-color: #111010;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  vertical-align: middle;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.4rem inset purple;
  outline-offset: 0.4rem;

}

.background__4--image {
  height: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Why {
  background-color: black;
  color: white;
  padding: 2.5rem;
  opacity: 0.8;
}

.Why--header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1rem;
}

.Why--text {
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

.background__5 {
  background-image: url(assets/pics/ucigeneral.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.background__5 h1 {
  display: inline-block;
  width: 28rem;
  height: 3.5rem;
  padding: 0px;
  background-color: #141414;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.4rem inset purple;
  outline-offset: 0.4rem;
}

.background__5--image {
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background__5 h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: uppercase;
}

.background__6 {
  background-image: url(assets/pics/Servicios2.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50rem;
  opacity: 0.8;
}

.background__6--text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35rem;

}


.background__6 h1 {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  /* height:4.5rem; */
  background-color: rgb(29, 26, 26);
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.5rem inset purple;
  outline-offset: 0.6rem;
  text-transform: uppercase;
  /* margin-top: 16px; */

}

.background__7 {
  background-image: url(assets/pics/Pirámide.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50rem;
  opacity: 0.8;


}

.background__7--text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35rem;

}


.background__7 h1 {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  /* height:4.5rem; */
  background-color: rgb(29, 26, 26);
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.5rem inset purple;
  outline-offset: 0.6rem;
  text-transform: uppercase;
  /* margin-top: 16px; */

}

.background__8 {
  background-image: url(assets/pics/cartoon.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50rem;
  opacity: 0.8;

}

.background__8 h1 {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  background-color: rgb(29, 26, 26);
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.5rem inset purple;
  outline-offset: 0.6rem;
  text-transform: uppercase;
}

.background__9 {
  background-image: url(assets/pics/moni.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50rem;
  opacity: 0.8;
}

.background__9--text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35rem;
}


.background__9 h1 {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  background-color: rgb(29, 26, 26);
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 7px;
  border-radius: 13px 0px 13px 0px;
  outline: 0.5rem inset purple;
  outline-offset: 0.6rem;
  text-transform: uppercase;
}

@media (max-width: 2560px) {

  .Full-Stack--header,
  .Full-Stack--text,
  .Aws--header,
  .Aws--text,
  .Data--header,
  .Data--text,
  .Why--header,
  .Why--text {
    font-size: 0.9rem;
    padding: 0.5rem;
    line-height: 1rem;
    outline-width: 0.2rem;
    outline-offset: 0.15rem;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;

  }

  .background__1 h1 {
    max-width: 20rem;
    font-size: 1.9rem;
    letter-spacing: 0.2rem;


  }

  .background__2 h1,
  .background__3 h1,
  .background__4 h1,
  .background__5 h1,
  .background__6 h1,
  .background__7 h1,
  .background__8 h1,
  .background__9 h1,
  .background__10 h1 {
    max-width: 20rem;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    width: 20rem;
    height: 3.2rem;
    padding: 1rem;
  }
}

.contactomensaje {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

textarea {
  height: 150px;
}

input[type='submit'] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

input[type='submit']:hover {
  background-color: #0056b3;
}


.monicaemail {
  background-image: url(assets/pics/AndramunioOriginal.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 30rem;
  opacity: 0.8;
  text-align: center;
}

.copiaremail {
  background-color: transparent;
  backdrop-filter: blur(25px);
  margin: 50px auto;
  margin-top: 50px;
  border-radius: 20px;
  padding: 10px 20px;
  border: 2px;
  width: 280px;
  height: 300px;
  box-shadow: 10px 10px 20px black;
  transition: all 400ms ease-out;
  align-items: center;
}

@media screen and (min-width: 420px) {
  .copiaremail {
    width: 340px;
  }
}

@media screen and (min-width: 520px) {
  .copiaremail {
    width: 400px;
  }
}

@media screen and (min-width: 650px) {
  .copiaremail {
    width: 500px;
  }
}

@media screen and (min-width: 800px) {
  .copiaremail {
    width: 600px;
  }
}

@media screen and (min-width: 1100px) {
  .copiaremail {
    width: 800px;
  }
}

.copiaremail:hover {
  border: 3px;
  box-shadow: 0px 35px 40px black;
  transform: translateY(-7%);
}

.step {
  text-align: center;
  align-items: center;
  margin-top: 40px;
}

.step h1 {
  font-size: 23px;
  color: gainsboro;
  margin: 15px 5px;
}

@media(min-width: 600px) {
  .step h1 {
    font-size: 27px;
  }
}

@media(min-width: 800px) {
  .step h1 {
    font-size: 30px;
  }
}

@media(min-width: 999px) {
  .step h1 {
    font-size: 34px;
  }
}

.step h2 {
  font-size: 21px;
  margin: 15px 5px;
  color: gold;
}

@media(min-width: 600px) {
  .step h2 {
    font-size: 26px;
  }
}

@media(min-width: 800px) {
  .step h2 {
    font-size: 35px;
  }
}

@media(min-width: 999px) {
  .step h2 {
    font-size: 40px;
  }
}

@media(min-width: 1100px) {
  .step h2 {
    font-size: 50px;
  }
}

.step h3 {
  color: blue;
  font-size: 22px;
  margin: 30px 5px;
  cursor: pointer;
}

.step h3:hover {
  color: gold;
}

@media(min-width: 600px) {
  .step h3 {
    font-size: 25px;
  }
}

@media(min-width: 800px) {
  .step h3 {
    font-size: 28px;
  }
}

@media(min-width: 999px) {
  .step h3 {
    font-size: 33px;
  }
}

@media(min-width: 1100px) {
  .step h3 {
    font-size: 37px;
  }
}

.step p {
  font-size: 14px;
  color: blue;
  margin-bottom: 15px;
  text-decoration: none;
}

.step p:hover {
  color: gold;
}

@media(min-width: 600px) {
  .step p {
    font-size: 18px;
  }
}

@media(min-width: 800px) {
  .step p {
    font-size: 21px;
  }
}

@media(min-width: 999px) {
  .step p {
    font-size: 25px;
  }
}

@media(min-width: 1100px) {
  .step p {
    font-size: 29px;
  }
}


.copyfield {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

#link {
  align-items: center;
  width: 75%;
  height: 50px;
  padding: 4px 4px;
  border: 2px solid blue;
  background-color: #fff;
  font-size: 17px;
  overflow-x: scroll;
  margin-right: 3px;
}

#link::-webkit-scrollbar {
  height: 8px;
  border-radius: 2px;
}

#copy-btn {
  width: 25%;
  height: 55px;
  cursor: pointer;
  padding: 5px 2px;
  border: 2px solid blue;
  align-items: center;
  background-color: var(--gold);
}

#copy-btn:hover {
  background-color: var(--scarlet);
  height: 60px;
}

#copy-btn p {
  color: blue;
  font-size: 18px;
  margin-top: 5px;
}

#copy-btn p:hover {
  font-size: 20px;
  margin-top: 6px;
}


@media(min-width: 700px) {
  iframe {
    width: 400px;
  }
}


.footer {
  background-color: hsl(219, 100%, 71%);
  padding: 20px 0;
  align-items: center;
  text-align: center;
}

.footer h2 {
  font-size: 46px;
  color: gainsboro;
}

.footer h3 {
  font-size: 21px;
}

.footer h4 {
  font-size: 18px;
  color: rgb(29, 26, 26);
}

.footer .thissite {
  margin-top: 10px;
}

.footer .thissite a:hover {
  color: gold;
  font-size: 26px;
}

.footer .thissite p {
  margin-top: 10px;
  font-size: 20px;
  color: gainsboro;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li a {
  text-decoration: none;
  color: purple;
  font-size: 23px;
}

.footer .developer {
  margin-top: 20px;
}

.footer .developer h3 {
  margin-top: 5px;
  font-size: 21px;
  color: purple;
}

.footer .developer h3:hover {
  color: gold;
  font-size: 25px;
}

.footer .developer p {
  margin-bottom: 10px;
  font-size: 16px;
  color: gainsboro;
}

.footer .logoenlacesredes {
  margin-top: 20px;
  display: inline-block;
}

.footer .logoenlacesredes li {
  display: inline-block;
  margin-bottom: 10px;
}

.footer .logoenlacesredes .redes li a {
  font-size: 50px;
}

.footer .logoenlacesredes .redes li a:hover {
  font-size: 60px;
}


::-webkit-scrollbar {
  width: 10px;
  background-color: purple;
}

::-webkit-scrollbar-thumb {
  background-color: gainsboro;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: gold;
}