:root {
  --primary-font: "Open Sans", sans-serif;
  --base-size-font: 16px;

  --primary-color: #ce0e2d;
  --secondary-color: #30011e;
  --tertiary-color: #dfe0da;
  --quaternary-color: #57595b;

  --transition: all 0.4s ease;
  --custom-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #0000001f;
  --border-radius: 5px;

  --title: 3rem;
  --title-mobile: 2.6rem;
  --title-s: 2.5rem;
  --title-xs: 1.8rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}
html {
	scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-size: var(--base-size-font);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0px;
  color: var(--quaternary-color);
}

h1,
h2 {
  letter-spacing: -0.3px;
  font-weight: 300;
}
h2 {
  font-size: var(--title-s);
  line-height: 1.1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  h2 {
    font-size: var(--title);
  }
}
@media screen and (min-width: 1280px) {
}

p {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: var(--text-content-size);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.col-40 {
  width: 40%;
}
.col-50 {
  width: 50%;
}
.col-60 {
  width: 60%;
}
.-bg-red {
  background-color: var(--primary-color);
}
.-bg-blue {
  background-color: var(--secondary-color);
}
.-bg-gray {
  background-color: var(--tertiary-color);
}

.section-title {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 40px;
}
.section-title.-white {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.form-group input,
.form-group label {
  font-size: var(--text-content-size);
}
.form-group input {
    padding: 10px;
    background-color: var(--tertiary-color);
    border-radius: var(--border-radius);
    width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}
.form-group label {
    display: inline-block;
    margin-bottom: 10px;
}
.form-group p{
	margin-bottom: 0;
}
.form-row .btn{
	background-color: var(--primary-color);
	color: #fff;
}
.form-row {
  display: flex;
  flex-direction: column;  
}
.section-title h1,
.section-title h2 {
  font-size: var(--title-mobile);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .section-title h1,
  .section-title h2 {
    font-size: var(--title);
  }
  .form-row {
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1280px) {
}
/* --- Animaciones --- */
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
@keyframes iconCircle {
  0% {
    border-width: 2px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    border-width: 1px;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
  }
}
/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 0 25px;
}
main {
  margin-top: 0px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 90%;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1280px) {
}
/*-------------------- Header ------------------*/
.header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: var(--transition);
  background-color: var(--primary-color);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header {
    background-color: var(--secondary-color);
    padding: 0;
    height: 80px;
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1280px) {
}

body:not(.home) .header {
  transform: translateY(0);
}

.header.activeFixed {
  position: fixed !important;
  height: 70px;
  transform: translateY(0);
  box-shadow: var(--box-shadow);
}

.header-menu {
  background-color: var(--primary-color);
  position: relative;
  flex-grow: 1;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}

.header-menu::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 100%;
  background-image: url(../images/white-triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: -2px;
  top: 0;
}
.header-menu::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 100%;
  background-image: url(../images/red-triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: -47px;
  top: 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: row;
  width: 100%;
  margin-right: 20px;
  transition: var(--transition);
}
.header.activeFixed .header__inner {
  margin-right: 20px;
}
.header__logo {
  background-color: #fff;
  width: 230px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 100%;
  background-image: url(../images/white-triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: -45px;
  top: 0;
}
@media screen and (min-width: 580px) {
  .header__logo {
    width: 270px;
  }
}
@media screen and (min-width: 980px) {
  .header-menu {
    display: flex;
  }
  .header__inner {
    margin-right: 80px;
  }
  .header.activeFixed .header__inner {
    margin-right: 90px;
  }
}
@media screen and (min-width: 1280px) {
}

.header__logo a {
  display: block;
  height: 60px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__logo a {
    height: 60px;
    transition: var(--transition);
  }
  .header.activeFixed .header__logo a {
    height: 50px;
  }
}
@media screen and (min-width: 1280px) {
}

.header__logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-header {
  height: 100%;
}
.item-header:nth-child(3) {
  display: flex;
  justify-content: end;
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 20px;
  padding: 0 80px;
  height: 100%;
}
.item-header .menu li {
  position: relative;
  display: flex;
}
.item-header .menu li > a {
  color: #fff;
  text-transform: uppercase;
  padding: 30px 14px;
  transition: var(--transition);
  position: relative;
}
.header.activeFixed .item-header .menu li > a {
	padding: 25px 14px;
}
.item-header .menu li.current-menu-item > a{
	position: relative;
}
.item-header .menu li.current-menu-item > a,
.item-header .menu li > a:hover {
  color: #fff;
}
.item-header .menu li.current-menu-item > a::after,
.item-header .menu li > a:hover::after{
	content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
	left: 0;
    background-color: var(--tertiary-color);
}
.no-highlight.current-menu-item > a::after, 
.no-highlight > a:hover::after {
    display: none;
}




.item-header .menu li.current-menu-item {
  position: relative;
}

.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  padding: 10px;
}

.header__toggle img {
  width: 100%;
}

.header__button {
  margin: 0;
  font-size: var(--base-size-font);
  padding: 8px;
  width: 100px;
  text-align: center;
}

.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  padding: 10px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__toggle {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
}

.header__toggle img {
  width: 100%;
}

.header__button {
  margin-left: 20px;
}
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  width: 22px;
}
.spinner {
  height: 3px;
  width: 100%;
  background-color: #fff;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.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: 3px;
}

/* --- Sidebar menu ---- */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}

