:root {
  --primary-font: "Barlow", serif;
  --base-size-font: 16px;

  --primary-color: #6252d8;
  --secondary-color: #00f17a;
  --tertiary-color: #009db6;
  --quaternary-color: #00be9e;

  --transition: all 0.4s ease;
  --custom-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 7.16px 7.16px 11px -2px rgba(0, 0, 0, 0.27);

  --title: 2.8rem;
  --text-content-size: 1.1rem; /* Párrafos, textos de contenido */
}

body {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

h3,
h4,
h5,
h6 {
  font-weight: 800;
}
h1,
h2,
h3 {
  font-size: var(--title);
  font-weight: 700;
}
.txt-white {
  color: #fff;
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.5;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.d-flex {
  display: flex;
}
/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0 5rem;
	max-width: 1300px;
  }
}
@media screen and (min-width: 1280px) {
}

/* --- General --- */

.btn,
.btn::before,
.btn::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 200ms ease-out;
}
.btn {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  border-radius: 9999rem;
  position: relative;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  text-align: center;
}
.btn.-xl {
  font-size: 1.5rem;
}
.btn.-green {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}
.btn.-blue {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}
.btn.-gray {
  background: #009db6;
  color: #fff;
  border: 1px solid #009db6;
}
.btn::before {
  content: "";
  border-radius: inherit;
  z-index: -1;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}
