: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;
  --box-shadow: 7.16px 7.16px 11px -2px rgba(0, 0, 0, 0.27);
  --border-radius: 1rem;

  --title: 2.7rem;
  --title-mobile: 2.5rem;
  --text-content-size: 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;
}
h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
h3,
h4,
h5,
h6 {
  font-weight: 800;
}
h2,
h3 {
  font-size: var(--title-mobile);
  font-weight: 700;
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  h1 {
    font-size: 3.5rem;
  }
  h2,
  h3 {
    font-size: var(--title);
  }
}
@media screen and (min-width: 1280px) {
}

.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;
  max-width: 1200px;
  z-index: 1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
  }
}
@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 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 25px;
  border-radius: 9999rem;
  position: relative;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  text-align: center;
  min-width: 150px;
}
.btn.-xl {
  font-size: 1.5rem;
}
.btn.-green {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}
.btn.-line-green {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
}
.btn.-blue {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}
.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.-line-green::before {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn.-blue::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.-green.-nolines:hover {
  border: 1px solid var(--primary-color);
}
.btn.-line-green:hover {
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
}
.btn.-blue: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;
}
.first-section {
  padding-top: 115px;
}
.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) {
}

/**
*	PRELOADER
*	=======================================================================================================
**/
.book {
  --color: #fff;
  --duration: 6.8s;
  width: 32px;
  height: 12px;
  position: relative;
  margin: 32px 0 0 0;
  zoom: 1.5;
}
.book .inner {
  width: 32px;
  height: 12px;
  position: relative;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  -webkit-animation: book var(--duration) ease infinite;
  animation: book var(--duration) ease infinite;
}
.book .inner .left,
.book .inner .right {
  width: 60px;
  height: 4px;
  top: 0;
  border-radius: 2px;
  background: var(--color);
  position: absolute;
}
.book .inner .left:before,
.book .inner .right:before {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: inherit;
  position: absolute;
  top: -10px;
  left: 6px;
}
.book .inner .left {
  right: 28px;
  transform-origin: 58px 2px;
  transform: rotateZ(90deg);
  -webkit-animation: left var(--duration) ease infinite;
  animation: left var(--duration) ease infinite;
}
.book .inner .right {
  left: 28px;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  -webkit-animation: right var(--duration) ease infinite;
  animation: right var(--duration) ease infinite;
}
.book .inner .middle {
  width: 32px;
  height: 12px;
  border: 4px solid var(--color);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateY(2px);
}
.book ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 0;
}
.book ul li {
  height: 4px;
  border-radius: 2px;
  transform-origin: 100% 2px;
  width: 48px;
  right: 0;
  top: -10px;
  position: absolute;
  background: var(--color);
  transform: rotateZ(0deg) translateX(-18px);
  -webkit-animation-duration: var(--duration);
  animation-duration: var(--duration);
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.book ul li:nth-child(0) {
  -webkit-animation-name: page-0;
  animation-name: page-0;
}
.book ul li:nth-child(1) {
  -webkit-animation-name: page-1;
  animation-name: page-1;
}
.book ul li:nth-child(2) {
  -webkit-animation-name: page-2;
  animation-name: page-2;
}
.book ul li:nth-child(3) {
  -webkit-animation-name: page-3;
  animation-name: page-3;
}
.book ul li:nth-child(4) {
  -webkit-animation-name: page-4;
  animation-name: page-4;
}
.book ul li:nth-child(5) {
  -webkit-animation-name: page-5;
  animation-name: page-5;
}
.book ul li:nth-child(6) {
  -webkit-animation-name: page-6;
  animation-name: page-6;
}
.book ul li:nth-child(7) {
  -webkit-animation-name: page-7;
  animation-name: page-7;
}
.book ul li:nth-child(8) {
  -webkit-animation-name: page-8;
  animation-name: page-8;
}
.book ul li:nth-child(9) {
  -webkit-animation-name: page-9;
  animation-name: page-9;
}
.book ul li:nth-child(10) {
  -webkit-animation-name: page-10;
  animation-name: page-10;
}
.book ul li:nth-child(11) {
  -webkit-animation-name: page-11;
  animation-name: page-11;
}
.book ul li:nth-child(12) {
  -webkit-animation-name: page-12;
  animation-name: page-12;
}
.book ul li:nth-child(13) {
  -webkit-animation-name: page-13;
  animation-name: page-13;
}
.book ul li:nth-child(14) {
  -webkit-animation-name: page-14;
  animation-name: page-14;
}
.book ul li:nth-child(15) {
  -webkit-animation-name: page-15;
  animation-name: page-15;
}
.book ul li:nth-child(16) {
  -webkit-animation-name: page-16;
  animation-name: page-16;
}
.book ul li:nth-child(17) {
  -webkit-animation-name: page-17;
  animation-name: page-17;
}
.book ul li:nth-child(18) {
  -webkit-animation-name: page-18;
  animation-name: page-18;
}

@-webkit-keyframes page-0 {
  4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  13%,
  54% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  63% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}

@keyframes page-0 {
  4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  13%,
  54% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  63% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-1 {
  5.86% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  14.74%,
  55.86% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  64.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-1 {
  5.86% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  14.74%,
  55.86% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  64.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-2 {
  7.72% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  16.48%,
  57.72% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  66.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-2 {
  7.72% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  16.48%,
  57.72% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  66.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-3 {
  9.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  18.22%,
  59.58% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  68.22% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-3 {
  9.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  18.22%,
  59.58% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  68.22% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-4 {
  11.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  19.96%,
  61.44% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  69.96% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-4 {
  11.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  19.96%,
  61.44% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  69.96% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-5 {
  13.3% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  21.7%,
  63.3% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  71.7% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-5 {
  13.3% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  21.7%,
  63.3% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  71.7% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-6 {
  15.16% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  23.44%,
  65.16% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  73.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-6 {
  15.16% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  23.44%,
  65.16% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  73.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-7 {
  17.02% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  25.18%,
  67.02% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  75.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-7 {
  17.02% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  25.18%,
  67.02% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  75.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-8 {
  18.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  26.92%,
  68.88% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  76.92% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-8 {
  18.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  26.92%,
  68.88% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  76.92% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-9 {
  20.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  28.66%,
  70.74% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  78.66% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-9 {
  20.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  28.66%,
  70.74% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  78.66% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-10 {
  22.6% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  30.4%,
  72.6% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  80.4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-10 {
  22.6% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  30.4%,
  72.6% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  80.4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-11 {
  24.46% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  32.14%,
  74.46% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  82.14% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-11 {
  24.46% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  32.14%,
  74.46% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  82.14% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-12 {
  26.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  33.88%,
  76.32% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  83.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-12 {
  26.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  33.88%,
  76.32% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  83.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-13 {
  28.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  35.62%,
  78.18% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  85.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-13 {
  28.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  35.62%,
  78.18% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  85.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-14 {
  30.04% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  37.36%,
  80.04% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  87.36% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-14 {
  30.04% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  37.36%,
  80.04% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  87.36% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-15 {
  31.9% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  39.1%,
  81.9% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  89.1% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-15 {
  31.9% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  39.1%,
  81.9% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  89.1% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-16 {
  33.76% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  40.84%,
  83.76% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  90.84% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-16 {
  33.76% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  40.84%,
  83.76% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  90.84% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-17 {
  35.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  42.58%,
  85.62% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  92.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-17 {
  35.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  42.58%,
  85.62% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  92.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes page-18 {
  37.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  44.32%,
  87.48% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  94.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-18 {
  37.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  44.32%,
  87.48% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  94.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@-webkit-keyframes left {
  4% {
    transform: rotateZ(90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
  }
  46%,
  54% {
    transform: rotateZ(90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(90deg);
  }
}
@keyframes left {
  4% {
    transform: rotateZ(90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
  }
  46%,
  54% {
    transform: rotateZ(90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(90deg);
  }
}
@-webkit-keyframes right {
  4% {
    transform: rotateZ(-90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
  }
  46%,
  54% {
    transform: rotateZ(-90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
@keyframes right {
  4% {
    transform: rotateZ(-90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
  }
  46%,
  54% {
    transform: rotateZ(-90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
@-webkit-keyframes book {
  4% {
    transform: rotateZ(-90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  40.01%,
  59.99% {
    transform-origin: 30px 2px;
  }
  46%,
  54% {
    transform: rotateZ(90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
@keyframes book {
  4% {
    transform: rotateZ(-90deg);
  }
  10%,
  40% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  40.01%,
  59.99% {
    transform-origin: 30px 2px;
  }
  46%,
  54% {
    transform: rotateZ(90deg);
  }
  60%,
  90% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
#preloader *:before,
#preloader *:after {
  box-sizing: border-box;
}

#preloader {
  background: url(../images/bg-iso-hero-2.svg), url(../images/iso-logo.svg),
    var(--primary-color);
  background-size: 200px, 200px, 100%;
  background-repeat: no-repeat;
  background-position: top -50px right, bottom -55px left, center;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 23px;
  color: #fff;
  font-weight: 600;
}
#preloader span {
  color: var(--secondary-color);
}
@media screen and (min-width: 580px) {
	#preloader {
  background-size: 272px, 272px, 100%;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/

.header__inner {
  align-items: center;
  justify-content: center;
}
.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::after {
  content: "";
  background-image: url(../images/bg-iso-hero-2.svg);
  background-repeat: no-repeat;
  width: 173px;
  height: 160px;
  background-size: contain;
  background-position: top -25px right;
  position: absolute;
  top: 0;
  right: 0;
  transition: var(--transition);
}
.header-main .btn {
  font-weight: 400;
  padding: 10px 20px;
}
.header-main.activeFixed {
  position: fixed !important;
  height: 75px;
  transform: translateY(0);
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}
.header-main.activeFixed::after {
  transform: translateY(-100%);
}
.redes-header {
  gap: 8px;
  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::after {
    width: 272px;
    height: 404px;
    background-position: top -120px right;
    top: 0;
    right: 0;
  }
  .header-main {
    height: 100px;
  }
  .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;
}

@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;
  }
}


/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.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;
}
#overlay {
    width: 100%;
    height: 100vh;
    background-color: var(--quaternary-color);
    opacity: 1;
    position: fixed;
    transition: right 0.5s ease;
    top: 0;
    right: -100%;
    z-index: 99999;
}
#overlay.active {
  opacity: 0.7;
  right: 0;
}
#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: var(--primary-color);
  padding-top: 100px;
  position: fixed;
  overflow: hidden;
  transition: right 0.5s ease;
  right: -100%;
  top: 0;
  z-index: 999999;
}
#sidebar.active {
  right: 0; 
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
    width: 100%;
    max-width: 210px;
}
#sidebar .menu-sidebar {
    font-family: var(--secondary-font);
    margin-bottom: 60px;
}
#sidebar .menu-sidebar li {
  position: relative;
}
#sidebar .menu-sidebar li a {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    color: #fff;
    padding: 10px 25px 10px 25px;
    transition: var(--transition);
    position: relative;
    border-radius: 7px;
    justify-content: center;
    text-align: center;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 30px;
  align-items: center;
}

.sidebar-wrapper .row {
  flex-direction: column;
  gap: 65px;
  width: 100%;
}
.sidebar-wrapper .col-50 {
    width: 100%;
    justify-content: center;
    display: flex;
}
.content-sidebar {
    padding: 40px 0;
    gap: 20px;
    align-items: start;
    border-top: 1px solid var(--secondary-color);
    width: max-content;
    position: relative;
    align-items: center;
    gap: 34px !important;
	display: flex;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}
.redes-img {
    gap: 10px;
    justify-content: center;
}
.redes-img a{
	width: 40px;
	height: 40px;
	display: flex;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
}
@media screen and (min-width: 1280px) {
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}
/**
*	HOME
*	=======================================================================================================
**/

/** WELCOME	============== **/
#welcome {
  background-color: var(--primary-color);
  position: relative;
  margin-bottom: 80px;
}
#welcome::after {
  position: absolute;
  content: "";
  bottom: -53px;
  left: 0;
  width: 272px;
  height: 404px;
  background-image: url(../images/iso-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  opacity: 0.9;
}
.welcome__wrapper {
  flex-direction: column;
  gap: 40px;
}
.welcome__wrapper > .welcome__row:first-child {
  justify-content: space-between;
/*   min-height: 345px; */
	min-height: 280px;
  padding: 20px 0;
  align-items: flex-end;
  flex-direction: column;
}
.welcome__row {
  flex-direction: column;
  gap: 40px;
  margin-right: 0;
}
.welcome__row > div:first-child {
  width: 100%;
}
.welcome__row.-first {
  position: relative;
  z-index: 9999;
}
.welcome__row.-last > div:last-child {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}
.welcome__row .bloque {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  min-height: auto;
  position: relative;
}
.container-man-welcome {
  width: 100%;
  height: auto;
  position: relative;
  bottom: 25px;
  left: 0;
  z-index: 999;
}
.welcome__btns {
  flex-direction: row;
  gap: 15px;
  justify-content: center;
}
#welcome h1 {
  color: #fff;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
#welcome h1 strong {
  color: var(--secondary-color);
  font-weight: 700;
}
.welcome__description {
  width: 100%;
  color: #fff;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.btns-welcome {
  justify-content: center;
  gap: 40px;
}
.btns-welcome button img {
  width: 43px;
}
.welcome__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.welcome-grid__item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-grid__item:nth-child(1),
.welcome-grid__item:nth-child(4) {
  background-color: var(--tertiary-color);
}
.welcome-grid__item:nth-child(2),
.welcome-grid__item:nth-child(3) {
  background-color: var(--primary-color);
}
.welcome-grid__item img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  object-position: center;
}
.welcome__line-dots {
  width: 17px;
  height: 515px;
  position: absolute;
  bottom: -50px;
  right: 1.5rem;
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .welcome__wrapper > .welcome__row:first-child {
    flex-direction: row;
  }
  .welcome__row {
    margin-right: 90px;
    flex-direction: row;
    gap: 70px;
  }
  .welcome__row > div:first-child {
    width: 65%;
  }
  #welcome h1 {
    width: 500px;
    text-align: left;
  }
  .welcome__row.-last > div:last-child {
    width: 35%;
  }
  .welcome__description {
    width: 317px;
    text-align: left;
    gap: 55px;
  }
  .welcome__btns {
    justify-content: flex-start;
  }
  .btns-welcome {
    justify-content: flex-end;
  }
  .container-man-welcome {
    width: 715px;
    height: 545px;
    bottom: -10px;
    left: 85px;
    position: absolute;
  }
  .welcome__row .bloque {
    min-height: 315px;
  }
  .welcome__row.-last > div:last-child {
    flex-direction: row;
    padding: 40px;
  }
  .welcome__grid {
    grid-template-columns: repeat(2, 1fr);
    width: max-content;
    gap: 20px;
  }
  .welcome-grid__item {
    width: 105px;
  }
  .welcome-grid__item img {
    width: 60px;
    height: 60px;
  }
  .welcome__line-dots {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - CURSOS	============== **/
.cursos__wrapper {
  width: 100%;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}
.title-section {
  position: relative;
}
.title-section h2 {
  color: var(--primary-color);
  text-align: center;
}
.title-section__bg {
  min-height: 350px;
  width: 180px;
  border-radius: var(--border-radius);
  background: url(../images/iso-logo.svg), var(--quaternary-color);
  background-repeat: no-repeat;
  background-size: auto 156%, 100%;
  background-position: bottom -100px left, center;
  margin-top: 60px;
  display: none;
}
.title-section__cartel {
  position: absolute;
  width: 80px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.cursos-wrapper__content {
  width: 100%;
  flex-direction: column;
  gap: 45px;
}
.cursos-wrapper__header {
  justify-content: space-between;
  padding: 0;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.cursos-wrapper__header > div:first-child {
  width: 100%;
}
.cursos-wrapper__header p {
  color: var(--tertiary-color);
}
.cursos-wrapper__header > div:first-child > p:last-child {
  margin-bottom: 0;
}
#carousel-cursos {
  width: 100%;
}
.carousel-cursos__item {
  aspect-ratio: 1 / 1;
  background-color: red;
  margin: 0 5px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}
.carousel-cursos__item img {
  transition: var(--transition);
}
.carousel-cursos__item:hover img {
  transform: scale(1.05);
}
.carousel-cursos-item__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}
.description-course {
  flex-direction: column;
  gap: 10px;
}
.description-course h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 20%;
}
.course-price {
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  align-items: center;
}
.tag {
  padding: 4px 10px;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  width: max-content;
}
.tag.-online {
  background-color: #fff;
}
.tag.-discount {
  background-color: var(--secondary-color);
  font-weight: 700;
}
.gradient-course {
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #6252d8;
  background: -webkit-linear-gradient(
    0deg,
    rgba(98, 82, 216, 0.86) 0%,
    rgba(98, 82, 216, 0) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(98, 82, 216, 0.86) 0%,
    rgba(98, 82, 216, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(98, 82, 216, 0.86) 0%,
    rgba(98, 82, 216, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6252D8", endColorstr="#6252D8", GradientType=0);
}

@media screen and (min-width: 580px) {
  .cursos__wrapper {
    flex-direction: row;
  }
  .cursos-wrapper__content {
    width: 80%;
  }
  .cursos-wrapper__header {
    flex-direction: row;
    gap: 0;
    text-align: left;
    align-items: flex-start;
    padding: 0 10px;
  }
  .cursos-wrapper__header > div:first-child {
    width: 70%;
  }
  .title-section h2 {
    display: none;
  }
  .title-section__bg {
    display: flex;
    width: 120px;
  }
  .title-section__cartel {
    display: flex;
  }

  .carousel-cursos__item {
    margin: 0 10px;
  }
}
@media screen and (min-width: 980px) {
  .title-section__bg {
    width: 180px;
    min-height: 475px;
  }
  .carousel-cursos-item__content {
    padding: 35px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - BENEFICIOS	============== **/
.beneficios__wrapper {
  flex-direction: column;
  gap: 30px;
}
.beneficios__wrapper > div:nth-child(1) {
  width: 100%;
  padding-top: 0;
  align-items: center;
}
.beneficios__wrapper .beneficios {
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 40px 20px;
  justify-content: center;
}
.beneficios__wrapper .beneficios::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background-color: var(--secondary-color);
  top: 0;
  z-index: 0;
  right: -200%;
}
.beneficios__wrapper h2 {
  color: var(--primary-color);
  text-align: center;
}
.beneficios__title {
  flex-direction: column;
  gap: 40px;
}
.beneficios-title__img {
  width: 100%;
  height: 320px;
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 9;
  position: relative;
  margin-bottom: 0;
}
.beneficios > .beneficios__item:nth-child(odd) {
  justify-content: flex-end;
}
.beneficios__item .bloque {
  width: 100%;
  color: var(--primary-color);
}
.beneficios__item .number {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--quaternary-color);
  flex: none;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  transform: rotate(270deg);
  margin-right: 20px;
  font-weight: 300;
}
.beneficios__item h3 {
  font-size: var(--text-content-size);
  margin-bottom: 10px;
}
.beneficio-item__content > p:last-child {
  margin-bottom: 0;
}
.beneficios__img {
  width: 290px;
  height: 200px;
  position: absolute;
  top: -20px;
  right: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: none;
}

@media screen and (min-width: 580px) {
  .beneficios__wrapper {
    flex-direction: row;
    margin-bottom: 0px;
  }
  .beneficios__wrapper > div:nth-child(1) {
    width: 40%;
    padding-top: 40px;
    align-items: flex-start;
  }
  .beneficios__wrapper .beneficios {
    width: 60%;
    padding: 80px 0 80px 80px;
  }
  .beneficios-title__img {
    width: 120%;
    margin-bottom: -80px;
  }
  .beneficios__wrapper h2 {
    text-align: left;
  }
  .beneficios__item .bloque {
    width: 330px;
  }
}
@media screen and (min-width: 980px) {
  .beneficios__img {
    display: flex;
  }
  .beneficios__wrapper > div:nth-child(1) {
    width: 35%;
    padding-top: 80px;
  }
  .beneficios__wrapper .beneficios {
    width: 65%;
    padding: 100px 50px 100px 100px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - ARTÍCULOS	============== **/
.latestarticles__wrapper {
  width: 100%;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}
.latestarticles-wrapper__content {
  width: 100%;
  flex-direction: column;
  gap: 45px;
}
.latestarticles__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 65px 20px;
}
.article-block {
  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;
}
.article-block img{
	transition: var(--transition);
}
.article-block:hover img{
	transform: scale(1.05);
}
.article-block:nth-child(2) {
  background-color: var(--secondary-color);
}
.latestarticles__img {
  position: absolute;
  top: -60px;
  right: -25px;
  width: 100%;
  height: 258px;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}
.latestarticles__content {
    padding: 20px 30px 50px;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    margin-top: 198px;
    font-size: var(--text-content-size);
    min-height: 135px;
    display: flex;
    align-items: center;
}
.article-block:nth-child(2) .latestarticles__content {
  color: var(--primary-color);
}
.article-block .date {
  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: 1.2rem;
  color: var(--primary-color);
  flex-direction: column;
  text-align: center;
}
.article-block .date strong {
  font-size: 2rem;
}
.article-block:nth-child(2) .date {
  background-color: var(--primary-color);
  color: #fff;
}
.article-block .btn {
  position: absolute;
  bottom: -20px;
  right: 30px;
}
.article-block .btn:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #fff;
}
.article-block .btn::before {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}
.latestarticles-wrapper__header {
  justify-content: space-between;
  padding: 0;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.latestarticles-wrapper__header p strong{
	color: var(--primary-color);
}
.latestarticles-wrapper__header h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}
.latestarticles-wrapper__header > div:first-child {
  width: 100%;
}
.latestarticles-wrapper__header p {
  color: var(--tertiary-color);
}
.latestarticles-wrapper__header > div:first-child > p:last-child {
  margin-bottom: 0;
}
.latestarticles__wrapper .title-section__cartel {
  top: auto;
  bottom: 0;
}
.latestarticles__wrapper .title-section__bg {
    margin-top: -185px;
    margin-bottom: 105px;
    min-height: 581px;
    background-position: bottom -120px left, center;
}

@media screen and (min-width: 580px) {
  .latestarticles-wrapper__content {
    width: 80%;
  }
  .latestarticles-wrapper__header {
    flex-direction: row;
    gap: 0;
    text-align: left;
    align-items: flex-start;
    padding: 0 10px;
  }
  .latestarticles-wrapper__header > div:first-child {
    width: 65%;
  }
  .latestarticles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 20px;
  }
  .latestarticles__wrapper {
    flex-direction: row;
  }
  .latestarticles-wrapper__header h2 {
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .latestarticles-wrapper__content {
    width: 75%;
  }
  .latestarticles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 40px;
  }
}
@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;
  padding-top: 45px;
}
.footer-inner {
  background-color: var(--primary-color);
}
.footer__wrapper {
  flex-direction: column;
  height: auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0 60px;
}
.footer__logo {
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer__logo img {
    max-width: 320px;
    width: 80%;
}
.copyright {
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 5px;
  color: #fff;
}
.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;
}
.footer-banner {
  width: 100%;
  height: 95px;
}
#menu-menu-footer {
    display: flex;
	flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#menu-menu-footer li:hover a{
	color: var(--secondary-color);
}
@media screen and (min-width: 580px) {
	#menu-menu-footer {
		flex-direction: row;
		gap: 50px;
	}	
	.footer__logo img {
 		 width: 350px;
		max-width: 350px;
	}
}
@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 {
	  justify-content: flex-start;
    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) {
}

/**
*	INTERNAS
*	=======================================================================================================
**/
.breadcrumb{
	display: flex;
    align-items: center;
    gap: 10px;
}
img.breadcrumb-icon {
    width: 17px;
}
img.breadcrumb-sep {
    width: 5px;
}
.main-section {
  background-color: var(--primary-color);
  position: relative;
  padding-top: 110px;
}
.main-section::after {
  content: "";
  position: absolute;
  height: 78px;
  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;
}

/** INTERNAS - PRESENTACIÓN	============== **/
#presentation-intern {
  padding-bottom: 20px;
}
.pres-intern__wrapper {
  flex-direction: column;
  gap: 40px;
}
.pres-intern__content {
  width: 100%;
  padding: 0px 0px 20px;
  color: #fff;
  flex-direction: column;
  position: relative;
}
.pres-intern__content li{
	margin: 15px 0 0 20px;
    list-style: disc;
}
.pres-intern__content h2{
	margin-bottom:20px;
}
.pres-intern__bloque {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 30px 0px 0px;
  box-shadow: var(--box-shadow);
  gap: 20px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  overflow: hidden;
}
.pres-intern__content h1 {
    margin-bottom: 25px;
    font-size: 2.9rem;
    color: var(--secondary-color);
}
.pres-intern__img {
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  z-index: 7;
  display: none;
}
.pres-intern-bloque__item {
  color: var(--primary-color);
  gap: 10px;
  align-items: center;
}
.pres-intern-bloque__item.-count {
  background-color: var(--tertiary-color);
  color: #fff;
  padding: 15px 21px;
  min-width: 242px;
  justify-content: center;
  width: 100%;
}
.pres-intern-bloque__item .btn {
  padding: 15px 10px;
  text-align: center;
}
.pres-intern-bloque__item p {
  color: var(--quaternary-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}
.pres-intern-bloque__item h3 {
  font-size: var(--text-content-size);
}
.pres-intern-bloque__item img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}
.intern-pres__line-dots {
  width: 17px;
  height: 190px;
  background-image: url(../images/line-dots.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 17px;
  position: absolute;
  bottom: 0;
  right: 1.5rem;
	display: none;
}
select {
  min-width: 190px;
  appearance: auto;
  font-size: var(--text-content-size);
  color: var(--tertiary-color);
}
@media screen and (min-width: 580px) {
  .pres-intern__bloque {
    justify-content: flex-end;
    margin-top: 40px;
    padding: 0px;
  }
  .pres-intern-bloque__item.-count {
    padding: 31px 21px;
    width: auto;
  }
}
@media screen and (min-width: 980px) {
  .pres-intern__wrapper {
    flex-direction: row;
    width: 96%;
  }
  .pres-intern__content {
        width: 55%;
        padding: 15px 0px 20px 35px;
    }
  .pres-intern__img {
    width: 45%;
    height: 340px;
    display: flex;
  }
  .pres-intern__bloque {
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 770px;
    margin-top: 0;
    flex-wrap: nowrap;
    padding: 0px 0px 0px 25px;
    justify-content: space-between;
    min-height: 79px;
    overflow: hidden;
  }
	.intern-pres__line-dots {
  display: flex;
}
}
@media screen and (min-width: 1280px) {
}

/**
*	CURSOS ARCHIVE
*	=======================================================================================================
**/
.courses__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.courses-grid__item {
    margin: 0;
    flex: none;
    width: 100%;
    max-height: 100%;
    max-width: 50%;
    aspect-ratio: 1 / 1;
}
.courses-grid__item .carousel-cursos-item__content {
  padding: 20px;
}

@media screen and (min-width: 580px) {
  .courses-grid__item {
    flex: 1 1 calc(50% - 1rem);
  }
  .courses-grid__item .carousel-cursos-item__content {
    padding: 30px;
  }
}
@media screen and (min-width: 980px) {
  .courses-grid__item {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .courses-grid__item:nth-child(5n + 1),
  .courses-grid__item:nth-child(5n + 2) {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media screen and (min-width: 1280px) {
}

/** CURSOS ARCHIVE - E-BOOKS	============== **/
#courses-ebooks {
  padding-bottom: 0;
  margin-bottom: -100px;
}
#courses-ebooks h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}
.courses-ebooks__wrapper {
  flex-direction: column;
  align-items: center;
}
.courses-ebook__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.courses-ebook-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
}
.e-book-img {
  width: 202px;
  height: 286px;
  border-radius: 0.7rem;
  box-shadow: var(--box-shadow);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
}
.e-book-img-main {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.e-book-info {
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    padding: 100px 30px 30px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.courses-ebook-item:hover .e-book-info {
  padding: 345px 30px 30px;
	height: 100%;
}
.e-book-info h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.e-book-info span {
  color: var(--secondary-color);
  font-size: 0.9rem;
}
.btn-download {
  width: 51px;
  height: 51px;
  border-radius: 50px;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: absolute;
  bottom: -13px;
  right: -8px;
  box-shadow: var(--box-shadow);
}
.btn-download img {
  width: 21px;
  transition: var(--transition);
}
.btn-download:hover img {
  transform: rotate(20deg);
}
@media screen and (min-width: 580px) {
  .courses-ebook__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .courses-ebook__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	INTERNA DEL CURSO
*	=======================================================================================================
**/

/** CURSO - PRESENTACIÓN	============== **/
#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;
}
.pres-course__bloque .btn{
	    min-width: 265px;
}
.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;
}
.course-pres__line-dots {
  width: 17px;
  height: 275px;
  background-image: url(../images/line-dots.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 17px;
  position: absolute;
  bottom: 0;
  right: 1.5rem;
}
@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;
    width: 96%;
  }
  .pres-course__content {
        width: 55%;
        padding: 30px 0px 140px 35px;
    }
  .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: 15px;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
}

/** CURSO - 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: 65px;
  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) {
}
/** CURSO - 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__content li{
	    list-style: disc;
    margin: 0 20px 15px;
    font-size: 1rem;
}
.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) {
}

/** CURSO - 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);
	text-align: center;
}
.-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) {
}

/**
*	BLOG
*	=======================================================================================================
**/
.articles-blog__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px 40px;
}
.articles-blog__grid .article-block:nth-child(2),
.articles-blog__grid .article-block:nth-child(4),
.articles-blog__grid .article-block:nth-child(6) {
  background-color: var(--secondary-color);
}
.articles-blog__grid .article-block:nth-child(2) .date,
.articles-blog__grid .article-block:nth-child(4) .date,
.articles-blog__grid .article-block:nth-child(6) .date {
  background-color: var(--primary-color);
  color: #fff;
}
.articles-blog__grid .article-block:nth-child(2) .latestarticles__content,
.articles-blog__grid .article-block:nth-child(4) .latestarticles__content,
.articles-blog__grid .article-block:nth-child(6) .latestarticles__content {
  color: var(--primary-color);
}
@media screen and (min-width: 580px) {
  .articles-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .articles-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SINGLE BLOG
*	=======================================================================================================
**/
.main-section.-single-blog::after {
  display: none;
}
article {
  padding-bottom: 50px;
}
.title-article {
  background-color: var(--primary-color);
}
.title-article h1 {
  color: #fff;
  font-size: 2rem;
  padding-bottom: 175px;
  line-height: 1.2;
}
.title-article__wrapper {
  width: 100%;
  margin: 0 auto;
}
.article__wrapper {
  width: 100%;
  margin: -135px auto 0;
  flex-direction: column;
  gap: 20px;
}
.article-content h2{
	font-size: 1.2rem;
    margin: 30px 0 12px;
    font-weight: 600;
    color: var(--primary-color);
}
.article-content .wp-block-list{
	font-size: var(--text-content-size);
    margin-bottom: 20px;
    line-height: 1.5;
	    color: var(--tertiary-color);
    text-align: justify;
}
.article-content .wp-block-list li{
	    list-style: disc;
    margin: 0 0 0 20px;
}
.article-img {
  width: 100%;
  height: 340px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  position: relative;
}
.article-img img {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.article__wrapper .date {
  width: 72px;
  height: 72px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  position: absolute;
  top: 34px;
  z-index: 2;
  left: -13px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-direction: column;
  text-align: center;
}
.article__wrapper .date strong {
  font-size: 2rem;
}
.article-content p {
  color: var(--tertiary-color);
  text-align: justify;
}
.article-categories {
  gap: 4px;
  margin: 20px 0 30px;
}
.article-categories .btn {
  color: var(--primary-color);
}
.article-content .pres-instructors__item {
  margin-top: 40px;
}
.article-content .pres-instructors__content p {
  color: var(--primary-color);
}

@media screen and (min-width: 580px) {
  .article-img {
    height: 557px;
  }
  .article-categories {
    gap: 13px;
  }
}
@media screen and (min-width: 980px) {
  .title-article__wrapper {
    width: 768px;
  }
  .article__wrapper {
    width: 768px;
  }
  .title-article h1 {
    font-size: var(--title);
  }
  .article-img {
    height: 557px;
  }
  .article__wrapper .date {
    top: 34px;
    left: -36px;
  }
}
@media screen and (min-width: 1280px) {
}

/** SINGLE BLOG - ARTICLES RELATED	============== **/
.article-related__wrapper {
  flex-direction: column;
  align-items: center;
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 30px;
}
.article-related__wrapper h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (min-width: 580px) {
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .article-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	E-BOOKS
*	=======================================================================================================
**/
.e-books__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media screen and (min-width: 580px) {
  .e-books__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .e-books__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SEMINARIOS
*	=======================================================================================================
**/
/** SEMINARIOS - TÍTULO	============== **/
.title-seminarios__wrapper {
  gap: 40px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0 50px;
  flex-direction: column;
  text-align: center;
}
.title-seminarios__wrapper > div:nth-child(1) {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.title-seminarios__wrapper > div:nth-child(2) {
  width: 100%;
  padding-right: 0px;
}
.title-seminarios__wrapper > div:nth-child(2) > p:last-child {
  margin-bottom: 0;
}
.title-seminarios__wrapper h1 {
  color: var(--secondary-color);
}
@media screen and (min-width: 580px) {
  .title-seminarios__wrapper {
    flex-direction: row;
    text-align: left;
  }
  .title-seminarios__wrapper > div:nth-child(1) {
    width: 40%;
  }
  .title-seminarios__wrapper > div:nth-child(2) {
    width: 60%;
    padding-right: 20px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** SEMINARIOS - EVENTO DESTACADO	============== **/
.main-section.-seminarios::after {
  display: none;
}
.main-section.-seminarios #presentation-intern {
  padding: 20px 0 50px;
}
.main-section.-seminarios .pres-intern__wrapper {
  width: 100%;
  flex-direction: column;
}
.main-section.-seminarios .intern-pres__line-dots {
  display: none;
}
.main-section.-seminarios .pres-intern__content {
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}
.main-section.-seminarios .pres-intern__img {
  width: 100%;
  height: 370px;
  display: flex;
}
.main-section.-seminarios .pres-intern__content h2 {
  margin-bottom: 25px;
}
.grid-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  padding-right: 0;
  margin-bottom: 25px;
}
.item-countdown {
  flex-direction: column;
}
.cuadro {
  border: 1px solid var(--secondary-color);
  height: 82px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}
.item-countdown span {
  color: var(--secondary-color);
  text-align: center;
  margin-top: 5px;
  font-size: var(--text-content-size);
}
@media screen and (min-width: 580px) {
  .main-section.-seminarios .pres-intern__content {
    align-items: flex-start;
    text-align: left;
    width: 50%;
  }
  .main-section.-seminarios .pres-intern__img {
    width: 50%;
    height: 370px;
  }
  .grid-countdown {
    padding-right: 60px;
  }
  .main-section.-seminarios .pres-intern__wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** SEMINARIOS - LISTA	============== **/
.seminarios-list__item {
    flex-direction: column;
    gap: 55px;
    padding: 25px 0;
}
.seminario-list-item__img {
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  height: 370px;
}
.seminario-list-item__content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.seminario-list-item__content h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}
.seminario-list-item__content p {
  color: var(--tertiary-color);
}
.seminario-list-item__content .days {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  gap: 15px;
  margin: 0px 0 30px;
}
.seminario-list-item__content .days img {
  width: 28px;
  height: 28px;
}

@media screen and (min-width: 580px) {
  .seminarios-list__item {
  flex-direction: row;
}
.seminario-list-item__img {
  width: 50%;
}
.seminario-list-item__content {
  width: 50%;
  text-align: left;
    align-items: flex-start;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	SEMINARIO SINGLE
*	=======================================================================================================
**/
.-seminario-single .pres-intern__content {
  align-items: center;
  text-align: center;
}
.pres-intern__content .days {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  gap: 15px;
  margin: 0px 0 30px;
}
.pres-intern__content .days img {
  width: 28px;
  height: 28px;
}
.-seminario-single .pres-intern__img {
  aspect-ratio: 1 / 1;
  height: auto;
}
.-seminario-single .intern-pres__line-dots {
  height: 276px;
  display: none;
}
.main-section.-seminario-single::after {
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .main-section.-seminario-single::after {
    display: flex;
  }
  .-seminario-single .intern-pres__line-dots {
    display: flex;
  }
  .-seminario-single .pres-intern__content {
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}

/** SEMINARIO SINGLE - SEGUNDA SECCIÓN	============== **/
.seminario-des__wrapper {
  gap: 50px;
  flex-direction: column;
}
.seminario-des__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.seminario-des__content {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0;
  color: var(--tertiary-color);
  text-align: justify;
}
.seminario-des__content h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (min-width: 580px) {
  .seminario-des__wrapper {
    gap: 40px;
    flex-direction: row;
  }
  .seminario-des__img {
    width: 50%;
  }
  .seminario-des__content {
    width: 50%;
  }
  .seminario-des__content h2 {
    text-align: left;
  }
}
@media screen and (min-width: 980px) {
  .seminario-des__wrapper {
    gap: 100px;
  }
  .seminario-des__content {
    width: 50%;
    padding: 0 50px 0 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** SEMINARIO SINGLE - OTROS SEMINARIOS	============== **/
.otros-seminarios__wrapper {
  flex-direction: column;
  align-items: center;
}
.otros-seminarios__wrapper h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}
.otros-seminarios__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.seminario-item__img {
  width: 100%;
  height: 360px;
  border-radius: var(--border-radius);
  position: relative;
}
.seminario-item__img img {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.seminario-item__content {
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}
.seminario-item__content h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  text-align: center;
}
.otros-seminarios__item .date {
  width: 72px;
  height: 72px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  position: absolute;
  top: -25px;
  z-index: 2;
  left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-direction: column;
  text-align: center;
}
.otros-seminarios__item .date strong {
  font-size: 2rem;
}

@media screen and (min-width: 580px) {
  .otros-seminarios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .seminario-item__content {
    flex-direction: row;
  }
  .seminario-item__content h3 {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}


/**
*	NOSOTROS
*	=======================================================================================================
**/

/** NOSOTROS - SECOND SECTION	============== **/
.-page-nosotros .pres-intern__content{
	text-align: left;
}


#second-nos{
	padding:80px 0;
}
.second-nos__wrapper{
	flex-direction: column;
	gap: 40px;
}
.second-nos__img{
	width: 100%;
	height: 400px;
	position: relative;
}
.second-nos-img{
	border-radius: var(--border-radius);
	overflow: hidden;
}
.second-nos-img-peque{
	position: absolute;
	width: 235px;
	height: 235px;
	z-index: 9;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	overflow: hidden;
	bottom: -40px;
	right: -40px;
	display: none;
}
.second-nos__content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}
.second-nos__content p {
    color: var(--tertiary-color);
}
.second-nos__content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}
.second-nos-block{
	width: 105px;
	height: 105px;
	border-radius: var(--border-radius);
	display: flex;
	justify-content: center;
	align-items: center;
} 
.second-nos-block img{
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.second-nos-block.block-1{
	background-color: var(--secondary-color);
}
.second-nos-block.block-2{
	background-color: var(--primary-color);
}
.second-nos-block.block-3{
	background-color: var(--quaternary-color);	
}
.second-nos-block.block-4{
	background-color: var(--tertiary-color);
}
.second-nos__blocks {
    margin-top: 20px;
	gap: 20px;
}
@media screen and (min-width: 580px) {
	.second-nos__wrapper{
		flex-direction: row;
		gap: 40px;
	}
	.second-nos__img{
	width: 50%;
	height: 483px;
}
.second-nos__content {
    width: 50%;
    padding: 0 20px;
}
	.second-nos-block img{
	width: 60px;
	height: 60px;
	object-fit: contain;
}
}
@media screen and (min-width: 980px) {
	.second-nos__wrapper{
		flex-direction: row;
		gap: 100px;
	}
	.second-nos-img-peque{
	display: flex;
}
}
@media screen and (min-width: 1280px) {
}


.team-nos__wrapper{
	flex-direction: column;
	align-items: center;
}
.team-nos__wrapper h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}
.team-grid {
    gap: 20px;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}
.team-grid__item {
	 margin-top: 130px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    position: relative;
    min-height: 195px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    width: 100%;
    gap: 3px;
}
.team-grid-img {
    width: 215px;
    height: 215px;
    border-radius: 50%;
    position: absolute;
    z-index: 9;
    box-shadow: var(--box-shadow);
    left: 50%;
    transform: translatex(-50%);
    top: -55%;
    overflow: hidden;
}
.team-grid__item h3{
	font-size: 1.1rem;
	color: #fff;
}
.team-grid__item span{
	color: var(--secondary-color);
}
#team-nos {
    padding-bottom: 0;
    margin-bottom: -100px;
}
@media screen and (min-width: 580px) {
	.team-grid__item {
    width: 48%;
}
}
@media screen and (min-width: 980px) {
	.team-grid__item {
    width: 23%;
}
}
@media screen and (min-width: 1280px) {
}

.footer-main.-contact{
	padding-top: 0;
}
.main-section.-page-contact::after{
	display: none;
}
.-page-contact h1{
	font-weight:400;
	color: #fff;
}
.-page-contact h1 strong {
    font-weight: 800;
    color: var(--secondary-color);
}
.footer-banner.-contact{
	height: 185px;
}
.-page-contact .pres-intern__img{
	background-color: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 40px 40px 20px 40px;
}

.-page-contact .pres-intern__img {
    overflow: visible;
    aspect-ratio: auto;
    height: auto;
    margin-bottom: -80px;
    display: flex;
}
.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-row label {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
}
.form-row p{
	margin: 0;
}
.form-row input,
textarea{
	    border: 1px solid var(--tertiary-color);
    padding: 10px 20px;
    border-radius: 10px;
	width: 100%;
	resize: none;
}
.datos-contact {
        flex-direction: column;
    margin-top: 40px;
    align-items: center;
    gap: 20px;
}
.list-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list-contact > div{
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
}
.list-contact img{
	width: 30px;
	height: 30px;
}
.redes-contact {
    width: 100%;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    font-weight: 800;
    padding: 20px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--primary-color);
}
.redes-contact img{
	width: 30px;
	height: 30px;
}
@media screen and (min-width: 580px) {
	.datos-contact {
		flex-direction: row;
		margin-top: 40px;
	}
	.list-contact {
    width: 50%;
}
.redes-contact {
    width: 50%;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}