.sidebar__body {
  width: 100%;
  height: 100%;
  z-index: 1001;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transition: var(--transition);

  transform: translatex(-100%);
}

.sidebar.active_sidebar .sidebar__body {
  transform: translateX(0%) translatez(0);
}
.sidebar.active_sidebar .redes {
  display: flex;
  gap: 25px;
  flex-direction: row;
}
.sidebar.active_sidebar .redes img {  
    height: 40px!important;
    object-fit: contain;
    object-position: center;
}
#sidebarGeneral .sidebarMenuInner li a {
  font-size: 1.2rem;
  line-height: 2rem;
}
#menu-menu-responsive li a {
    font-size: 1.5rem!important;
    line-height: 3rem!important;
}
.sidebar__content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background-color: #fff !important;
}

.sidebar__wrapper {
  width: 100%;
  height: 100%;
  padding: 4rem 1.875rem 1.875rem;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
}

.sidebar__close {
  position: absolute;
  top: 34px;
  right: 18px;
  margin: 15px;
  width: 45px;
  height: 45px;
  background-color: transparent;
  text-indent: -9999px;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  z-index: 99;
  border-radius: 9999px;
}

.sidebar.active_sidebar {
  opacity: 1;
  visibility: visible;
}

.sidebar__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.sidebar.active_sidebar .sidebar__overlay {
  opacity: 1;
  visibility: visible;
}

#sidebarGeneral .sidebar__wrapper {
  padding: 4rem 3rem;
  justify-content: space-between;
}

.sidebar__logo {
  display: block;
  margin-bottom: 2rem;
  /*text-align: center;*/
}

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

.sidebar__nav {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.sidebar__nav .btn {
  margin: 20px 0;
}

.sidebar__nav .menu > li.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.sidebar__nav .menu > li.menu-item > a {
  display: block;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.4;
  transition: var(--transition);
  position: relative;
  text-align: center;
  font-family: var(--terciary-font);
}

.sidebar__nav .menu > li.menu-item > a.btn {
  min-width: 225px;
  margin-top: 25px;
}

.sidebar__nav .footer__menu--social {
  justify-content: center;
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.sidebar__nav .footer__menu--social img {
  width: 45px;
  height: 45px;
}
/* --- General --- */

.btn {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 50px;
  width: fit-content;
  font-size: var(--text-content-size);
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  padding: 10px 26px 9px;
  z-index: 1;
  transition: var(--transition);
  height: fit-content;
}

.btn:before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 110%;
  z-index: -1; /* El pseudo-elemento se coloca debajo del contenido */
}

.btn:hover {
  color: #fff;
}

.btn:hover:before {
  transform: translateX(0);
}
.btn.-white,
.btn.-white-bg-blue {
  border: 1px solid #fff;
  color: #fff;
}
.btn.-white:before {
  border-bottom: 50px solid var(--secondary-color);
}
.btn.-white:hover {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}
.btn.-white-bg-blue:hover {
  border: 1px solid var(--primary-color);
}

section {
  padding: 70px 0;
  background-color: #fff;
  position: relative;
  z-index: 999;
}

/**
*	HOME
*	=======================================================================================================
**/

/** WELCOME	============== **/

#welcome {
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  position: relative;
	overflow: hidden;
}
#welcome .redes {
  display: none;
  flex-direction: column;
  gap: 8px;
  justify-content: end;
  align-items: center;
  width: 80px;
  padding-bottom: 60px;
}
#welcome .redes img {
  width: 15px;
  transition: var(--transition);
  height: 20px;
}
#welcome h2 strong {
  font-weight: 800;
}
#welcome .follow {
  color: #fff;
  transform: rotate(-90deg);
  margin-top: 75px;
}
#welcome .follow::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 1px;
  background-color: var(--quaternary-color);
  top: 10px;
  right: -50px;
}
#welcome-slider {
  overflow: hidden;
  height: 545px;
  width: 100%;
}
#welcome-slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
#welcome-slider .slick-slide {
  height: 545px;
}
#welcome-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-welcome {
  position: relative;
}
#welcome-txt-slider {
  width: 500px;
}
.welcome-txt {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: end;
  margin-left: 0px;
}

.slider-image {
  transform: scale(1); /* Imagen más pequeña al inicio */
  transition: transform 1s ease; /* Animación suave */
  transition-duration: 5s;
}

.slider-image.grow {
  transform: scale(1.1); /* Imagen a tamaño completo */
}

