/*general*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0px;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto !important;
}

p {
  margin: 0;
}

input {
  outline: none;
}

textarea {
  resize: none;
}

@font-face {
  font-family: "M Impact";
  src: url("../font-text/Maximum-Impact.ttf");
}
@font-face {
  font-family: "M Regular";
  src: url("../font-text/Montserrat-Regular.ttf");
}
:root {
  --main-color-zero: #ececec;
  --main-color-one: #dcdcdc;
  --main-color-two: #011e66;
  --main-color-three: #078a9c;
  --main-color-four: #565656;
}

.bg-pc {
  display: block;
}

.bg-mb {
  display: none;
}

@media screen and (max-width: 700px) {
  .bg-pc {
    display: none;
  }

  .bg-mb {
    display: block;
  }
}
/* */
@media screen and (min-width: 1410px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1550px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 1800px) {
  html {
    font-size: 23px;
  }
}
/* */
@media screen and (max-width: 1250px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1150px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 1050px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 340px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 10px;
  }
}
.section-footer-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child-section-footer {
  max-width: 1950px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.box-ab-section-footer {
  position: absolute;
  width: 80%;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-ab-section-footer-1 {
  width: 27.5%;
}

.box-ab-section-footer-2 {
  width: 59.5%;
}

.title-footer {
  font-family: "M Impact";
  font-size: 1.31rem;
}

.box-info-footer {
  padding-left: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1.56rem;
}

.box-info-footer-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-info-footer-only p:nth-child(1) {
  font-size: 2.19rem;
  line-height: 2.19rem;
  margin-bottom: 0.94rem;
}

.box-info-footer-only p:nth-child(2) {
  font-size: 1.25rem;
  font-family: "M Impact";
}

@media screen and (max-width: 700px) {
  .box-ab-section-footer {
    width: 85%;
    justify-content: center;
  }

  .box-ab-section-footer-1 {
    display: none;
  }

  .box-ab-section-footer-2 {
    width: 100%;
  }

  .title-footer {
    font-size: 1.4rem;
  }

  .box-info-footer {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1.56rem;
  }

  .box-info-footer-only {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .box-info-footer-only p:nth-child(1) {
    font-size: 2.19rem;
    line-height: 2.19rem;
    margin-bottom: 0.94rem;
    margin-right: 0.8rem;
  }

  .box-info-footer-only p:nth-child(2) {
    font-size: 1.25rem;
  }
}
/* -------------------------------- 
Modules - reusable parts of our design
-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* -------------------------------- 
xnugget info 
-------------------------------- */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  bottom: 0;
  left: 0;
}

.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #5e6e8d;
  transition: all 0.2s;
}

.no-touch .cd-nugget-info a:hover {
  opacity: 0.8;
}

.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}

.cd-nugget-info span svg {
  display: block;
}

.cd-nugget-info .cd-nugget-info-arrow {
  fill: #5e6e8d;
}