.btn.-green::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.-blue::before {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn.-gray::before {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn:hover,
.btn:focus {
  box-shadow: none;
  transform: scale(1);
  color: var(--secondary-color);
}
.btn.-green:hover {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  background: var(--primary-color);
}
.btn.-blue:hover {
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
}
.btn.-gray:hover {
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
}
.btn:hover::before,
.btn:focus::before {
  transform: translateX(0);
}

main {
  position: relative;
  z-index: 9;
}
section {
  padding: 50px 0;
  overflow-x: clip;
}
.section-title {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  gap: 35px;
  margin-bottom: 40px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .section-title {
    padding: 0 8rem;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/
.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9990;
  transition: var(--transition);
  overflow-x: clip;
}
.header__inner {
  align-items: center;
  justify-content: center;
}
.img-logo {
  width: 238px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header {
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
}

.header-main {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  transition: var(--transition);
  padding-left: 0px;
}
.header-main .btn {
  font-weight: 400;
  padding: 10px 20px;
}
.header-main.activeFixed {
  position: fixed !important;
  height: 90px;
  transform: translateY(0);
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}
.redes-header {
  gap: 5px;
  align-items: center;
  margin-right: 20px;
}
.redes-header img {
  width: 31px;
  height: 31px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header-main {
    height: 100px;
  }
  .logo-pc {
    display: flex;
  }
  .logo-responsive {
    display: none;
  }
  .header-main.activeFixed {
    height: 70px;
    box-shadow: var(--box-shadow);
    background-color: var(--primary-color);
  }
}
@media screen and (min-width: 1280px) {
}

.header-main .header__inner {
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  display: block;
  height: 60px;
  transition: var(--transition);
}
.header-main.activeFixed .header__logo a {
  height: 55px;
}
.header__logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__toggle {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--secondary-color);
  padding: 10px;
  box-shadow: var(--box-shadow);
}
.header__toggle img {
  width: 100%;
}
.header__button {
  margin-left: 20px;
}
.header__menu {
  margin-right: 30px;
}
.item-header {
  display: none;
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  color: #fff;
  padding: 10px 14px;
  transition: var(--transition);
  position: relative;
}
.item-header .menu li.current-menu-item > a,
.item-header .menu li > a:hover {
  color: var(--secondary-color);
}
.item-header .menu li.current-menu-item::before,
.item-header .menu li:hover::before {
  content: "";
  width: 33px;
  height: 6px;
  background-image: url(../images/curve.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.item-header .menu li.current-menu-item {
  position: relative;
}
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  top: 22px;
  left: 15px;
  height: 21px;
  width: 22px;
  margin-bottom: 0;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .item-header {
    display: flex;
  }
  .header__logo a {
    height: 45px;
  }
}
@media screen and (min-width: 1280px) {
  .header__logo a {
    height: 83px;
  }
  .header__toggle {
    display: none;
  }
}

/**
*	LANDING PAGE
*	=======================================================================================================
**/

/** WELCOME	============== **/
#welcome {
  padding: 0;
  padding-top: 140px;
  background: url(../images/bg-iso-hero-1.svg), url(../images/bg-iso-hero-2.svg);
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: top -85px left -40px, top -85px right -40px;
  background-color: var(--primary-color);
  margin-bottom: 40px;
}
.welcome__inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.welcome__inner h1{
	color: #fff;
}
.tag {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.welcome__wrapper {
    flex-direction: column;
    padding-top: 60px;
    gap: 50px;
    width: 100%;
}
.welcome__content {
  width: 100%;
  color: #fff;
  padding: 0px 0 35px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btns-price {
  flex-direction: column;
  margin-top: 40px;
  align-items: center;
  gap: 20px;
}
.btns-price span {
  font-size: 0.9rem;
}
.welcome__video {
  width: 100%;
  position: relative;
  margin: 0;
}
.welcome-video__container {
  position: relative;
  background-color: #00f17a;
  border-radius: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.welcome-video__container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome__footer {
  background-color: var(--primary-color);
}
.welcome-footer__img {
  padding: 0 60px;
  height: 100px;
  align-items: center;
  justify-content: center;
}
.welcome-footer__img img {
  width: 290px;
}
@media screen and (min-width: 580px) {
  .btns-price {
    flex-direction: row;
  }
  .welcome-video__container {
    height: 367px;
  }
}
@media screen and (min-width: 980px) {
  #welcome {
    background-size: 272px;
    background-position: top -120px left, top -120px right;
  }
  .welcome__wrapper {
    flex-direction: row;
  }
  .welcome__inner {
    text-align: left;
  }
  .welcome__content {
        width: 40%;
        padding: 30px 20px 35px 60px;
        text-align: left;
        display: block;
    }
  .welcome-video__container {
    position: absolute;
  }
  .welcome__video {
    width: 55%;
    position: relative;
    margin: 0 60px 0 0;
  }
  .welcome__footer {
    background-color: #fff;
  }
  .welcome-footer__img {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

/** PRESENTACIÓN	============== **/
#presentation {
  padding-bottom: 0;
}
.section-title h2 {
  color: var(--primary-color);
}
.section-title p {
  color: var(--primary-color);
}
.presentation__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.presentation-grid__item {
    background-color: var(--primary-color);
    min-height: 330px;
    border-radius: 15px;
    margin: 60px 25px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.presentation-grid__item:nth-child(2) {
  background-color: var(--secondary-color);
}
.presentation__img {
    position: absolute;
    top: -60px;
    right: -25px;
    width: 100%;
    height: 220px;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}
.presentation__content {
    padding: 35px 25px;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    min-height: 175px;
    display: flex;
    align-items: center;
}
.presentation__content p:last-child{
	margin-bottom:0;
}
.presentation-grid__item:nth-child(2) .presentation__content {
  color: var(--primary-color);
}
.presentation-grid__item .number {
  width: 72px;
  height: 72px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  position: absolute;
  top: -36px;
  z-index: 2;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--primary-color);
}
.presentation-grid__item:nth-child(2) .number {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.pres__iso {
  width: 132px;
}
.pres-footer__content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.pres__metodos {
  width: 275px;
}
.presentation__footer {
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin: 40px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .presentation__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .presentation__footer {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/** INSTRUCTORES	============== **/
#instructor {
  padding-top: 0;
}
.instructor {
  background-image: url(../images/iso-logo.svg);
  background-repeat: no-repeat;
  background-position: left bottom -55px;
  background-size: 272px;
  background-color: var(--primary-color);
  margin-top: 80px;
  padding: 90px 0 0;
}
.instructor:nth-child(2) {
  background-image: url(../images/iso-revert.svg);
  background-position: right bottom -55px;
}
.instructor__cartel {
  display: none;
  width: 93px;
  position: relative;
}
.instructor__img,
.instructor__content {
  flex-grow: 1;
  position: relative;
}
.instructor__img {
  width: 100%;
  display: flex;
}
.instructor__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.instructor:nth-child(2) .instructor__cartel {
  transform: rotate(180deg);
}
.instructor__wrapper {
  flex-direction: column-reverse;
  min-height: 446px;
  align-items: stretch;
  color: #fff;
  gap: 20px;
}
.instructor:nth-child(2) .instructor__wrapper {
  flex-direction: column;
}
.instructor h3 {
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.instructor-carte__img {
  width: 93px;
  top: -73px;
  position: absolute;
}
.instructor:nth-child(2) .instructor-carte__img {
  top: 73px;
}

.instructor-img__photo {
  width: 362px;
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .instructor {
    padding: 0;
    margin-top: 105px;
  }
  .instructor__cartel {
    display: flex;
  }
  .instructor__wrapper {
    flex-direction: row;
  }
  .instructor__img {
    width: 40%;
  }
  .instructor__content {
    width: 60%;
    text-align: left;
  }
  .instructor:nth-child(1) .instructor__content {
    padding-right: 70px;
  }
  .instructor:nth-child(2) .instructor__content {
    padding-left: 70px;
  }
  .instructor:nth-child(2) .instructor__wrapper {
    flex-direction: row;
  }
  .instructor-img__photo {
    position: absolute;
  }
}
@media screen and (min-width: 1280px) {
}

/** FEATURES	============== **/
.features__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  position: relative;
}
.features-grid__item {
  padding: 35px;
  min-height: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  text-align: center;
}

.features-grid__item h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.features-grid__item:nth-child(2),
.features-grid__item:nth-child(5) {
  background-color: var(--primary-color);
}
.features-grid__item:nth-child(3),
.features-grid__item:nth-child(4) {
  background-color: #009db6;
}

.features-grid__item p:last-child {
  margin-bottom: 0;
}
.features__circle {
  position: relative;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  gap: 10px;
  padding: 20px 0;
  grid-column: 1;
  grid-row: 5;
}
.features__circle h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.features__circle h3 span {
  color: var(--secondary-color);
}
.features__iso {
  width: 70px;
}
.features__metodos {
  width: 203px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid__item:nth-child(2),
  .features-grid__item:nth-child(4) {
    padding-right: 140px;
  }
  .features-grid__item:nth-child(3),
  .features-grid__item:nth-child(5) {
    padding-left: 140px;
    text-align: right;
  }
  .features-grid__item {
        min-height: 260px;
        padding: 50px;
        text-align: left;
    }

  .features__circle {
    position: absolute;
    width: 373px;
    height: 373px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    border-radius: 200px;
    box-shadow: var(--box-shadow);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 10px;
    padding: 20px 55px;
    grid-column: 1;
    grid-row: 1;
    z-index: 9;
  }
}
@media screen and (min-width: 1280px) {
}

/** CTA	============== **/
#cta {
  padding: 50px 0 0;
}
.cta__wrapper {
  flex-direction: column;
}
.cta__content {
  padding: 40px 30px 95px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  color: var(--primary-color);
  width: 100%;
  background-image: url(../images/iso-logo.svg);
  background-repeat: no-repeat;
  background-position: right -20px bottom -45px;
  background-size: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta__content h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}
.cta__content p:last-child {
  margin-bottom: 0;
}
.cta__img {
  position: relative;
  width: 100%;
}
.cta__img img {
  position: relative;
  width: 100%;
  right: 0;
  transform: translate(0, -20%);
}

@media screen and (min-width: 580px) {
  #cta {
    padding: 120px 0;
  }
  .cta__wrapper {
    flex-direction: row;
  }
  .cta__content {
    width: 62%;
    padding: 50px 200px 50px 70px;
    background-size: 215px;
  }
  .cta__img {
    position: relative;
    width: 38%;
  }
  .cta__img img {
    position: absolute;
    width: 490px;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 980px) {
  .cta__img img {
    width: 680px;
  }
  .cta__content {
    width: 58%;
  }
  .cta__img {
    width: 43%;
  }
}
@media screen and (min-width: 1280px) {
}

/** READY	============== **/
.ready__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
h2.ready__title {
  font-size: 2.3rem;
  color: var(--primary-color);
}
.-square {
/*   flex-direction: column; */
  align-items: center;
  gap: 5px;
  font-weight: 400;
  border-radius: 12px;
}
.-square span {
  font-weight: 700;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .ready__wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  background-color: var(--primary-color);
  margin-bottom: 20px;
  padding: 40px 0;
}
.footer-main {
  background-color: transparent;
  padding-bottom: 0;
}
.footer-inner {
  background-color: var(--primary-color);
}
.footer__wrapper {
    flex-direction: column;
    height: auto;
    align-items: center;
    gap: 40px;
    padding: 15px 0px 0;
}

.footer__logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer__logo img {
  width: 350px;
}
.copyright {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-align: center;
}
.footer-main .copyright {
  color: var(--primary-color);
  justify-content: center;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.copyright span {
  display: none;
}
.footer__redes {
  width: 100%;
  gap: 5px;
  justify-content: center;
}
.footer__redes img {
  width: 31px;
  height: 31px;
}
.a84 img {
  width: 27px;
}
.a84 {
  font-weight: 700;
  gap: 3px;
  align-items: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  footer {
    padding: 0;
  }
  .footer__wrapper {
    flex-direction: row;
    height: 90px;
    padding: 0;
  }
	
  .footer-main .footer__wrapper {
    justify-content: space-between;
  }
  .footer__logo {
    width: 35%;
  }
  .copyright {
    width: 50%;
    flex-direction: row;
  }
  .copyright span {
    display: flex;
  }
  .footer__redes {
    width: 15%;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HOME
*	=======================================================================================================
**/
.main-section {
  background: url(../images/bg-iso-hero-2.svg);
  background-repeat: no-repeat;
  background-size: 272px;
  background-position: top -120px right;
  background-color: var(--primary-color);
  position: relative;
  padding-top: 115px;
}
.main-section::after {
  content: "";
  position: absolute;
  height: 110px;
  width: 100%;
  background-color: #fff;
  left: 0;
  bottom: 0;
}
.banner-intern__wrapper {
  width: 100%;
  height: 45px;
  background-color: #5149ba;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  border-radius: 25px;
  padding: 0 25px;
}
/** PRESENTACIÓN CURSO	============== **/
#presentation-course {
  padding-top: 40px;
}
.pres-course__wrapper {
  flex-direction: column;
  gap: 40px;
}
.pres-course__content {
  width: 100%;
  padding: 0px 0px 20px;
  color: #fff;
  flex-direction: column;
  position: relative;
}
.pres-course__bloque {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 30px 20px 20px;
  box-shadow: var(--box-shadow);
  gap: 35px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.destacado-tag {
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 3px 5px;
  color: var(--primary-color);
  height: fit-content;
  font-size: 1rem;
}
.online-tag {
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 15px;
  padding: 6px 15px;
  height: fit-content;
  font-size: 1rem;
}
.header-title-course {
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.pres-course__content h1 {
  margin-bottom: 30px;
  font-size: 3.5rem;
}
.pres-instructors {
  margin-top: 20px;
  gap: 50px;
  justify-content: center;
}
.pres-instructors__item {
  gap: 10px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.pres-instructors__item h3 {
  font-size: var(--text-content-size);
  color: var(--secondary-color);
}
.pres-instructors__item p {
  margin-bottom: 0;
}
.pres-instructors__img {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}
.pres-course__img {
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  z-index: 7;
}
.pres-course-bloque__item {
  color: var(--primary-color);
  gap: 10px;
  align-items: center;
}
.pres-course-bloque__item .btn {
  padding: 15px 10px;
  text-align: center;
}
.pres-course-bloque__item p {
  color: var(--quaternary-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}
.pres-course-bloque__item h3 {
  font-size: var(--text-content-size);
}
.pres-course-bloque__item img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}
@media screen and (min-width: 580px) {
  .pres-instructors__item {
    gap: 10px;
    align-items: center;
    flex-direction: row;
    text-align: left;
  }
  .pres-course__bloque {
    padding: 10px;
    justify-content: flex-end;
  }
  .pres-instructors {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 980px) {
  .pres-course__wrapper {
    flex-direction: row;
  }
  .pres-course__content {
    width: 55%;
    padding: 40px 40px 20px;
  }
  .pres-course__img {
    width: 45%;
    height: 482px;
  }
  .pres-course__bloque {
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 770px;
    margin-top: 0;
    flex-wrap: nowrap;
    padding: 10px;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
}

/** TEMARIO	============== **/
#temario h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
}
.temario__wrapper {
  gap: 40px;
  flex-direction: column-reverse;
}
.temario__img {
  width: 100%;
  position: sticky;
  top: 100px;
  aspect-ratio: 1 / 1;
}
.temario-img__container {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.temario__content {
  width: 100%;
  padding: 0;
}
.temario__cartel {
  width: 92px;
  position: absolute;
  bottom: -50px;
  right: 32px;
  display: none;
}
.temario__item {
  align-items: center;
  gap: 20px;
  color: var(--tertiary-color);
  font-weight: 700;
  margin-bottom: 30px;
}
.temario-item__number {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #fff;
  border-radius: 25px;
  font-size: 1.2rem;
  position: relative;
}
.temario-item__number::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background-color: var(--tertiary-color);
  z-index: -1;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}
.temario__item:last-child .temario-item__number::before {
  display: none;
}
.temario-item__content {
  flex: 1;
}
.temario-item__content span {
  display: flex;
  font-weight: 400;
  margin-top: 6px;
}
.temario__item:nth-child(odd) .temario-item__number {
  background-color: var(--tertiary-color);
}

.temario__item:nth-child(even) .temario-item__number {
  background-color: var(--quaternary-color);
}
@media screen and (min-width: 580px) {
  .temario__wrapper {
    flex-direction: row;
  }
  .temario__content {
    width: 55%;
    padding: 20px 40px;
  }
  .temario__img {
    width: 45%;
    aspect-ratio: auto;
    height: 482px;
  }
  .temario-img__container {
    height: 482px;
    aspect-ratio: auto;
  }
  .temario__cartel {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
 
}
@media screen and (min-width: 1280px) {
}