.controls-welcome {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
}
.btns-welcome {
  display: flex;
  flex-direction: row;
  gap: 3px;
  margin-right: 80px;
}
.btns-welcome img {
  width: 30px;
}
#nextButton {
  transform: rotate(-90deg);
}
#prevButton {
  transform: rotate(90deg);
}

/* Contenedor de la barra de progreso y los números */
.progress-wrapper {
  position: absolute;
  bottom: 30%;
  left: 0;
  transform: translateX(-35%) rotate(-90deg);
  display: none;
  align-items: center;
  color: #fff;
  z-index: 99;
}

/* Estilo para los números */
.start,
.end {
  font-size: 14px;
  margin: 0 5px;
}

/* Contenedor de la barra de progreso */
.progress-container {
  position: relative;
  width: 100px; /* Ancho de la barra */
  height: 1px;
  background-color: var(--quaternary-color); /* Fondo de la barra */
  margin: 0 5px;
}

/* Barra de progreso que se va llenando */
.progress-bar {
  width: 0%; /* Comienza en 0% */
  height: 100%;
  background-color: #fff;
  transition: width 0.4s ease;
}

.content-item-welcome {
    padding: 5px 5px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
}
.content-item-welcome img {
  width: 28px !important;
}
.overlay-triangle-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9;
  top: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #welcome .redes {
    display: flex;
  }
  .welcome-txt {
    width: 50%;
    margin-left: 100px;
  }
  .progress-wrapper {
    display: flex;
  }
  .overlay-triangle-slider {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}
.overlay-triangle-slider img {
  width: 455px !important;
  object-position: left;
}
.overlay-slider {
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgb(48, 1, 30);
  background: -moz-linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#30011e",endColorstr="#30011e",GradientType=1);
}
.block-blue {
  height: 80px;
  background-color: var(--secondary-color);
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 999;
}
.scroll-downs {
  position: absolute;
  top: -80px;
  right: 0%;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}
.mousey {
  width: 3px;
  padding: 10px 10px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 25px;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

.content-sec-wrapper {
  display: flex;
  flex-direction: column;
  height: 140vh;
  gap: 20px;
  min-height: 1058px;
}
.info-content-sec {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .block-blue {
    width: 94%;
  }
  .content-sec-wrapper {
    flex-direction: row;
  }
  .info-content-sec {
    width: 60%;
  }
  .scroll-downs {
    right: 6%;
  }
}
@media screen and (min-width: 1280px) {
  .content-sec-wrapper {
    flex-direction: row;
    height: 165vh;
  }
}

/* --- Sección Conócenos - Home ---*/
#conocenos-home {
  overflow-x: clip;
}

.inner-content {
  padding-left: 80px;
  position: relative;
}
.inner-content::before {
  content: "";
  width: 50px;
  height: 100%;
  background-image: url(../images/red-triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center left;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .inner-content {
    padding-left: 110px;
  }
  .inner-content::before {
    width: 70px;
  }
}
@media screen and (min-width: 1280px) {
}

.img-conocenos-home {
  position: relative;
}
.img-conocenos-home img {
  width: 1245px;
  padding-left: 40px;
}
.left-div {
  height: fit-content;
}

.right-div {
  width: 100%;
  height: 420px;
  position: relative;
  transition: transform 1s ease; /* Transición suave para el movimiento */
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .right-div {
    width: 45%;
  }
}
@media screen and (min-width: 1280px) {
}
/* Clase para mantener el div rojo fijo */
.right-div.sticky {
  position: sticky;
  top: 115px;
  right: 0;
}

/* Clase para mover el div rojo hacia la izquierda */
.right-div.move-left {
  transform: translateX(-100%); /* Mover hacia la izquierda */
}

#services {
  background-image: linear-gradient(
    to left,
    #fff 50%,
    var(--secondary-color) 50%
  );
  position: relative;
  padding: 0;
  overflow-x: clip;
}
#services .section-title h2 {
  color: #fff;
}
#services .section-title {
  border-bottom: 1px solid #fff;
}
.content input {
  display: none;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .content {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

.content .side-wrap .list {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--secondary-color);
}

.content .side-wrap .list label {
    cursor: pointer;
    height: 60px;
    line-height: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

#servicio-1:checked ~ .side-wrap .list label.servicio-1,
#servicio-2:checked ~ .side-wrap .list label.servicio-2,
#servicio-3:checked ~ .side-wrap .list label.servicio-3,
#servicio-4:checked ~ .side-wrap .list label.servicio-4,
#servicio-5:checked ~ .side-wrap .list label.servicio-5{
  color: #fff;
}

.content .slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 100%;
  transition: all 0.5s ease;
  background: var(--primary-color);
  padding: 30px 0;
}

#servicio-1:checked ~ .side-wrap .list .slider {
  top: 0;
}

#servicio-2:checked ~ .side-wrap .list .slider {
  top: 60px;
}

#servicio-3:checked ~ .side-wrap .list .slider {
  top: 120px;
}

#servicio-4:checked ~ .side-wrap .list .slider {
  top: 180px;
}
#servicio-5:checked ~ .side-wrap .list .slider {
  top: 240px;
}