/* -------------------------------- 
xpopup 
-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(11, 11, 11, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  z-index: 550 !important;
}

.cd-popup-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 600px;
  margin: 0;
  background: #078a9c;
  border-radius: 0.25em 0.25em 0.4em 0.4em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  transition-property: transform;
  transition-duration: 0.3s;
  padding: 25px;
}

.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}

.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}

.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}

.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: var(--main-color-one);
}

.cd-popup-container .cd-popup-close::before {
  transform: rotate(45deg);
  left: 8px;
}

.cd-popup-container .cd-popup-close::after {
  transform: rotate(-45deg);
  right: 8px;
}

.is-visible .cd-popup-container {
  transform: translateY(0);
}

.img-menu-p-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-menu-p-mobile img {
  width: 65%;
  margin: 5rem 0 4.5rem;
}

.items-m-p-m {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.items-m-p-m a {
  font-family: "M Impact";
  color: var(--main-color-one);
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
}

.btns-mobile {
  background-color: var(--main-color-three);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}

.btn-call,
.btn-cotizar {
  color: white;
  padding: 17px 0;
  font-size: 1.2rem;
  font-family: "M Regular";
}

.btn-call {
  text-decoration: none;
}

.line-btn-mobile {
  height: 30px;
  width: 2px;
  background-color: white;
}

.main-form-pop-up {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}

.main-form-pop-up-view {
  display: flex;
}

.child-form-pop-up {
  width: 100%;
  background-color: var(--main-color-white);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
}

.child-form-pop-up .title-form-banner-principal {
  color: var(--main-color);
}

.btn-close {
  position: absolute;
  right: -10px;
  top: -20px;
  color: var(--main-color-white);
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.btn-whatsapp-mobile {
  background-color: #25d366;
  position: fixed;
  top: 65%;
  right: 5px;
  width: 60px;
  height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 3rem;
  color: white;
  z-index: 90;
}

.btn-whatsapp-mobile i {
  line-height: 0;
}

.child-form-pop-up form input,
.child-form-pop-up form textarea {
  color: var(--main-dark);
}

@media screen and (max-width: 980px) {
  body {
    margin-bottom: 45px;
  }

  .btns-mobile,
.btn-whatsapp-mobile {
    display: flex;
  }
}
/*home*/
.section-banner-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child-section-banner {
  max-width: 1950px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.box1-ab-section-banner {
  position: absolute;
  top: 4%;
  width: 85%;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-logo-banner {
  width: 18%;
}

.box-menu-on-section-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-menu-on-section-banner a {
  color: white;
  font-family: "M Impact";
  font-size: 0.88rem;
}

.box-menu-on-section-banner a:hover {
  color: var(--main-color-one);
}

.box-menu-on-section-banner p {
  color: white;
  font-size: 1.13rem;
  margin: 0 2.19rem;
}

.box-wsp-banner {
  width: 16%;
}

.box2-ab-section-banner {
  position: absolute;
  bottom: 8.2%;
  width: 59%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.box-img-box2-ab-section-banner {
  width: 51%;
}

.box-letter-box2-ab-section-banner {
  width: 41.5%;
}

.title-main-section-banner {
  font-family: "M Impact";
  color: white;
  margin: 0;
  font-size: 3rem;
  line-height: 3.44rem;
  margin-top: 5.94rem;
}

.line-color-section-banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.63rem;
}

.line-color-section-banner p:nth-child(1) {
  width: 34.5%;
  height: 0.13rem;
  background-color: var(--main-color-three);
}

.line-color-section-banner p:nth-child(2) {
  width: 64%;
  height: 0.13rem;
  background-color: white;
}

.box-btn-contacto-section-banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.56rem;
}

.box-btn-contacto-section-banner a {
  background-color: var(--main-color-three);
  font-family: "M Impact";
  color: white;
  font-size: 1.06rem;
  padding: 0.56rem 0.81rem;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.box-btn-contacto-section-banner a:hover {
  background-color: var(--main-color-four);
}

/**/
.box3-ab-section-banner {
  position: absolute;
  width: 91%;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active-menu {
  color: var(--main-color-three) !important;
}

/**/
@media screen and (max-width: 700px) {
  .box1-ab-section-banner {
    position: absolute;
    top: 4%;
    width: 90%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .box-logo-banner {
    width: 55%;
  }

  .box-menu-on-section-banner {
    display: none;
  }

  .box-wsp-banner {
    display: none;
  }

  .icono-menu-on {
    color: white;
    font-size: 2.5rem;
    padding: 0.5rem;
  }

  .icono-menu-on:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .box2-ab-section-banner {
    position: absolute;
    bottom: 5%;
    width: 81%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .box-img-box2-ab-section-banner {
    width: 50%;
  }

  .box-letter-box2-ab-section-banner {
    width: 44%;
  }

  .title-main-section-banner {
    font-size: 1.9rem;
    line-height: 2.3rem;
    margin-top: 2rem;
  }

  .line-color-section-banner p:nth-child(1) {
    width: 33%;
    height: 0.25rem;
  }

  .line-color-section-banner p:nth-child(2) {
    width: 64%;
    height: 0.25rem;
  }

  .box-btn-contacto-section-banner {
    display: none;
  }
}
.section-cuadros-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-one);
}

.child-section-cuadros {
  max-width: 1450px;
  width: 75.5%;
  margin: -6.5rem 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0 0.25rem 0.94rem rgba(0, 0, 0, 0.4);
  z-index: 7;
}

.box-section-cuadros {
  width: 33.4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "M Impact";
  text-align: center;
  padding: 2.94rem 0;
}

.claro {
  background-color: var(--main-color-zero);
}

.oscuro {
  background-color: var(--main-color-three);
}

.item1-box-section-cuadros {
  width: 13%;
}

.item2-box-section-cuadros {
  color: var(--main-color-two);
  font-size: 2.06rem;
  line-height: 2.06rem;
  margin-top: 0.94rem;
  margin-bottom: 0.25rem;
}

.item3-box-section-cuadros {
  font-size: 1.44rem;
  line-height: 1.44rem;
}

.letter-gris {
  color: var(--main-color-four);
}

.letter-white {
  color: white;
}

@media screen and (max-width: 700px) {
  .child-section-cuadros {
    width: 85%;
    flex-wrap: wrap;
    margin: -2.6rem 0 3rem;
  }

  .box-section-cuadros {
    width: 100%;
    padding: 1.5rem 0;
  }

  .item1-box-section-cuadros {
    width: 18%;
  }

  .item2-box-section-cuadros {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-top: 0.94rem;
    margin-bottom: 0.25rem;
  }

  .item3-box-section-cuadros {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.section-nosotros-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-one);
}

.child-section-nosotros {
  max-width: 1450px;
  width: 75.5%;
  margin: 0.63rem 0 5rem;
}

.top-section-nosotros {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-video-section-nosotros {
  width: 54%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.color1-box-video-section-nosotros {
  width: 3%;
  height: 15.63rem;
  background-color: var(--main-color-three);
}

.box-video-section-nosotros-main {
  width: 94%;
}

/*video*/
.video-yt {
  width: 100%;
}

.youtube-player {
  width: 100%;
  height: 19.35rem;
  position: relative;
}

.youtube-player > div {
  width: 100%;
  height: 100%;
}

.youtube-player div img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 50px;
  cursor: pointer;
  margin-top: -30px;
  margin-left: -40px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/YouTube_full-color_icon_%282017%29.svg/1280px-YouTube_full-color_icon_%282017%29.svg.png") center/contain no-repeat;
}

/**/
.box-letter-section-nosotros {
  width: 43%;
}

.letter3-box1-section-sobre-los-cursos {
  font-family: "M Regular";
  color: var(--main-color-four);
  font-size: 0.88rem;
  line-height: 1.06rem;
  text-align: justify;
}

.box-line-color-s-nosotros {
  width: 76.8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
}

.box-line-color-s-nosotros p:nth-child(1) {
  width: 34.5%;
  height: 0.13rem;
  background-color: var(--main-color-three);
}

.box-line-color-s-nosotros p:nth-child(2) {
  width: 64%;
  height: 0.13rem;
  background-color: var(--main-color-two);
}

.bottom-section-nosotros {
  margin-top: 2.5rem;
}

.box-fechas-section-nosotros {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cambio-orientacion {
  align-items: flex-start;
}

.cambio-orientacion2 {
  padding: 0 0.94rem;
}

.sub-box-fechas-section-nosotros {
  width: 25%;
}

.time-sub-box-fechas-section-nosotros {
  color: var(--main-color-two);
  font-family: "M Impact";
  font-size: 1.31rem;
  text-align: center;
}

.letter-sub-box-fechas-section-nosotros {
  font-family: "M Impact";
  font-size: 0.88rem;
  text-align: center;
  color: var(--main-color-four);
}

.cambio-para-lt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.94rem 0;
}

.line-lt-section-nosotros {
  width: 46%;
  background-color: var(--main-color-four);
  height: 0.19rem;
}

.dot-lt-section-nosotros {
  width: 8%;
  background-color: var(--main-color-three);
  height: 1.25rem;
  border-radius: 50%;
}

@media screen and (max-width: 700px) {
  .child-section-nosotros {
    width: 85%;
    margin: 0.63rem 0 3rem;
  }

  .top-section-nosotros {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .box-video-section-nosotros {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .color1-box-video-section-nosotros {
    width: 4%;
    height: 13rem;
  }

  .box-video-section-nosotros-main {
    width: 92%;
  }

  /*video*/
  .youtube-player {
    width: 100%;
    height: 15rem;
    position: relative;
  }

  /**/
  .box-letter-section-nosotros {
    width: 100%;
    margin-bottom: 1.9rem;
  }

  .letter3-box1-section-sobre-los-cursos {
    font-size: 1.1rem;
    line-height: 1.35rem;
  }

  .box-line-color-s-nosotros {
    width: 100%;
    margin-bottom: 2.25rem;
  }

  .box-line-color-s-nosotros p:nth-child(1) {
    width: 34.5%;
    height: 0.25rem;
  }

  .box-line-color-s-nosotros p:nth-child(2) {
    width: 64%;
    height: 0.25rem;
  }

  .bottom-section-nosotros {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }

  .box-fechas-section-nosotros {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .width-1 {
    width: 20%;
    justify-content: space-around;
  }

  .width-2 {
    width: 10%;
    justify-content: space-around;
  }

  .width-3 {
    width: 62%;
  }

  .cambio-orientacion2 {
    padding: 0;
  }

  .sub-box-fechas-section-nosotros {
    width: 100%;
    margin: 0.8rem 0;
  }

  .time-sub-box-fechas-section-nosotros {
    font-size: 1.4rem;
  }

  .letter-sub-box-fechas-section-nosotros {
    font-size: 1rem;
    text-align: center;
  }

  .cambio-para-lt {
    margin: 0;
    justify-content: center;
  }

  .line-lt-section-nosotros {
    display: none;
  }

  .dot-lt-section-nosotros {
    width: 52%;
    height: 1.25rem;
    border-radius: 50%;
  }
}
.section-nuestros-diplomados-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-three);
}

.child-section-nuestros-diplomados {
  max-width: 1450px;
  width: 75.5%;
  margin: 4.38rem 0 -3.19rem;
}

.top-section-nuestros-diplomados {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.box1-top-section-nuestros-diplomados {
  width: 33%;
}

.white {
  color: white !important;
}

.white2 {
  background-color: white !important;
}

.box2-top-section-nuestros-diplomados {
  width: 59%;
}

.box2-top-section-nuestros-diplomados p {
  color: white;
  font-family: "M Regular";
  font-size: 0.88rem;
  line-height: 1.06rem;
  text-align: justify;
  margin-bottom: 2.19rem;
}

.bottom-section-nuestros-diplomados {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.box-img-bottom-section-nuestros-diplomados {
  width: 25%;
  box-shadow: 0 0.25rem 0.94rem rgba(0, 0, 0, 0.4);
}

.box-leer-mas-snd {
  background-color: var(--main-color-two);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.81rem 0.94rem;
  font-family: "M Impact";
}

.box-leer-mas-snd p {
  color: white;
  font-size: 0.94rem;
}

.box-leer-mas-snd a {
  color: white;
  font-size: 0.81rem;
  background-color: var(--main-color-three);
  padding: 0.25rem 0.63rem;
}

.box-leer-mas-snd a:hover {
  background-color: var(--main-color-four);
}

.box-t-bottom-section-nuestros-diplomados {
  border: 0.19rem solid var(--main-color-two);
  width: 13.4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--main-color-two);
  transition: all 0.3s ease;
}

.box-t-bottom-section-nuestros-diplomados:hover {
  background-color: rgba(1, 30, 102, 0.3);
}

.box-t-bottom-section-nuestros-diplomados p:nth-child(1) {
  font-size: 1.88rem;
  line-height: 1.88rem;
  margin-bottom: 0.31rem;
}

.box-t-bottom-section-nuestros-diplomados p:nth-child(2) {
  text-align: center;
  font-family: "M Impact";
  font-size: 1.88rem;
  line-height: 2.5rem;
}

@media screen and (max-width: 700px) {
  .child-section-nuestros-diplomados {
    width: 85%;
    margin: 3.3rem 0 3rem;
  }

  .top-section-nuestros-diplomados {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .box1-top-section-nuestros-diplomados {
    width: 100%;
  }

  .box2-top-section-nuestros-diplomados {
    width: 100%;
  }

  .box2-top-section-nuestros-diplomados p {
    font-size: 1.1rem;
    line-height: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .bottom-section-nuestros-diplomados {
    margin-top: 1.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .box-img-bottom-section-nuestros-diplomados {
    width: 48%;
    box-shadow: 0 0.25rem 0.94rem rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
  }

  .box-leer-mas-snd {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0.81rem 0.94rem;
  }

  .box-leer-mas-snd p {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
  }

  .box-leer-mas-snd a {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
  }

  .box-t-bottom-section-nuestros-diplomados {
    border: 0.2rem solid var(--main-color-two);
    width: 48%;
    margin-bottom: 1rem;
  }

  .box-t-bottom-section-nuestros-diplomados p:nth-child(1) {
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 0.7rem;
  }

  .box-t-bottom-section-nuestros-diplomados p:nth-child(2) {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}
.section-sobre-los-cursos-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-one);
}

.child-section-sobre-los-cursos {
  max-width: 1450px;
  width: 75.5%;
  margin: 7.19rem 0 4.69rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.box1-section-sobre-los-cursos {
  width: 33%;
}

.sub-title-box1-section-sobre-los-cursos {
  color: var(--main-color-four);
  font-family: "M Impact";
  font-size: 1.31rem;
  margin-bottom: 0.31rem;
}

.box-line-color-sslc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
}

.box-line-color-sslc p:nth-child(1) {
  width: 34.5%;
  height: 0.13rem;
  background-color: var(--main-color-three);
}

.box-line-color-sslc p:nth-child(2) {
  width: 64%;
  height: 0.13rem;
  background-color: var(--main-color-two);
}

.title-box1-section-sobre-los-cursos {
  color: var(--main-color-two);
  font-family: "M Impact";
  font-size: 2.13rem;
  line-height: 2.5rem;
  margin-bottom: 1.56rem;
}

.letter-box1-section-sobre-los-cursos {
  color: var(--main-color-two);
  font-family: "M Regular";
  font-size: 0.88rem;
  line-height: 1.06rem;
  text-align: justify;
}

.box2-section-sobre-los-cursos {
  width: 62.3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sub-box2-section-sobre-los-cursos {
  width: 23.5%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text1-box-color-sslc,
.text2-box-color-sslc {
  position: absolute;
  color: white;
  font-family: "M Impact";
}

.text1-box-color-sslc {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.69rem;
}

.text2-box-color-sslc {
  bottom: 4%;
  font-size: 1rem;
}

@media screen and (max-width: 700px) {
  .child-section-sobre-los-cursos {
    width: 85%;
    margin: 3.3rem 0 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .box1-section-sobre-los-cursos {
    width: 100%;
    margin-bottom: 2rem;
  }

  .sub-title-box1-section-sobre-los-cursos {
    font-size: 1.4rem;
    margin-bottom: 0.45rem;
  }

  .box-line-color-sslc {
    margin-bottom: 2.25rem;
  }

  .box-line-color-sslc p:nth-child(1) {
    width: 34.5%;
    height: 0.25rem;
  }

  .box-line-color-sslc p:nth-child(2) {
    width: 64%;
    height: 0.25rem;
  }

  .title-box1-section-sobre-los-cursos {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.56rem;
  }

  .letter-box1-section-sobre-los-cursos {
    font-size: 1.1rem;
    line-height: 1.35rem;
  }

  .box2-section-sobre-los-cursos {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .sub-box2-section-sobre-los-cursos {
    width: 48.5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.9rem;
  }

  .text1-box-color-sslc {
    font-size: 1.85rem;
    line-height: 1.69rem;
  }

  .text2-box-color-sslc {
    bottom: 2.5%;
    font-size: 1.25rem;
  }
}
/*diplomados*/
.section-aprende-diplomados-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/fondo/diplomados.jpg);
  background-position: bottom;
  background-size: cover;
}

.child-section-aprende-diplomados {
  max-width: 1450px;
  width: 75.5%;
  margin: 5rem 0 4.69rem;
}

.top-section-aprende-diplomados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.3rem;
}

.top-section-aprende-diplomados-1 {
  width: 42%;
}

.title-aprende-diplomados {
  font-family: "M Impact";
  font-size: 2.88rem;
  line-height: 3rem;
  color: var(--main-color-four);
  margin-bottom: 1.2rem;
}

.title-aprende-diplomados span {
  color: var(--main-color-two);
}

.line-color-aprende-diplomados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 6.25rem;
  margin-bottom: 2.25rem;
}

.line-color-aprende-diplomados p:nth-child(1) {
  width: 34.5%;
  height: 0.13rem;
  background-color: var(--main-color-three);
}

.line-color-aprende-diplomados p:nth-child(2) {
  width: 64%;
  height: 0.13rem;
  background-color: var(--main-color-two);
}

.top-section-aprende-diplomados-2 {
  width: 54%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-section-aprende-diplomados-2 p {
  width: 3%;
  height: 15.63rem;
  background-color: var(--main-color-two);
}

.top-section-aprende-diplomados-2 img {
  width: 94%;
}

.boxs-only-section-aprende-diplomados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.bottom-section-aprende-diplomados-1 {
  width: 31%;
}

.sub-bottom-section-aprende-diplomados-1 {
  background-color: var(--main-color-two);
  padding: 1.25rem 0;
  color: white;
  text-align: center;
  font-family: "M Impact";
  font-size: 1.5rem;
}

.bottom-section-aprende-diplomados-1 img {
  width: 100%;
}

.bottom-section-aprende-diplomados-2 {
  width: 69%;
  background-color: var(--main-color-three);
  padding: 1.56rem 1.88rem 1.13rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "M Impact";
  color: white;
}

.division1-info-sad-2 {
  width: 51%;
}

.box-title-temario-a-diplomados {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.94rem;
}

.box-title-temario-a-diplomados p:nth-child(1) {
  font-size: 1.25rem;
}

.box-title-temario-a-diplomados p:nth-child(2) {
  font-size: 1.38rem;
}

.title-temario-all {
  font-size: 0.94rem;
}

.sub-title-temario-all {
  font-size: 0.75rem;
  margin-bottom: 0.81rem;
}

.division2-info-sad-2 {
  width: 36%;
}

.box-fechas-s-aprende-diplomados {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.94rem 0;
}

.box-fechas-s-aprende-diplomados p:nth-child(1) {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  margin-left: 1.25rem;
}

.box-fechas-s-aprende-diplomados p:nth-child(2) {
  font-size: 1.38rem;
}

/**/
.color-line-page-diplomados {
  background-color: var(--main-color-three) !important;
}

.color-page-cursos {
  color: var(--main-color-three) !important;
}

/**/
@media screen and (max-width: 700px) {
  .child-section-aprende-diplomados {
    width: 85%;
    margin: 3.2rem 0 3rem;
  }

  .top-section-aprende-diplomados {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
  }

  .top-section-aprende-diplomados-1 {
    width: 100%;
    margin-bottom: 2rem;
    order: 1;
  }

  .title-aprende-diplomados {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1.2rem;
  }

  .line-color-aprende-diplomados {
    margin-right: 3.5rem;
    margin-bottom: 2.25rem;
  }

  .line-color-aprende-diplomados p:nth-child(1) {
    width: 34.5%;
    height: 0.25rem;
  }

  .line-color-aprende-diplomados p:nth-child(2) {
    width: 64%;
    height: 0.25rem;
  }

  .top-section-aprende-diplomados-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 2;
  }

  .top-section-aprende-diplomados-2 p {
    width: 4%;
    height: 12rem;
  }

  .top-section-aprende-diplomados-2 img {
    width: 92%;
  }

  .boxs-only-section-aprende-diplomados {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .bottom-section-aprende-diplomados-1 {
    width: 70%;
  }

  .sub-bottom-section-aprende-diplomados-1 {
    padding: 1.25rem 0;
    font-size: 1.5rem;
  }

  .bottom-section-aprende-diplomados-2 {
    width: 100%;
    padding: 1.45rem 1.6rem 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .division1-info-sad-2 {
    width: 100%;
  }

  .box-title-temario-a-diplomados {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.94rem;
  }

  .box-title-temario-a-diplomados p:nth-child(1) {
    font-size: 1.35rem;
  }

  .box-title-temario-a-diplomados p:nth-child(2) {
    font-size: 1.6rem;
  }

  .title-temario-all {
    font-size: 1.2rem;
  }

  .sub-title-temario-all {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .division2-info-sad-2 {
    width: 100%;
  }

  .box-fechas-s-aprende-diplomados {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0.4rem 0;
  }

  .box-fechas-s-aprende-diplomados p:nth-child(1) {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    margin-left: 0;
  }

  .box-fechas-s-aprende-diplomados p:nth-child(2) {
    font-size: 1.38rem;
  }
}
/*cursos*/
.section-all-cursos-main {
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.box-section-all-cursos {
  width: 30.5%;
  border: 0.19rem dashed var(--main-color-three);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.19rem 1.25rem;
  margin-bottom: 1.88rem;
  transition: all 0.3s ease;
}

.box-section-all-cursos:hover {
  border: 0.19rem solid var(--main-color-three);
  background-color: var(--main-color-zero);
}

.box-section-all-cursos img {
  width: 15%;
  margin-bottom: 0.31rem;
}

.box-section-all-cursos-1 {
  font-family: "M Impact";
  font-size: 1.19rem;
  color: var(--main-color-two);
  margin-bottom: 0.31rem;
}

.box-section-all-cursos-2 {
  font-family: "M Regular";
  font-size: 0.75rem;
  color: var(--main-color-four);
}

@media screen and (max-width: 700px) {
  .section-all-cursos-main {
    padding-top: 0;
  }

  .box-section-all-cursos {
    width: 100%;
    padding: 1.8rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .box-section-all-cursos img {
    width: 17%;
    margin-bottom: 0.7rem;
  }

  .box-section-all-cursos-1 {
    font-size: 1.5rem;
    margin-bottom: 0.31rem;
  }

  .box-section-all-cursos-2 {
    font-size: 1.1rem;
  }
}
/*contacto*/
.section-contacto-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-one);
}

.child-section-contacto {
  max-width: 1950px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-info-s-contacto {
  width: 47%;
  padding-left: 10rem;
}

.title-section-contacto {
  color: var(--main-color-four);
  font-family: "M Impact";
  font-size: 3.13rem;
}

.line-color-section-contacto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 9.38rem;
  margin-bottom: 1.5rem;
}

.line-color-section-contacto p:nth-child(1) {
  width: 34.5%;
  height: 0.13rem;
  background-color: var(--main-color-three);
}

.line-color-section-contacto p:nth-child(2) {
  width: 64%;
  height: 0.13rem;
  background-color: var(--main-color-two);
}

.letter-section-contacto {
  color: var(--main-color-four);
  font-family: "M Regular";
  font-size: 0.88rem;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.form-section-contacto {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.input-section-contacto-100,
.input-section-contacto-50 {
  border: 0.06rem solid var(--main-color-four);
  margin-bottom: 0.8rem;
  background-color: white;
  font-family: "M Regular";
  font-size: 1.06rem;
  padding: 0.5rem 0.94rem;
}

.input-section-contacto-100 {
  width: 100%;
}

.input-section-contacto-50 {
  width: 48.7%;
}

.box-btn-form-section-contacto {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.box-btn-form-section-contacto input {
  background-color: var(--main-color-two);
  color: white;
  border: 0;
  font-family: "M Impact";
  font-size: 1.13rem;
  padding: 0.44rem 1.56rem;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

.box-btn-form-section-contacto input:hover {
  background-color: var(--main-color-three);
}

.container-map-section-contacto {
  width: 45%;
}

/*mapa*/
.box-map,
.box-map iframe {
  height: 39rem;
  border: 0;
}

/**/
@media screen and (max-width: 700px) {
  .child-section-contacto {
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3.2rem;
  }

  .container-info-s-contacto {
    width: 100%;
    padding-left: 0;
    padding: 0 2.2rem;
  }

  .title-section-contacto {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .line-color-section-contacto {
    padding-right: 5rem;
    margin-bottom: 2rem;
  }

  .line-color-section-contacto p:nth-child(1) {
    width: 34.5%;
    height: 0.25rem;
  }

  .line-color-section-contacto p:nth-child(2) {
    width: 64%;
    height: 0.25rem;
  }

  .letter-section-contacto {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.5rem;
  }

  .input-section-contacto-100,
.input-section-contacto-50 {
    border: 0.06rem solid var(--main-color-four);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    padding: 0.9rem 1.2rem;
  }

  .input-section-contacto-50 {
    width: 100%;
  }

  .box-btn-form-section-contacto input {
    border: 0;
    font-size: 1.7rem;
    padding: 0.6rem 2.8rem;
  }

  .container-map-section-contacto {
    width: 100%;
    padding: 0 2.2rem;
    margin-top: 2.5rem;
  }

  /*mapa*/
  .box-map,
.box-map iframe {
    height: 40rem;
    border: 0;
  }

  /**/
}