@charset "UTF-8";
@font-face {
  font-family: "NotoSansMain";
  src: url("..../Fonts/Noto_Sans/NotoSans-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "NotoSansMain";
  src: url("../Fonts/Noto_Sans/NotoSans-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "MontserratSecondary";
  src: url("../Fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "OpenSansSecondary2";
  src: url("../Fonts/Open_Sans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 900;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Heredar fuentes en los formularios */
input,
button,
textarea,
select {
  font: inherit;
}

/* Evitar que imágenes y videos sobrepasen su contenedor */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Quitar decoración de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* Listas sin viñetas ni padding extra */
ul,
ol {
  list-style: none;
}

/* Eliminar bordes en elementos con foco */
button,
input,
textarea,
select {
  border: none;
  outline: auto;
}

fieldset {
  border: none;
}

/* Asegurar un fondo consistente */
body {
  min-height: 100vh;
  font-family: "NotoSansMain", "MontserratSecondary", "OpenSansSecondary2", "Sans Serif Collection";
  line-height: 1.5;
  background-color: #ffffff;
  color: #000;
  font-size: 14px;
}

/* Hacer que los botones sean clickeables y accesibles */
button {
  cursor: pointer;
  background: transparent;
}

/* Hacer que los encabezados sean más consistentes */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
}

.containerIndexTop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em 0em;
  min-height: 140px;
  gap: 2em;
}
.containerIndexTop__imgMobileCIDE {
  max-width: 17vw;
}
@media screen and (min-width: 560px) {
  .containerIndexTop__imgMobileCIDE {
    max-width: 13vw;
  }
}
@media screen and (min-width: 768px) {
  .containerIndexTop__imgMobileCIDE {
    max-width: 38vw;
  }
}
@media screen and (min-width: 1200px) {
  .containerIndexTop__imgMobileCIDE {
    max-width: 26vw;
  }
}
.containerIndexTop__imgMobileOPA {
  max-width: 38vw;
}
@media screen and (min-width: 560px) {
  .containerIndexTop__imgMobileOPA {
    max-width: 28vw;
  }
}
@media screen and (min-width: 1200px) {
  .containerIndexTop__imgMobileOPA {
    max-width: 21vw;
  }
}

.veticalLine {
  border: 2px solid rgb(15, 61, 102);
  height: 90px;
}

.optionsContainer {
  padding-top: 2em;
  width: 100%;
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 940px) {
  .optionsContainer {
    padding-top: 3em;
  }
}
@media screen and (min-width: 1502px) {
  .optionsContainer {
    height: calc(100vh - 157px);
    padding-top: 3em;
  }
}
.optionsContainer__txtAdmisiones {
  background-color: rgb(15, 61, 102);
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.optionsContainer__txtAdmisiones--txt {
  color: #ffffff;
  font-size: 1.7em;
  font-weight: 800;
}
@media screen and (min-width: 1200px) {
  .optionsContainer__txtAdmisiones--txt {
    font-size: 2.1em;
  }
}
.optionsContainer__options {
  background-color: #41738c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
  height: 100vh;
  padding: 0 1em;
}
.optionsContainer__options--title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.4em;
}
@media screen and (min-width: 768px) {
  .optionsContainer__options--title {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 1400px) {
  .optionsContainer__options--title {
    font-size: 2.1em;
  }
}
.optionsContainer__options--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.2em;
  margin: 0 auto;
  padding: 0.9em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #ffffff;
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: #ffffff;
  background-color: transparent;
  text-align: center;
  outline: none;
}
.optionsContainer__options--btn:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .optionsContainer__options--btn {
    width: 60%;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .optionsContainer__options--btn {
    width: 35%;
    font-size: 1.5em;
  }
}
.optionsContainer__options--btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.optionsContainer__options--btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #638ea7;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.optionsContainer__options--btn:hover {
  color: #ffffff;
  border: 1px solid #638ea7;
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.optionsContainer__options--btn:hover:before {
  top: -35%;
  background-color: #638ea7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.optionsContainer__options--btn:hover:after {
  top: -45%;
  background-color: #638ea7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.optionsContainer__bottomStrap {
  background-color: rgb(15, 61, 102);
  width: 100%;
  height: 60px;
}

.navLogoCIDE {
  min-height: 170px;
  display: flex;
  align-items: center;
  padding: 2em 0;
  justify-content: space-between;
  gap: 1em;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 999;
}
.navLogoCIDE__txtAdmisiones {
  color: #59859b;
  position: absolute;
  font-weight: 700;
  top: calc(43% - 8px);
  left: 2%;
  font-size: 0.8em;
  display: none;
}
@media screen and (min-width: 640px) {
  .navLogoCIDE__txtAdmisiones {
    font-size: 1em;
    display: block;
  }
}
@media screen and (min-width: 940px) {
  .navLogoCIDE__txtAdmisiones {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .navLogoCIDE__txtAdmisiones {
    font-size: 1.6em;
  }
}
.navLogoCIDE__lineLeft {
  width: 38%;
  height: 8px;
  background-color: rgb(15, 61, 102);
  position: absolute;
  top: 55%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .navLogoCIDE__lineLeft {
    width: 42%;
  }
}
@media screen and (min-width: 1200px) {
  .navLogoCIDE__lineLeft {
    width: 45%;
  }
}
.navLogoCIDE__logoCIDE {
  max-width: 17vw;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .navLogoCIDE__logoCIDE {
    max-width: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .navLogoCIDE__logoCIDE {
    max-width: 9vw;
  }
}
@media screen and (min-width: 1100px) {
  .navLogoCIDE__logoCIDE {
    max-width: 8vw;
  }
}
@media screen and (min-width: 1400px) {
  .navLogoCIDE__logoCIDE {
    max-width: 6vw;
  }
}
.navLogoCIDE__txtPrograma {
  color: #59859b;
  position: absolute;
  font-weight: 700;
  top: 28%;
  right: 2%;
  font-size: 0.8em;
}
@media screen and (min-width: 640px) {
  .navLogoCIDE__txtPrograma {
    font-size: 1em;
  }
}
@media screen and (min-width: 940px) {
  .navLogoCIDE__txtPrograma {
    font-size: 1.3em;
    top: 24%;
  }
}
@media screen and (min-width: 1200px) {
  .navLogoCIDE__txtPrograma {
    font-size: 1.6em;
  }
}
.navLogoCIDE__lineRight {
  width: 38%;
  height: 8px;
  background-color: rgb(15, 61, 102);
  position: absolute;
  top: 40%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .navLogoCIDE__lineRight {
    width: 42%;
  }
}
@media screen and (min-width: 1200px) {
  .navLogoCIDE__lineRight {
    width: 45%;
  }
}
.navLogoCIDE__txtInfo {
  color: rgb(15, 61, 102);
  position: absolute;
  font-weight: 700;
  top: 49%;
  right: 2%;
  font-size: 0.8em;
  display: none;
}
@media screen and (min-width: 640px) {
  .navLogoCIDE__txtInfo {
    font-size: 1.1em;
    display: block;
  }
}
@media screen and (min-width: 940px) {
  .navLogoCIDE__txtInfo {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 1200px) {
  .navLogoCIDE__txtInfo {
    font-size: 1.7em;
  }
}

.programaContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .programaContainer {
    padding-top: 2em;
  }
}
@media screen and (min-width: 1100px) {
  .programaContainer {
    padding-top: 2.5em;
  }
}
@media screen and (min-width: 1133px) {
  .programaContainer {
    padding-top: 2.5em;
  }
}
@media screen and (min-width: 1400px) {
  .programaContainer {
    padding-top: 3em;
  }
}
.programaContainer__title {
  font-size: 2em;
  text-align: center;
  color: rgb(15, 61, 102);
}
@media screen and (min-width: 768px) {
  .programaContainer__title {
    font-size: 2.5em;
  }
}
@media screen and (min-width: 999px) {
  .programaContainer__title {
    font-size: 3em;
  }
}
.programaContainer__paragraph {
  color: #59859b;
  font-weight: 600;
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .programaContainer__paragraph {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 999px) {
  .programaContainer__paragraph {
    font-size: 2em;
  }
}
.programaContainer__bottomStrap {
  background-color: #41738c;
  width: 100%;
  height: 40px;
}
@media screen and (min-width: 940px) {
  .programaContainer__bottomStrap {
    height: 55px;
  }
}

.heightBottomStrap {
  height: calc(100vh - 171px);
}
@media screen and (min-width: 1120px) {
  .heightBottomStrap {
    height: calc(100vh - 170px);
  }
}

.listOfPhD {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  padding: 4em 1.2em;
}
.listOfPhD__btnSelect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5em;
  margin: 0 auto;
  padding: 1.5em 0em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 0);
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: rgb(15, 61, 102);
  background-color: #c6d5dc;
  text-align: center;
  outline: none;
}
.listOfPhD__btnSelect:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .listOfPhD__btnSelect {
    width: 60%;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .listOfPhD__btnSelect {
    width: 45%;
    font-size: 1.4em;
  }
}
.listOfPhD__btnSelect:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.listOfPhD__btnSelect:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: rgb(15, 61, 102);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.listOfPhD__btnSelect:hover {
  color: #ffffff;
  border: 1px solid rgb(15, 61, 102);
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.listOfPhD__btnSelect:hover:before {
  top: -35%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.listOfPhD__btnSelect:hover:after {
  top: -45%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.programDescr {
  width: 100%;
  height: auto;
  padding: 1.5em 1.5em 3em;
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
}
@media screen and (min-width: 840px) {
  .programDescr {
    padding: 2em 4em 3em;
  }
}
@media screen and (min-width: 1100px) {
  .programDescr {
    padding: 3em 8em 3em;
  }
}
@media screen and (min-width: 1400px) {
  .programDescr {
    padding: 3em 12em 3em;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1800px) {
  .programDescr {
    padding: 3em 16em 3em;
  }
}
.programDescr--list {
  list-style: disc;
  margin: 1em 1.2em;
  padding: 0 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .programDescr--list {
    padding: 0em 5em;
  }
}
.programDescr--txtBlue {
  font-weight: 700;
  color: #41738c;
}
.programDescr__btnAceptar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.5em;
  margin: 0 auto;
  padding: 0.9em 0em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 0);
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  color: rgb(15, 61, 102);
  background-color: #c6d5dc;
  text-align: center;
  outline: none;
}
.programDescr__btnAceptar:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .programDescr__btnAceptar {
    width: 60%;
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1200px) {
  .programDescr__btnAceptar {
    width: 35%;
    font-size: 1.3em;
  }
}
.programDescr__btnAceptar:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.programDescr__btnAceptar:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: rgb(15, 61, 102);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.programDescr__btnAceptar:hover {
  color: #ffffff;
  border: 1px solid rgb(15, 61, 102);
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.programDescr__btnAceptar:hover:before {
  top: -35%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.programDescr__btnAceptar:hover:after {
  top: -45%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.infoContainer {
  width: 100%;
  padding: 2em 0em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3em;
}
@media screen and (min-width: 940px) {
  .infoContainer {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2.2em;
    gap: 1.2em;
  }
}
.infoContainer__contLogo {
  margin: 0 auto;
}
.infoContainer__contLogo--img {
  width: 25vh;
}
@media screen and (min-width: 940px) {
  .infoContainer__contLogo {
    margin: 0;
  }
}
.infoContainer--verticalLine {
  border: 2px solid rgb(15, 61, 102);
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 940px) {
  .infoContainer--verticalLine {
    width: 1px;
    height: 190px;
    gap: 0;
    margin: 0;
  }
}
.infoContainer__rightCont {
  padding: 1.1em;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.8em;
}
.infoContainer__scheduleTxt {
  font-weight: 600;
}
.infoContainer__infoExtra {
  display: flex;
  align-items: center;
  gap: 0.9em;
}
.infoContainer__infoExtra:hover {
  color: rgb(15, 61, 102);
  font-weight: 600;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}
.infoContainer__avisoPrivacidad {
  text-align: center;
  font-weight: 600;
}
.infoContainer__avisoPrivacidad > a {
  color: rgb(15, 61, 102);
}
.infoContainer__avisoPrivacidad > a:hover {
  text-decoration-line: underline;
  text-underline-offset: 7px;
}

.txtStrong {
  font-weight: 700;
}

label {
  font-weight: 700;
}

.instructionInput {
  font-weight: 400;
  font-size: 0.78em;
  color: rgb(129, 129, 129);
  text-align: justify;
}
@media screen and (min-width: 1100px) {
  .instructionInput {
    font-size: 0.95em;
  }
}

.three-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media screen and (min-width: 920px) {
  .three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: end;
    column-gap: 1.8em;
    row-gap: 1.6em;
  }
}

.four-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media screen and (min-width: 920px) {
  .four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    column-gap: 1.8em;
    row-gap: 4em;
  }
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media (min-width: 540px) and (max-width: 919px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 920px) and (max-width: 1300px) {
  .two-columns--special {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 920px) {
  .two-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    column-gap: 1.8em;
    row-gap: 4em;
  }
}
.two-columns--complete {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 3.3em;
  margin-top: 1.3em;
  column-gap: 1.8em;
  row-gap: 2.5em;
}
@media screen and (min-width: 920px) {
  .two-columns--complete {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.8em;
    margin-bottom: 3.3em;
    margin-top: 1.3em;
  }
}

.marginBT {
  margin: 4em 0em;
}

.txtHipervinculo {
  color: rgb(15, 61, 102);
  font-weight: 700;
}
.txtHipervinculo:hover {
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

.msgError {
  position: relative;
}
.msgError--errorConfirm {
  display: none;
  background-color: #dc3545;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0.5em 1em;
  border-radius: 4px;
  position: absolute;
  bottom: 110%;
  right: 0;
  z-index: 10;
  width: 200px;
  max-width: 250px;
  box-shadow: 8px 5px 11px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
}
.msgError--errorConfirm--arrow {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #dc3545;
}
@media screen and (max-width: 470px) {
  .msgError--errorConfirm {
    bottom: 210%;
  }
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #3a5867;
  color: #ffffff;
  text-align: center;
  padding: 8px 12px;
  border-radius: 4px;
  position: absolute;
  bottom: 110%;
  left: 0;
  z-index: 10;
  width: max-content;
  max-width: 250px;
  box-shadow: 8px 5px 11px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
}

.tooltip-arrow {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3a5867;
}

.formContainer__inpText__group:hover .tooltip,
.formContainer__inpText__group:focus-within .tooltip {
  visibility: visible;
  opacity: 1;
}

fieldset {
  border: 2px solid rgb(15, 61, 102);
  padding: 1em 1.5em;
  border-radius: 0.5em;
  margin-bottom: 2em;
}

legend {
  background-color: rgb(15, 61, 102);
  padding: 0.5em 0.8em;
  border-radius: 0.35em;
  font-weight: 700;
  color: #ffffff;
}

.radio-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2em;
}
@media screen and (min-width: 1200px) {
  .radio-buttons-container {
    flex-direction: row;
  }
}
.radio-buttons-container__button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.radio-buttons-container__button--input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-buttons-container__button--label {
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
@media screen and (min-width: 940px) {
  .radio-buttons-container__button--label {
    font-size: 16px;
  }
}
.radio-buttons-container__button--custom {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #555;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.containerNacionalidad {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.radio-buttons-container__button--input:checked + .radio-buttons-container__button--label .radio-buttons-container__button--custom {
  transform: translateY(-50%) scale(0.9);
  border: 5px solid #638ea7;
  color: #638ea7;
}

messageErro .radio-buttons-container__button--input:checked + .radio-buttons-container__button--label {
  color: #638ea7;
}

.radio-buttons-container__button--label:hover .radio-buttons-container__button--custom {
  transform: translateY(-50%) scale(1.2);
  border-color: #638ea7;
  box-shadow: 0 0 10px rgba(76, 139, 245, 0.5019607843);
}

.txtDescriptionForm {
  font-weight: 700;
  color: rgb(8, 98, 113);
  text-align: justify;
}

.otherHidden {
  display: none !important;
}

.visible-block {
  display: flex !important;
}

.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.text-danger {
  color: #dc3545;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  padding: 0.15em 0.5em;
  border-radius: 0.4em;
}

.btnDownloadPDF {
  padding: 0.4em 1.1em;
  border: 0;
  border-radius: 0.1875em;
  background-color: #7066e0;
  box-shadow: none;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.redAsterik {
  color: #dc3545;
  font-weight: 700;
}

.descriptionForm {
  text-align: justify;
  padding: 2rem 0.8rem;
}

.ocultoForzadoEspecial {
  display: none !important;
}

.width100 {
  width: 100%;
}

.formContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 2em 0.8em;
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  .formContainer {
    padding: 2em 3.5em;
  }
}
@media screen and (min-width: 1100px) {
  .formContainer {
    padding: 2em 7.5em;
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1500px) {
  .formContainer {
    padding: 2em 15.5em;
  }
}
@media screen and (min-width: 1800px) {
  .formContainer {
    padding: 2em 19em;
  }
}
.formContainer__contTxt {
  padding: 2em 0em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7em;
}
@media screen and (min-width: 1100px) {
  .formContainer__contTxt {
    padding: 3em 0em;
  }
}
.formContainer__contTxt--title {
  font-size: 1.5em;
  color: #41738c;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .formContainer__contTxt--title {
    font-size: 1.9em;
  }
}
@media screen and (min-width: 1300px) {
  .formContainer__contTxt--title {
    font-size: 2.3em;
  }
}
.formContainer__contTxt--subtitle {
  font-size: 1.2rem;
  margin: 12px 0;
}
@media screen and (max-width: 800px) {
  .formContainer__contTxt--subtitle {
    font-size: 0.95rem;
  }
}
.formContainer__contTxt--description {
  font-size: 1rem;
  font-weight: 600;
  text-align: justify;
}
.formContainer__contTxt--txt2 {
  font-weight: 700;
  font-size: 1em;
}
.formContainer__contTxt--txtObligatorio {
  color: rgb(15, 61, 102);
  font-weight: 700;
  font-size: 0.9em;
}
@media screen and (min-width: 940px) {
  .formContainer__contTxt--txtObligatorio {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1300px) {
  .formContainer__contTxt--txtObligatorio {
    font-size: 1.3em;
  }
}
.formContainer__inpSelect {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
  /* centra horizontal y vertical */
  /* vertical */
}
.formContainer__inpText__group {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4em;
  width: 100%;
  position: relative;
}
.formContainer__inpText__group--input {
  border: 1px solid #41738c;
  padding: 0.5em 1em;
  outline: none;
  border-radius: 0.6em;
  background-color: #ffffff;
}
.formContainer__inpText__group--input:hover {
  border: 2px solid rgb(15, 61, 102);
  box-shadow: 4px 7px 9px rgba(207, 205, 205, 0.425);
}
.formContainer__inpText__group--input:focus {
  border: 2px solid rgb(15, 61, 102);
  box-shadow: 4px 7px 9px rgba(207, 205, 205, 0.425);
}
.formContainer__inpText__group--select {
  border: 1px solid #41738c;
  padding: 0.5em 1em;
  outline: none;
  border-radius: 0.6em;
  width: 100%;
  background-color: #ffffff;
}
.formContainer__inpText__group--select:focus {
  outline: 2px solid rgb(15, 61, 102);
}
.formContainer__inpText__group--textTarea {
  border: 1px solid #41738c;
  padding: 0.5em 1em;
  outline: none;
  border-radius: 0.6em;
  resize: none;
}
.formContainer__inpText__group--textTarea:focus {
  outline: 2px solid rgb(15, 61, 102);
}
.formContainer--btnNext1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
  margin: 0 auto;
  padding: 1.2em 0em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 0);
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: rgb(15, 61, 102);
  background-color: #c6d5dc;
  text-align: center;
  outline: none;
}
.formContainer--btnNext1:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .formContainer--btnNext1 {
    width: 60%;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .formContainer--btnNext1 {
    width: 35%;
    font-size: 1.4em;
  }
}
.formContainer--btnNext1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext1:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: rgb(15, 61, 102);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext1:hover {
  color: #ffffff;
  border: 1px solid rgb(15, 61, 102);
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.formContainer--btnNext1:hover:before {
  top: -35%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.formContainer--btnNext1:hover:after {
  top: -45%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.formContainer--btnNext2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
  margin: 5em auto 0em;
  padding: 1.2em 0em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 0);
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: rgb(15, 61, 102);
  background-color: #c6d5dc;
  text-align: center;
  outline: none;
}
.formContainer--btnNext2:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .formContainer--btnNext2 {
    width: 60%;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .formContainer--btnNext2 {
    width: 35%;
    font-size: 1.4em;
  }
}
.formContainer--btnNext2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: rgb(15, 61, 102);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext2:hover {
  color: #ffffff;
  border: 1px solid rgb(15, 61, 102);
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.formContainer--btnNext2:hover:before {
  top: -35%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.formContainer--btnNext2:hover:after {
  top: -45%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.formContainer--btnNext3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
  margin: 5em auto 0em;
  padding: 1.2em 0em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 0);
  transition: all 0.2s ease-in;
  z-index: 1;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: rgb(15, 61, 102);
  background-color: #c6d5dc;
  text-align: center;
  outline: none;
}
.formContainer--btnNext3:focus {
  border: 4px solid rgb(15, 61, 102);
  outline-offset: 103px;
  box-shadow: 9px 16px 12px #ccc;
}
@media screen and (min-width: 768px) {
  .formContainer--btnNext3 {
    width: 60%;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .formContainer--btnNext3 {
    width: 35%;
    font-size: 1.4em;
  }
}
.formContainer--btnNext3:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext3:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: rgb(15, 61, 102);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.formContainer--btnNext3:hover {
  color: #ffffff;
  border: 1px solid rgb(15, 61, 102);
  box-shadow: 5px 7px 12px rgba(63, 63, 63, 0.5647058824);
}
.formContainer--btnNext3:hover:before {
  top: -35%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.formContainer--btnNext3:hover:after {
  top: -45%;
  background-color: rgb(15, 61, 102);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.containerButtons {
  background-color: #59859b;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3.5em;
  border-radius: 0 2em 2em 0;
}
@media screen and (min-width: 920px) {
  .containerButtons {
    bottom: 10px;
  }
}
.containerButtons > a:nth-child(1) {
  width: 35px;
}
.containerButtons > a:nth-child(2) {
  width: 50px;
}

.field-validation-error {
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.9em;
  font-weight: 700;
  background: #dc3545;
  text-align: center;
  padding: 0.15em 0.5em;
  border-radius: 0.4em;
}

.containerUpload {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contInputFile {
  box-shadow: 3px 7px 11px rgba(0, 0, 0, 0.168627451);
  padding: 0.23rem;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  border-radius: 0.7rem;
}
@media screen and (min-width: 1200px) {
  .contInputFile {
    margin-top: 0px;
    padding: 1rem;
  }
}
.contInputFile--titleDocument {
  font-weight: 600;
  color: rgb(29, 46, 56);
  margin-top: 15px;
}
.contInputFile__labelImg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70px;
  height: 70px;
  background-color: rgb(29, 46, 56);
  border-radius: 50%;
  padding: 5px;
  padding: 12px;
  cursor: pointer;
  margin: 0 auto;
}
.contInputFile__labelImg--iconFile {
  width: 85px;
  height: 85px;
  color: white;
}
.contInputFile__txtNameFile {
  color: rgb(29, 46, 56);
  font-weight: 700;
  font-size: 0.85em;
}

.inputDocument {
  outline: none;
  display: flex;
  flex-wrap: wrap;
}

.contMainUpload {
  margin-bottom: 2rem;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contMainUpload {
    margin-bottom: 3.5rem;
  }
}

.contListFiles {
  width: 100%;
}
@media screen and (min-width: 740px) {
  .contListFiles {
    padding: 1rem;
  }
}
.contListFiles__listFiles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contListFiles__listFiles > li {
  display: grid;
  grid-template-columns: 320px 40px;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .contListFiles__listFiles > li {
    grid-template-columns: minmax(100px, 400px) 150px 80px;
  }
}
.contListFiles__listFiles__nameFile {
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 500px;
}
@media screen and (max-width: 899px) {
  .contListFiles__listFiles__nameFile {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 320px;
  }
}
.contListFiles__listFiles__sizeFile {
  display: none;
}
@media screen and (min-width: 900px) {
  .contListFiles__listFiles__sizeFile {
    display: block;
  }
}
.contListFiles__listFiles__removeFile {
  outline: none;
}

.contConfirmacion {
  text-align: center;
  margin: 3.6rem 0;
}

.containerErrores {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("https://www.cide.edu/wp-content/uploads/2024/03/EXPLANADA.jpg") no-repeat center center/cover;
}
.containerErrores::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.containerErrores__content {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .containerErrores__content {
    padding: 1rem 1.5rem;
  }
}
.containerErrores__content--typeError {
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .containerErrores__content--typeError {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .containerErrores__content--typeError {
    font-size: 1.4rem;
  }
}
.containerErrores__content--descriptionError {
  font-size: 1.2rem;
  margin: 12px 0;
}
@media screen and (max-width: 900px) {
  .containerErrores__content--descriptionError {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .containerErrores__content--descriptionError {
    font-size: 0.85rem;
  }
}
.containerErrores__btnHome {
  color: #ffffff;
  z-index: 99;
  font-size: 1.2rem;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.containerErrores__btnHome:hover {
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .containerErrores__btnHome {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .containerErrores__btnHome {
    font-size: 0.85rem;
  }
}
.containerErrores__btnHome--iconReturn {
  width: 25px;
  height: 25px;
}

.iconNotFound {
  width: 170px;
  height: 170px;
  margin: 0 auto;
}

.codeError {
  font-size: 4.7rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.txtContainer {
  width: 85%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 940px) {
  .txtContainer {
    width: 90%;
  }
}
.txtContainer__txtInline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1210px) {
  .txtContainer__txtInline {
    flex-direction: column;
  }
}
.txtContainer__txtInline--title {
  text-align: start;
}

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