.content .text-content {
  width: 100%;
  height: 100%;
  background: #fff;
}

.content .text {
  display: none;
}

.content .text-content .servicio-1 {
  display: block;
}

#servicio-1:checked ~ .text-content .servicio-1,
#servicio-2:checked ~ .text-content .servicio-2,
#servicio-3:checked ~ .text-content .servicio-3,
#servicio-4:checked ~ .text-content .servicio-4,
#servicio-5:checked ~ .text-content .servicio-5{
  display: block;
}

#servicio-2:checked ~ .text-content .servicio-1,
#servicio-3:checked ~ .text-content .servicio-1,
#servicio-4:checked ~ .text-content .servicio-1,
#servicio-5:checked ~ .text-content .servicio-1{
  display: none;
}

.content .side-wrap .list label:hover {
  color: #fff;
}
.side-wrap {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-color);
  padding: 40px 20px;
}
.grid-flota {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px 10px;
}
.item-flota {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item-flota img {
  width: 100%;
  max-width: 223px;
}
.content-txt-grid {
  display: flex;
  flex-direction: row;
  padding: 40px 25px;
  position: relative;
  justify-content: space-between;
}

.content-txt-grid li {
  list-style: disc;
  margin-left: 20px;
}
.content-txt-grid::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 100%;
  background-color: var(--tertiary-color);
  right: -480px;
  top: 0;
}
.content-txt-grid img {
  display: none;
  height: 114px;
  transform: rotate(-180deg);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .content .text-content {
    width: 80%;
  }
  .side-wrap {
    padding: 40px 0;
  }
  .grid-flota {
    grid-template-columns: repeat(3, 1fr);
    padding: 80px;
  }
      .content-txt-grid {
        padding: 40px 0 40px 80px;
        gap: 20px;
    }
  .content-txt-grid img {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

#clientes,
#partners {
  min-height: fit-content;
  z-index: 9;
}
#clientes .content-sec-wrapper,
#partners .content-sec-wrapper {
  height: auto;
  padding-left: 50px;
  height: auto;
  min-height: 300px;
  align-items: center;
  max-height: none;
}
#partners .content-sec-wrapper {
  flex-direction: column-reverse;
}
#clientes h2,
#partners h2 {
  width: 100%;
}
#clientes .inner-content,
#partners .inner-content {
  width: 100%;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 20px;
}
.item-clientes-grid {
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#clientes .item-clientes-grid{
	border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    color: #fff;
}
#clientes .img-contain,
#partners .img-contain {
  max-width: 163px;
}
.bus-up {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translate(-65%, -50%);
  z-index: 99;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #clientes h2,
  #partners h2 {
    width: 65%;
  }
  #clientes .inner-content {
    width: 60%;
  }
	#partners .inner-content {
    width: 65%;
  }
  #clientes .content-sec-wrapper,
  #partners .content-sec-wrapper {
    padding-left: 0;
    height: 100vh;
    min-height: 300px;
    max-height: 550px;
  }
  #partners .content-sec-wrapper {
    flex-direction: row;
  }
  .clientes-grid {
    width: 40%;
  }
  .bus-up {
    left: 50%;
    transform: translate(-57%, -50%);
  }
}
@media screen and (min-width: 1280px) {
      #clientes, #partners {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
}
.bus-up img {
  width: 158px;
}
#partners .info-content-sec {
  align-items: flex-end;
}
#partners .section-title {
  display: flex;
  justify-content: flex-end;
}

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  position: absolute;
  z-index: 9;
}
.circle:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: inherit;
  -webkit-animation: iconCircle 1.5s cubic-bezier(0.23, 1, 0.32, 1) both
    infinite;
  animation: iconCircle 1.5s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}
.circle.-start:before {
  border: 1px solid var(--primary-color);
}
.circle.-finish:before {
  border: 1px solid var(--secondary-color);
}
.circle.-start {
  bottom: -35px;
  left: -25px;
  background-color: var(--primary-color);
}
.circle.-finish {
  top: -35px;
  left: -25px;
  background-color: var(--secondary-color);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .circle.-start {
    left: 50%;
    transform: translateX(-50%);
  }
  .circle.-finish {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1280px) {
}

#certifications {
  background-color: var(--primary-color);
  position: relative;
  background-image: url(../images/img2.png);
  background-repeat: no-repeat;
  background-size: auto 390px;
  background-position: center bottom;
  padding: 0;
  display: flex;
  align-items: center;
}
.certifications-wrapper {
  display: flex;
  flex-direction: column;
  gap: 330px;
}
#certifications .certifications-wrapper{
	gap: 330px;
}
.content-certifications {
  width: 100%;
  background-color: var(--primary-color);
  position: relative;
}

.content-certifications::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/red-triangle.svg);
  background-repeat: no-repeat;
  background-position: right top;
  top: 0;
  right: -240px;
	display: none;
}
.content-certifications .section-title {
  padding-top: 80px;
}
.img-certifications {
  flex-grow: 1;
  background-color: #57595b;
  opacity: 0.3;
  margin: 30px 0;
  position: relative;
  border-radius: 0 15px 15px 0;
}
.img-certifications::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/forms.svg);
  background-repeat: no-repeat;
  background-position: left top;
  top: 0;
  left: -200px;
}
.grid-certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.item-grid-certifications img {
  max-width: 175px;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #certifications {
    background-size: 70%;
    background-position: right center;
  }
  .certifications-wrapper {
    flex-direction: row;
  }
  .content-certifications {
    width: 35%;
  }
	.content-certifications::after {
	display: flex;
}
}
@media screen and (min-width: 1280px) {
}
.grid-blog-home {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
}

.item-grid-blog-home {
  height: 230px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.item-grid-blog-home h3 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  font-size: var(--text-content-size);
  z-index: 9;
}
.item-grid-blog-home .degrade-layer {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: rgb(48, 1, 30);
  background: -moz-linear-gradient(
    0deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#30011e",endColorstr="#30011e",GradientType=1);
}
.item-grid-blog-home img {
  transition: var(--transition);
}
.item-grid-blog-home:hover img {
  transform: scale(1.1);
}
.item1 {
  grid-column: span 1;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  padding: 30px;
  font-size: var(--title);
  line-height: 1;
  letter-spacing: -0.3px;
  align-items: center;
  justify-content: center;
}

.item2 {
  grid-column: span 1; /* Ocupa 3 columnas */
}

.item3,
.item4,
.item6,
.item7 {
  grid-column: span 1; /* Ocupan 1 columna cada uno */
}

.item5 {
  grid-column: span 1; /* Ocupa 2 columnas */
}
.item7 {
  background-color: var(--secondary-color);
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 580px) {
	.grid-blog-home {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .grid-blog-home {
    grid-template-columns: repeat(5, 1fr);
  }
  .item2 {
    grid-column: span 3; /* Ocupa 3 columnas */
  }
  .item5 {
    grid-column: span 2; /* Ocupa 2 columnas */
  }
}
@media screen and (min-width: 1280px) {
}

footer {
  position: relative;
  background-color: #fff;
  z-index: 99;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 227px;
}

.trabaja-footer {
  width: 100%;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 0 15px 15px;
  font-size: 2rem;
  padding: 30px;
  gap: 15px;
  line-height: 1.1;
  text-align: center;
}
.trabaja-footer h3 {
  font-weight: 700;
  font-size: var(--title-xs);
}
.logo-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.logo-footer img {
  width: 75%;
  max-width: 350px;
}
.content-footer {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 99;
  align-items: center;
  padding: 20px;
  font-size: var(--text-content-size);
  text-align: center;
}

.content-footer .redes {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
.content-footer > div {
  flex: 1;
}
.content-footer a {
  color: #fff;
}
.content-footer li {
  margin: 20px 0;
}
.content-footer img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  object-position: center;
  margin-right: 5px;
}
.content-footer .redes img {
  width: 20px;
  height: 20px;
  margin-right: 0;
}
.content-footer .redes a {
  display: flex;
}
.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0px;
  font-size: var(--text-content-size);
}
.copyright > div {
  padding: 0 10px;
}
.copyright div:last-child {
  border-right: none;
}
.copyright img {
  width: 24px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer-wrapper {
    flex-direction: row;
  }
  .logo-footer {
    width: 275px;
    margin-bottom: 0;
  }
  .logo-footer img {
    width: 100%;
    max-width: 230px;
  }
  
  .content-footer {
    flex-direction: row;
    margin-left: 20px;
        padding: 0px 25px 0 20px;
    text-align: left;
  }
  .content-footer li {
    margin: 10px 0;
  }
  .content-footer .redes {
    justify-content: flex-start;
  }
  .trabaja-footer {
    width: 275px;
    border-radius: 0 15px 15px 0;
    align-items: flex-start;
    text-align: left;
  }
  .copyright {
    flex-direction: row;
  }
  .copyright > div {
    border-right: 1px solid var(--quaternary-color);
    padding: 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .logo-footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -205px;
    width: 100%;
    height: 100%;
    background-image: url(../images/form-red.svg);
    background-repeat: no-repeat;
  }
  .content-footer {
    margin-left: 95px;
    padding: 0px 25px 0 80px;
  }
}
/**
*	INTERNAS
*	=======================================================================================================
**/
.banner-intern {
  background-color: var(--secondary-color);
  margin-top: 80px;
  position: relative;
}
.banner-intern h2 {
  font-size: var(--text-content-size);
  color: #fff;
  font-weight: 600;
}

.bg-banner-intern-wrapper,
.banner-intern-wrapper {
  height: 85px;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .banner-intern h2 {
    font-size: var(--title-xs);
  }
  .bg-banner-intern-wrapper,
  .banner-intern-wrapper {
    height: 117px;
  }
}
@media screen and (min-width: 1280px) {
}

.bg-banner-intern-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.content-banner-intern {
  width: 55%;
  display: flex;
  align-items: center;
}
.imagen-banner-intern {
  width: 45%;
  position: relative;
}
.imagen-banner-intern::before {
  content: "";
  width: 93px;
  height: 100%;
  background-image: url(../images/triangle-banner.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  top: 0;
  left: -1px;
  position: absolute;
  z-index: 9;
}
.overlay-banner {
  width: 45%;
  position: absolute;
  height: 100%;
  background: rgb(48, 1, 30);
  background: -moz-linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(48, 1, 30, 1) 0%,
    rgba(48, 1, 30, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#30011e",endColorstr="#30011e",GradientType=1);
}

#redes-flotante {
  position: fixed;
  right: 0;
  z-index: 9999;
  top: 230px;
  display: none;
}
#redes-flotante .redes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: end;
  align-items: center;
  width: 60px;
  padding-bottom: 60px;
}
#redes-flotante .redes img {
  width: 15px;
  transition: var(--transition);
  height: 20px;
}
#redes-flotante .follow {
  color: var(--secondary-color);
  transform: rotate(-90deg);
  margin-top: 75px;
}
#redes-flotante .follow::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 1px;
  background-color: var(--quaternary-color);
  top: 10px;
  right: -50px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #redes-flotante {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	CONTACTO
*	=======================================================================================================
**/
.contacto-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 80px;
}
.img-contacto {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.content-main-contacto {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item-title-dato {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}
.item-title-dato img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  object-position: center;
  margin-right: 10px;
}
.datos-contacto {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.datos-contacto > div {
  flex: 1;
}
.datos-contacto h3 {
  font-weight: 700;
  font-size: var(--text-content-size);
  margin-bottom: 10px;
  color: var(--secondary-color);
  margin-bottom: 0;
}
.datos-contacto ul {
  margin-left: 30px;
}
.datos-contacto ul li {
  margin-bottom: 5px;
}
.item-dato {
  margin-bottom: 20px;
}
#form-contact {
  padding: 0;
}
#form-contact .container {
  max-width: 885px;
}
.map-contact {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 461px;
}
.map-contact iframe {
  width: 100%;
  height: 461px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .contacto-wrapper {
    flex-direction: row;
  }
  .content-main-contacto {
    width: 55%;
  }
  .img-contacto {
    width: 45%;
    height: 481px;
  }
  .datos-contacto {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	TRABAJA CON NOSOTROS
*	=======================================================================================================
**/
.trabaja-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.trabaja-wrapper > div:first-child {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.trabaja-wrapper > div:last-child {
  width: 100%;
  display: flex;
  align-items: center;
}

.trabaja-wrapper li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
.trabaja-wrapper li::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.trabaja-wrapper li:nth-child(odd)::before {
  background-image: url(../images/red-check.svg);
}
.trabaja-wrapper li:nth-child(even)::before {
  background-image: url(../images/blue-check.svg);
}
.trabaja-wrapper li:last-child {
  margin-bottom: 0;
}
#banner-trabaja {
  padding: 0;
}
.img-banner-trabaja {
  width: 100%;
  height: 295px;
  position: relative;
}

#form-trabaja .container {
  max-width: 885px;
}
.triangle-overlay {
  position: absolute;
  height: 100%;
  width: 50%;
  background-image: url(../images/triangle-degrade.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.triangle-overlay img {
  width: 85px;
  margin-left: 50px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .trabaja-wrapper {
    flex-direction: row;
  }
  .trabaja-wrapper > div:first-child {
    width: 55%;
  }
  .trabaja-wrapper > div:last-child {
    width: 45%;
  }
  .img-banner-trabaja {
    height: 644px;
  }
  .triangle-overlay img {
    width: 139px;
    margin-left: 80px;
  }
}
@media screen and (min-width: 1280px) {
}


/**
*	Blog
*	=======================================================================================================
**/
.main-blog-wrapper{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main-blog-wrapper article{
  width: 100%;
}
.main-blog-wrapper article .section-title {
  margin-bottom: 0;
  border-bottom: none;
}
.aside-blog{
  width: 100%;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: #fff;
    height: fit-content;
    position: sticky;
    top: 80px;
}
.aside-blog section{
	    background-color: transparent;
    padding: 35px 0;
}
.aside-blog h2{
	    font-size: var(--text-content-size);
    font-weight: 700;
    margin-bottom: 10px;
}
.aside-blog .widget_block:first-child{
	border-bottom: 1px solid #fff;
    padding-top: 0;
}
.cat-item{
	margin-bottom:10px;
}
.grid-blog{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:20px;
}

.item-grid-blog{
  width: 100%;
  height: 260px; 
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .main-blog-wrapper{
    flex-direction: row;
  }
  .main-blog-wrapper article{
    width: 75%;
  }
  .aside-blog{
    width: 25%;
  }
  .grid-blog{
    grid-template-columns: repeat(2, 1fr);
  }
  .item-grid-blog{
    height: 334px; 
  }
}
@media screen and (min-width: 1280px) {
}
.item-grid-blog img{
  transition: var(--transition);
}
.item-grid-blog:hover img{
  transform: scale(1.1);
}
.item-grid-blog .overlay-item-grid-blog{
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  z-index: 8;
  background: rgb(48, 1, 30);
    background: -moz-linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    background: linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#30011e",endColorstr="#30011e",GradientType=1);
}
.content-item-grid-blog{
  display: flex;
    flex-direction: row;
    height: 78px;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    gap: 10px;    
}
.content-item-grid-blog .triangle img{
  height: 31px;
}
.content-item-grid-blog > div:first-child{
  width: 100%;
  padding-left: 20px;
}
.content-item-grid-blog > div{
  flex-grow: 1;
}
.content-item-grid-blog h3{
  font-size: var(--text-content-size);
  font-weight: 700;
  color: #fff;
}
.content-item-grid-blog .date{
  background-color: var(--primary-color);
    color: #fff;
    width: 75px;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    flex: none;
    border-radius: var(--border-radius) 0 0 0;
}

/**
*	SINGLE - BLOG
*	=======================================================================================================
**/
.header-single{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.header-single .title-article h1{
  font-size: var(--title-xs);
}
.date-article{
  display: flex;
  flex-direction: row;
  width: 75px;
  flex:none;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  text-align: center;
  min-height: 78px;
}
.content-article p{
  text-align: justify;
  font-size: var(--text-content-size);
}
.img-article{
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .img-article{
    height: 580px;
  }
}
@media screen and (min-width: 1280px) {
}


/**
*	NOSOTROS
*	=======================================================================================================
**/
.main-nosotros-wrapper{
  height: 522px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow: hidden;
}
.bloque-nosotros{
  width: 758px;
    min-height: 188px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column-reverse;    
    gap: 20px;
    padding: 40px 30px 20px;
    align-items: center;
    justify-content: center;
    height: fit-content;
    color: #fff;
    line-height: 1.2;
}


.circle.-relative {
  position: relative;
  flex: none;
  left: auto;
  bottom: auto;
  transform: translateX(0%);
}
.bloque-nosotros .circle::after {
  content: "";
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 0;
    height: 500px;
    border-left: 2px dashed #fff;
}
.img-bloque-nosotros{
  width: 100%;
  height: 60%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.certifications-wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.certifications-wrapper .section-title{
  border-bottom: 0;
  margin-bottom: 40px;
  padding-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	.certifications-wrapper .section-title{
	  text-align: left;
	}
}
@media screen and (min-width: 1280px) {
}

.certifications-wrapper>div{
  width: 100%;
}
.item-grid-certifications{
	text-align: center;
}
.item-certification{
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
    border-bottom: 1px solid var(--quaternary-color);
}
.item-certification:last-child{
  border:0;
}
.item-certification h3{
  font-size: var(--text-content-size);
  font-weight: 700;
}
.item-certification span{
  font-size: var(--title-xs);
  color: var(--secondary-color);
  display: flex;
  margin-top: 5px;
}
.item-certification img{
  width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 160px;
    max-height: 111px;
}
.description-certifications{
  margin-bottom: 40px;
}
.content-certifications-wrapper{
  position: relative;
}
.content-certifications-wrapper::before{
  content: "";
    width: 800px;
    height: 390px;
    position: absolute;
    bottom: -40px;
    left: -880px;
    background-image: url(../images/bus-100-iz.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 350px;
}
#banner-nosotros{
  position: relative;
}
.img-banner-nosotros{
  position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    bottom: 0;
    left: 0;
}

#banner-nosotros .overlay-triangle-slider {
  width: 100%;
  background-color: var(--secondary-color);
    opacity: 0.5;
}
#banner-nosotros .overlay-triangle-slider img {
  width: 100%!important;
  object-position: left;
  top: -450px;
  position: relative;
}
.banner-nosotros-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 450px;
  z-index: 99;
  position: relative;
}
.content-banner-nosotros{
  width: 100%;
  color: #fff;
}
.valores-grid{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 60px;
}


.content-item-valores li{
  margin-bottom: 10px;
}
#nosotros-final{
  background-color: var(--primary-color); 
  overflow: hidden;
  position: relative;
}
.nosotros-final-wrapper{
  min-height: 487px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bloque-nosotros-final{
  width: 100%;
  min-height: 188px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
  align-items: flex-end;
  justify-content: center;
  height: fit-content;
  color: #fff;
  line-height: 1.2;
  z-index: 9;
}
.bloque-nosotros-final .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  width: 0;
  height: 500px;
  border-left: 2px dashed #fff;
}
.img-nosotros-final{
  position: absolute;
  width: 50%;
  height: 100%;
  top:0;
  right: 0;
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .bloque-nosotros{
      flex-direction: row;
      gap: 40px;
    padding: 40px 50px;
  }
  .img-bloque-nosotros{
    height: 82%;
  }
  .certifications-wrapper{
    flex-direction: row;
  }
  #certifications-nosotros .certifications-wrapper>div{
    width: 50%;
  }
	.certifications-wrapper .content-certifications{
		width: 40%;
	}
	.certifications-wrapper .img-certifications{
		width: 60%;
	}
  .certifications-wrapper .section-title{
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .content-banner-nosotros{
    width: 45%;
  }
  #banner-nosotros .overlay-triangle-slider {
    width: 60%;
  }
  #banner-nosotros .overlay-triangle-slider {
    width: 100%;
    background-color: transparent;
      opacity: 1;
  }
  .valores-grid{
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
  }
  .bloque-nosotros-final{
    flex-direction: row;
    width: 75%;
    padding: 40px 50px;
  }
  .img-nosotros-final{
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	Blog
*	=======================================================================================================
**/
.main-blog-wrapper{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main-blog-wrapper article{
  width: 100%;
}
.main-blog-wrapper article .section-title {
  margin-bottom: 0;
  border-bottom: none;
}
.aside-blog{
  width: 100%;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: #fff;
    height: fit-content;
    position: sticky;
    top: 80px;
}
.grid-blog{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:20px;
}

.item-grid-blog{
  width: 100%;
  height: 260px; 
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}
@media screen and (min-width: 580px) {
	.grid-blog{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .main-blog-wrapper{
    flex-direction: row;
  }
  .main-blog-wrapper article{
    width: 75%;
  }
  .aside-blog{
    width: 25%;
  }
  
  .item-grid-blog{
    height: 334px; 
  }
}
@media screen and (min-width: 1280px) {
}
.item-grid-blog img{
  transition: var(--transition);
}
.item-grid-blog:hover img{
  transform: scale(1.1);
}
.item-grid-blog .overlay-item-grid-blog{
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  z-index: 8;
  background: rgb(48, 1, 30);
    background: -moz-linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    background: linear-gradient(0deg, rgba(48, 1, 30, 1) 0%, rgba(48, 1, 30, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#30011e",endColorstr="#30011e",GradientType=1);
}
.content-item-grid-blog{
      display: flex;
    flex-direction: row;
    height: 78px;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    gap: 10px;
    width: 100%;   
}
.content-item-grid-blog .triangle img{
  height: 31px;
}
.content-item-grid-blog > div:first-child{
  width: 100%;
  padding-left: 20px;
}
.content-item-grid-blog > div{
  flex-grow: 1;
}
.content-item-grid-blog h3 {
    font-size: var(--text-content-size);
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    max-height: 57px;
}
.cat-item-1 {
    display: none;
}
.content-item-grid-blog .date{
  background-color: var(--primary-color);
    color: #fff;
    width: 75px;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    flex: none;
    border-radius: var(--border-radius) 0 0 0;
}

/**
*	SINGLE - BLOG
*	=======================================================================================================
**/
.header-single{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.header-single .title-article h1{
  font-size: var(--title-xs);
}
.date-article{
  display: flex;
  flex-direction: row;
  width: 75px;
  flex:none;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  text-align: center;
  min-height: 78px;
}
.content-article p{
  text-align: justify;
  font-size: var(--text-content-size);
}
.img-article{
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .img-article{
    height: 580px;
  }
}
@media screen and (min-width: 1280px) {
}


/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

/* LOADER OVERLAY */

.loader-wrap{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.loader-wrap.active{
  animation: 1000ms ease 1000ms 1 normal both running fade-in;
}

.loader-wrap.hide{
  display:none;
}
.loader-logo{
position: absolute;
z-index: 9999;
}


@keyframes scaleAnimation {
  0% {
      transform: scale(0.8);
  }  
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

.loader-logo img{
  width:200px;
  margin: 5px;
}

.loader{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display:flex;
  align-items: center;
  justify-content: center;
  text-indent:0;
  font-size:0;
  opacity:0;
  visibility:hidden;
}

#page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

#page-transition::before,
#page-transition::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%; 
  transition: transform 1s ease; /* Ajusta la duración y el efecto */
}

#page-transition::before {
  background-color: var(--primary-color);  
  left: 0;
  transform: translateX(0);
  clip-path: polygon(0% -80%, 100% 50%, 0% 180%);
}

#page-transition::after {
  right: 0;
  transform: translateX(0);
  background-color: var(--secondary-color);  
  clip-path: polygon(0% 115%, 50% 50%, 12% 0%, 100% 0%, 100% 100%);
}

/* Oculta los triángulos para mostrar el contenido */
.page-loaded #page-transition::before {
  transform: translateX(-100%);
  transition-delay: 1s;
  transition-duration: 2s;
}

.page-loaded #page-transition::after {
  transform: translateX(100%);
  transition-delay: 1s;
  transition-duration: 2s;
}
/* .page-loaded #loader-wrap{
  transition: transform 2s ease; 
  opacity: 1;
  visibility: visible;
} */


@keyframes fade-in {
  0% {
      opacity: 1;
  }

  to {
      opacity: 0;
  }
}