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

  --gris-petro: #728082;
  --rojo-petro: #fc1723;
  --gris-oscuro: #27292a;
  --gris-claro: #c6d0d2;

  --transition: all 0.4s ease;
  --box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.15);
  --border-radius: 0.5rem;

  --title: 2.3rem;
  --text-content-size: 1rem;
  --text-content-size-s: 14px;
}
@media screen and (min-width: 580px) {
  :root {
    --title: 2.6rem;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

body {
  font: 400 var(--base-size-font) var(--primary-font);
  line-height: 1.5;
  margin: 0;
  color: var(--gris-oscuro);
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.5;
  color: var(--gris-petro);
}
.title {
  margin-bottom: 40px;
  position: relative;
}
.title h1,
.title h2,
.title h3,
.title h4 {
  font: 700 var(--title) var(--primary-font);
  line-height: 1.1;
  position: relative;
  padding: 19px 0 0 15px;
  text-transform: uppercase;
}
.title p {
  padding: 20px 0 0 0;
  margin-bottom: 0;
}
.title-line::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 1px;
  background-color: var(--gris-claro);
  top: 68px;
  left: -500px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .title h1,
  .title h2,
  .title h3,
  .title h4 {
    padding: 35px 0 0 35px;
  }
  .title p {
    padding: 20px 0 0 35px;
  }
}
@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: 1320px;
  z-index: 1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
}

/* --- General --- */

.btn {
  position: relative;
  cursor: pointer;
  font-size: var(--text-content-size);
  transition: var(--transition);
  padding: 7px 40px 5px;
  width: fit-content;
  display: flex;
  align-items: center;
  min-height: 66px;
  overflow: hidden;
  min-width: 185px;
  max-width: max-content;
  height: fit-content;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  justify-content: center;
}
.btn span {
  z-index: 999;
}
.btn.-red {
  background-color: var(--rojo-petro);
  color: #fff;
}
.btn.-white {
  background-color: #fff;
  color: var(--rojo-petro);
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  width: 15px;
  height: 15px;
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: var(--transition);
  transform: translateY(-50%);
  z-index: 9;
  opacity: 0;
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: var(--transition);
}
.btn.-red::before {
  background-color: #a80d15;
}
.btn.-white::before {
  background-color: var(--rojo-petro);
}
.btn:hover {
  padding: 7px 55px 5px 25px;
}
.btn.-white:hover {
  color: #fff;
}
.btn:hover::after {
  right: 25px;
  opacity: 1;
}
.btn:hover::before {
  height: 100%;
}

section {
  padding: 60px 0;
  overflow-x: clip;
  position: relative;
}
.last-section {
  padding-bottom: 100px;
}
main {
  margin-top: 90px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  main {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  transition: var(--transition);
  background-color: #fff;
}
header.activeFixed {
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  header {
    top: 0;
    box-shadow: none;
  }
  header.activeFixed {
    top: -50px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HEADER TOP	============== **/
.header-top {
  color: var(--gris-petro);
  display: none;
  background-color: #f1f3f8;
  font-size: var(--text-content-size-s);
}
.topbar__wrapper {
  min-height: 50px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__datos {
  gap: 40px;
}
.header__redes {
  gap: 10px;
}
.header__datos > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__datos > a > img {
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header-top {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** HEADER MIDDLE	============== **/
.header-middle__wrapper {
  justify-content: space-between;
  height: 90px;
  align-items: center;
  background-color: #fff;
  position: relative;
  transition: var(--transition);
}
.logo-content {
  flex-direction: row;
  width: 50%;
}
.logo {
  width: 200px;
  transition: var(--transition);
  position: relative;
}
header.activeFixed .header-middle__wrapper {
  height: 75px;
}
header.activeFixed .logo {
  width: 185px;
}
.item-header .menu {
  display: none;
  align-items: center;
  gap: 46px;
  height: 100%;
  font-weight: 600;
}
.item-header.header__menu {
  background-color: transparent;
  height: 100%;
  padding: 0;
  border-radius: 150px;
  gap: 10px;
  align-items: center;
  width: 40%;
}
.item-header.header__menu:last-child {
  justify-content: flex-end;
}
.categories-menu {
  display: none;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  padding: 38px 0;
  transition: var(--transition);
  position: relative;
  display: flex;
}
header.activeFixed .item-header .menu li > a {
  padding: 26px 0;
}
.item-header .menu li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 6px;
  background-color: var(--rojo-petro);
  bottom: 0;
  left: 50%;
  transition: var(--transition);
  transform: translateX(-50%);
}
.item-header .menu li:hover::before,
.item-header .menu li.current-menu-item::before {
  width: 60px;
}
@media screen and (min-width: 580px) {
  .item-header.header__menu {
    gap: 35px;
    width: 70%;
  }
  .logo-content {
    flex-direction: row;
    width: 30%;
  }
  .item-header.header__menu:last-child {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 980px) {
  .item-header .menu {
    display: flex;
  }
  .item-header.header__menu {
    height: 100%;
    gap: 70px;
    align-items: center;
  }
  .logo {
    width: 255px;
  }
  .header-middle__wrapper {
    height: 100px;
  }
  .categories-menu {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--rojo-petro);
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  height: 54px;
  padding-right: 20px;
}
.dropdown-btn-red {
  background-color: #c90b15;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
  margin-right: 7px;
}
.dropdown-btn-red img {
  width: 19px;
}
.btn-dropdown-white {
  width: 10px;
}
.dropdown-menu {
  position: absolute;
  top: 78px;
  left: 0;
  background: #fff;
  width: 342px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
header.activeFixed .dropdown-menu {
  top: 65px;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--gris-oscuro);
  text-decoration: none;
  min-height: 52px;
  border-bottom: 1px solid var(--gris-claro);
  transition: var(--transition);
}
.dropdown-menu li:last-child a {
  border-bottom: none;
}
.dropdown-menu li a img {
  width: 28px;
  height: 23px;
}

.dropdown-menu li a:hover {
  background: var(--rojo-petro);
  color: #fff;
}
.icono_rojo_menu_servicios {
  display: flex;
}
.icono_blanco_menu_servicios {
  display: none;
}
.dropdown-menu li a:hover .icono_blanco_menu_servicios {
  display: flex;
}
.dropdown-menu li a:hover .icono_rojo_menu_servicios {
  display: none;
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header__toggle img {
  width: 100%;
}
.sidebarIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  top: 22px;
  left: 15px;
  height: 21px;
  width: 22px;
  margin-bottom: 0;
}
.spinner {
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--gris-oscuro);
}
.horizontal {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
.diagonal.part-1 {
  position: relative;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--gris-oscuro);
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  top: 0;
  z-index: 99999;
  visibility: hidden;
}
#overlay.active {
  opacity: 0.7;
  visibility: visible;
}
#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: #fff;
  padding-top: 35px;
  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: 220px;
}
#sidebar .menu-sidebar,
#sidebar .menu-sidebar-2 {
  font-family: var(--secondary-font);
  margin-bottom: 30px;
  width: 100%;
}
#sidebar .menu-sidebar li,
#sidebar .menu-sidebar-2 li {
  position: relative;
}
#sidebar .menu-sidebar li a {
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  transition: var(--transition);
  position: relative;
  justify-content: flex-start;
  text-align: left;
  font-family: var(--primary-font);
  padding: 10px 15px 10px 0;
}
#sidebar .menu-sidebar-2 li a {
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  transition: var(--transition);
  position: relative;
  justify-content: flex-start;
  text-align: left;
  font-family: var(--primary-font);
  padding: 5px 0;
  gap: 15px;
  align-items: center;
}
#sidebar .menu-sidebar-2 .icono_rojo_menu_servicios {
  width: 35px;
  height: 35px;
  object-fit: contain;
  object-position: center;
}
#sidebar .menu-sidebar li:hover > a {
  padding: 10px 0 10px 15px;
}
#sidebar .menu-sidebar li.current-menu-item::before,
#sidebar .menu-sidebar li:hover::before {
  opacity: 1;
}
/* #sidebar .menu-sidebar li.current-menu-item > a {
  padding: 10px 0 10px 15px;
} */
#sidebar .menu-sidebar {
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid var(--gris-claro);
}
#sidebar .menu-sidebar-2 {
  padding-bottom: 40px;
  margin-bottom: 20px;
  overflow-y: auto;
  height: 305px;
}
.menu-menu-responsive-container {
  width: 100%;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 10px;
  align-items: center;
}
.sidebar-wrapper .row {
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.sidebar-wrapper .col-50 {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  /*   padding: 0 0 0 20px; */
}
.content-sidebar {
  padding: 40px 0;
  align-items: start;
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}
.redes-img {
  gap: 10px;
  justify-content: center;
}
.redes-img a {
  width: 40px;
  height: 30px;
  display: flex;
}
.btn-sidebar {
  width: 100%;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__toggle {
    display: none;
  }
  #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: -30px;
  right: 6px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}

/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  position: relative;
  overflow-x: clip;
  font-size: 0.9rem;
  background-color: var(--gris-oscuro);
  color: #fff;
}
.iso-footer {
  width: 194px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-wrapper__logo {
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: center;
}
.logo-footer {
  width: 255px;
}
.footer__redes {
  align-items: center;
  gap: 25px;
  color: #d3d3d3;
}
.footer__redes img {
  display: flex;
  width: 20px;
  height: 20px;
}

.footer-content__item h4 {
  color: var(--rojo-petro);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-wrapper__content {
  gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  align-items: center;
}
.footer-wrapper__content img {
  width: 15px;
  height: 15px;
  margin: 3px 0 0 0;
}
.footer-wrapper__content a {
  gap: 7px;
  display: flex;
}
@media screen and (min-width: 580px) {
  .footer-content__item {
    max-width: 50%;
  }
}
@media screen and (min-width: 980px) {
  .footer-wrapper__logo {
    width: 25%;
    align-items: flex-start;
  }
  .footer-wrapper__content {
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
    width: 75%;
    text-align: left;
    align-items: flex-start;
  }
  .footer-content__item {
    max-width: 235px;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER - BOTTOM	============== **/
.footer-bottom {
  flex-direction: column;
  justify-content: space-between;
  font-size: var(--text-content-size-s);
  padding: 30px 0;
  min-height: 80px;
  align-items: center;
  border-top: 1px solid #595957;
  gap: 20px;
}
.footer__wrapper {
  gap: 50px;
  padding: 70px 0 50px;
  flex-direction: column;
  align-items: center;
}
.libro-footer {
  gap: 10px;
  align-items: center;
  line-height: 1.3;
}
.libro-footer img {
  height: 31px;
}
.magenta-agencia {
  gap: 5px;
  align-items: center;
}
.magenta-agencia img {
  width: 16px;
}
.copyright {
  flex-direction: column;
  text-align: center;
  gap: 5px;
}
.copyright span {
  display: none;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer-bottom {
    flex-direction: row;
    padding: 10px 0;
    align-items: center;
    gap: 0;
  }
  .copyright {
    flex-direction: row;
  }
  .copyright span {
    display: flex;
  }
  .footer__wrapper {
    gap: 150px;
    padding: 70px 0 50px;
    flex-direction: row;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

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

/** HOME - WELCOME	============== **/
#welcome {
  padding: 0;
  position: relative;
}
.welcome-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: clip;
}
.welcome-lines__wrapper {
  height: 720px;
  flex-direction: column;
  justify-content: flex-end;
}
.block-bottom {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 100%;
  height: 100px;
  position: relative;
}
.block-bottom::after {
  position: absolute;
  content: "";
  width: 700px;
  height: 1px;
  background-color: #fff;
  top: -1px;
  right: -80px;
}
.welcome__buttons {
  flex-direction: row;
  justify-content: flex-end;
}
.welcome__buttons button {
  width: 50px;
  height: 50px;
}
#welcome-txt {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
#slider-welcome-txt {
  height: 620px;
}
#slider-welcome-txt .slick-list {
  height: 100%;
}
#slider-welcome-txt .slick-track {
  height: 100%;
}
#welcome .slick-dots {
  bottom: 10px;
}
#welcome .slick-dots li button:before {
  font-size: 18px;
  opacity: 1;
  color: #ffffff;
}
#welcome .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--secondary-color);
}
#welcome .slick-dots li {
  margin: 2px;
}
#welcome .slick-dotted.slick-slider {
  margin-bottom: 0;
  overflow: hidden;
}
.slider-welcome__item {
  height: 720px;
  position: relative;
}
.slider-welcome__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  pointer-events: none;
}
.slider-welcome__item img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.welcome-item-txt__wrapper {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 100%;
  align-items: flex-start;
  padding-bottom: 30px;
}
.txt-empty {
  position: absolute;
  width: 832px;
  top: 110px;
  left: -85px;
  z-index: 0;
  display: none;
}
.welcome-item-txt__wrapper h1,
.welcome-item-txt__wrapper h2 {
  color: #fff;
  font-size: 2.4rem;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}
.welcome-item-txt__wrapper h1 strong {
  color: var(--tertiary-color);
}
.welcome-item-txt__wrapper p {
  color: #fff;
  width: 100%;
  font-size: var(--text-content-size-s);
}
.welcome-item-txt__wrapper .btns-items-sliders {
  margin-top: 25px;
  gap: 20px;
  flex-direction: column;
}
.welcome-item-txt__wrapper .btns-items-sliders .btn {
  min-height: 60px;
}

@media screen and (min-width: 580px) {
  .welcome-item-txt__wrapper h1,
  .welcome-item-txt__wrapper h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .welcome-item-txt__wrapper {
    justify-content: flex-end;
    width: 70%;
    margin-left: 50px;
    padding-bottom: 40px;
    text-align: left;
    align-items: flex-start;
  }
  .welcome-item-txt__wrapper p {
    font-size: var(--text-content-size);
  }
  .welcome-item-txt__wrapper .btns-items-sliders {
    flex-direction: row;
  }
  .welcome-lines__wrapper {
    border-left: 1px solid #fff;
  }
  .block-bottom::after {
    width: 500px;
    right: -500px;
  }
  .welcome-item-txt__wrapper .btns-items-sliders .btn {
    min-height: 66px;
  }
  .txt-empty {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .slider-welcome__item {
    height: 720px;
  }
  #slider-welcome-txt {
    height: 540px;
  }
  .welcome-item-txt__wrapper {
    height: 540px;
    margin-left: 135px;
    justify-content: flex-end;
    padding-bottom: 40px;
  }
  .block-bottom {
    height: 125px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - NUMBERS	============== **/
#numbers {
  padding: 0 0 60px;
  margin: -30px 0 0;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.15);
  max-width: 818px;
  background-color: #fff;
  margin: 0 auto;
}
.numbers-grid__item {
  flex-direction: column;
  align-items: center;
  height: 168px;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.numbers-grid__item::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 1px;
  right: 50%;
  bottom: 0;
  background-color: var(--gris-claro);
  transform: translateX(50%);
}
.numbers-grid__item .icon {
  width: 25px;
  height: 25px;
}
.numbers-grid__item p {
  font-size: var(--text-content-size-s);
  margin-bottom: 0;
}
.numbers-grid__item span {
  font-size: var(--title);
  text-align: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 580px) {
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .numbers-grid__item::after {
    width: 1px;
    height: 75%;
    right: 0;
    background-color: var(--gris-claro);
    bottom: auto;
  }
}
@media screen and (min-width: 980px) {
  #numbers {
    margin: -85px 0 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - SERVICES	============== **/
#services {
  position: relative;
  z-index: 5;
  scroll-margin-top: 90px;
}
#services .title {
  margin-bottom: 70px;
}
.img-title-txt {
  height: 40px;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
#carousel-ser {
  min-height: 310px;
}
.carousel-ser-item {
  border: 1px solid var(--gris-claro);
  padding: 20px 30px;
  margin: 0 15px;
  height: 298px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  background-color: var(--rojo-petro);
}
.carousel-ser-item-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.carousel-ser-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  background-color: var(--rojo-petro);
  transition: var(--transition);
  z-index: 0;
}
.carousel-ser-item:hover {
  padding: 20px 30px;
  height: 298px;
}
.carousel-ser-item:hover::after {
  height: 100%;
}
.carousel-ser-item h3 {
  font-size: var(--text-content-size);
  font-weight: 700;
  transition: var(--transition);
  color: #fff;
  margin-bottom: 20px;
}
.carousel-ser-item:hover h3 {
  color: #fff;
}
.carousel-ser-item p {
  font-size: 0.9rem;
  color: #fff;
  opacity: 1;
  transition: var(--transition);
}
.carousel-ser-item:hover p {
  opacity: 1;
}
.ser-item-icons {
  margin-bottom: 20px;
  display: flex;
}
.ser-item-icons img {
  width: 45px;
  height: 45px;
}
.ser-item-icons img:first-child {
  transform: scale(0);
  transition: var(--transition);
  width: 0;
}
.ser-item-icons img:last-child {
  transform: scale(1);
  transition: var(--transition);
  width: 45px;
}
.carousel-ser-item:hover .ser-item-icons img:last-child {
  transform: scale(1);
  width: 45px;
}
.carousel-ser-item:hover .ser-item-icons img:first-child {
  transform: scale(0);
  width: 0;
}
.btn-ser {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  right: -18px;
  bottom: -7px;
  transition: var(--transition);
}
.carousel-ser-item:hover .btn-ser {
  box-shadow: var(--box-shadow);
}
button.slick-prev.slick-arrow {
  left: -15px;
}
button.slick-next.slick-arrow {
  right: -15px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .img-title-txt {
    height: 65px;
  }
  .carousel-ser-item {
    background-color: #fff;
    height: 235px;
    padding: 30px 30px;
  }
  #carousel-ser button.slick-prev.slick-arrow {
    padding-bottom: 90px;
  }
  #carousel-ser button.slick-next.slick-arrow {
    padding-bottom: 90px;
  }
  button.slick-prev.slick-arrow {
    left: -25px;
  }
  button.slick-next.slick-arrow {
    right: -25px;
  }
  .carousel-ser-item h3 {
    color: var(--gris-oscuro);
  }
  .carousel-ser-item p {
    opacity: 0;
  }
  .ser-item-icons img:first-child {
    transform: scale(1);
    transition: var(--transition);
    width: 45px;
  }
  .ser-item-icons img:last-child {
    transform: scale(0);
    transition: var(--transition);
    width: 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - PRESENTACIÓN	============== **/
.pres-home__wrapper {
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.pres-home__wrapper::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 300px;
  background-color: var(--gris-claro);
  top: -250px;
  left: 135px;
  z-index: -1;
}
.pres-home__wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--gris-claro);
  bottom: -1px;
  right: -500px;
}
.pres_home__img {
  width: 100%;
}
.pres-home__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.pres-home-content-cont .btn {
  margin-top: 40px;
}
#pres-home .isologo {
  position: absolute;
  width: 202px;
  height: 202px;
  top: -50px;
  left: -85px;
  animation: girar 10s linear infinite;
  z-index: -1;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 580px) {
  .pres-home__wrapper {
    flex-direction: row;
    gap: 40px;
    border-bottom: 1px solid var(--gris-claro);
  }

  .pres-home-content-cont {
    padding-left: 40px;
  }
}
@media screen and (min-width: 980px) {
  .pres-home__wrapper {
    flex-direction: row;
    gap: 115px;
  }
  .pres_home__img {
    width: 50%;
  }
  .pres-home__content {
    width: 50%;
    padding: 40px 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - EQUIPOS	============== **/
#equipos {
  scroll-margin-top: 90px;
}
.equipos-wrapper {
  gap: 40px;
}
.equipos-wrapper__btns {
  display: none;
  width: 20%;
  font-size: 16px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 80px;
}
.equipos-wrapper__btns button {
  display: flex;
}
.equipo-btn-single {
  align-items: center;
  gap: 10px;
}
#carousel-equipos {
  width: 100%;
  position: relative;
}
.carousel-equipos-item {
  border: 1px solid var(--gris-claro);
  margin: 0 10px;
  height: fit-content;
}
.equipo-item__img {
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 7 / 4;
  display: flex;
}
.equipo-item__content {
  padding: 15px 28px;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.equipo-item__content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background-color: var(--rojo-petro);
  transition: var(--transition);
  z-index: 0;
}
.equipo-item__content h3 {
  font-size: var(--text-content-size);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.btn-equipo {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  flex: none;
}
.carousel-equipos-item:hover .btn-equipo {
  box-shadow: var(--box-shadow);
}
.carousel-equipos-item:hover .equipo-item__content::after {
  height: 100%;
}
.carousel-equipos-item:hover h3 {
  color: #fff;
}
.slick-dots {
  bottom: -50px;
}
.slick-dots li button:before {
  font-size: 15px;
  color: var(--gris-claro);
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--rojo-petro);
}
.slick-dots li {
  margin: 3px;
}
.slick-prev:before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/left-icon.svg);
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.slick-next:before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/right-icon.svg);
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 580px) {
  #carousel-equipos::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 300px;
    background-color: var(--gris-claro);
    top: -286px;
    right: 120px;
    z-index: -1;
  }
}
@media screen and (min-width: 980px) {
  #carousel-equipos {
    width: 80%;
  }
  .equipos-wrapper__btns {
    display: flex;
  }
  .carousel-equipos-item {
    margin: 0 25px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - CLIENTES	============== **/
#clientes .title {
  margin-bottom: 70px;
}
#carousel-clientes .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-clientes-item {
  height: 70px;
}
.carousel-clientes-wrapper {
  position: relative;
}
.carousel-clientes-wrapper .swiper-button-prev,
.carousel-clientes-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 18px;
  height: 18px;
  left: -15px;
  z-index: 10;
  cursor: pointer;
}
.carousel-clientes-wrapper .swiper-button-next {
  left: auto;
  right: -15px;
}
.carousel-clientes-wrapper .swiper-button-prev::after,
.carousel-clientes-wrapper .swiper-button-next::after {
  content: "";
  width: 18px;
  height: 18px;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.carousel-clientes-wrapper .swiper-button-prev::after {
  background-image: url(../images/left-icon.svg);
}
.carousel-clientes-wrapper .swiper-button-next::after {
  background-image: url(../images/right-icon.svg);
}
@media screen and (min-width: 580px) {
  .carousel-clientes-wrapper .swiper-button-prev {
    left: -25px;
  }
  .carousel-clientes-wrapper .swiper-button-next {
    right: -25px;
  }
}

/** HOME - TRABAJA	============== **/
.trabaja-home-bg {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
}
.trabaja-home-bg-res {
  display: flex;
}
.trabaja-home__wrapper {
  height: 316px;
  padding: 50px 0 0 0;
  flex-direction: column;
}
.trabaja-home__img {
  width: 100%;
}
.trabaja-home__content {
  width: 100%;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.trabaja-home__content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gris-oscuro);
  line-height: 1.1;
}
.trabaja-home__content p {
  color: var(--gris-oscuro);
}
#trabaja-home .line-1 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #fff;
  bottom: 0;
  right: 100px;
}
#trabaja-home .line-2 {
  position: absolute;
  height: 1px;
  width: 50%;
  background-color: #fff;
  bottom: 80px;
  right: 0;
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .trabaja-home__wrapper {
    flex-direction: row;
  }
  .trabaja-home__img {
    width: 40%;
  }
  .trabaja-home__content {
    width: 60%;
  }
  .trabaja-home__content h2 {
    color: #fff;
  }
  .trabaja-home__content p {
    color: #fff;
  }
  .trabaja-home-bg {
    display: flex;
  }
  .trabaja-home-bg-res {
    display: none;
  }
  #trabaja-home .line-2 {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	INTERNAS
*	=======================================================================================================
**/
/** INTERNAS - BANNER	============== **/
#banner-intern {
  position: relative;
  padding: 0;
  z-index: 2;
}
.banner-intern-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner-intern__wrapper {
  height: 160px;
  align-items: center;
  padding: 0 0 0 40px;
  border-left: 1px solid #fff;
}
.banner-intern__wrapper h2 {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .banner-intern__wrapper {
    height: 252px;
  }
  .banner-intern__wrapper h2 {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/** NOSOTROS - PRESENTACIÓN	============== **/
.pres-nos__wrapper {
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.pres-nos__img {
  width: 100%;
  height: max-content;
  aspect-ratio: 9/7;
  position: sticky;
  top: 110px;
}
.pres-nos__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  text-align: justify;
}
.pres-nos-content-cont .btn {
  margin-top: 40px;
}
#pres-nos .isologo {
  position: absolute;
  width: 202px;
  height: 202px;
  bottom: -45px;
  left: -100px;
  animation: girar 10s linear infinite;
  z-index: -1;
}

@media screen and (min-width: 580px) {
  .pres-nos__wrapper {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 980px) {
  .pres-nos__wrapper {
    flex-direction: row;
    gap: 115px;
  }
  .pres-nos__img {
    width: 50%;
  }
  .pres-nos__content {
    width: 50%;
    padding: 40px 0;
  }
  .pres-nos-content-cont {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - HISTORIA	============== **/
#numbers.nos {
  margin: 0 0 -115px;
}
#history {
  position: relative;
  background: #f8f8f9;
}
.history-wrapper {
  position: relative;
  padding: 50px 0 0;
}
.historia-wrapper__content {
  flex-direction: column;
  width: 100%;
}
.historia-content {
  text-align: justify;
}
.history-wrapper__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  top: 0;
  right: 0;
  margin-top: 60px;
}

@media screen and (min-width: 580px) {
  .history-wrapper__img {
    height: 450px;
  }
}
@media screen and (min-width: 980px) {
  .historia-wrapper__content {
    width: 50%;
  }
  .historia-content {
    padding-left: 40px;
  }
  .history-wrapper__img {
    width: 45%;
    height: 95%;
    position: absolute;
    margin-top: 0;
  }
  #history {
    background: linear-gradient(
      to right,
      #f8f8f9 0%,
      #f8f8f9 55%,
      white 55%,
      white 100%
    );
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - OBJETIVOS	============== **/
.obj-nos__wrapper {
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.obj-nos__img {
  width: 100%;
  height: max-content;
  position: relative;
  top: 0;
  z-index: 9;
}
.obj-nos__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 0;
  text-align: justify;
}
.obj-nos-content-cont .btn {
  margin-top: 40px;
}
.obj-nos__content hr {
  width: 100%;
  height: 1px;
  background-color: var(--gris-claro);
  margin: 60px 0;
  position: relative;
  overflow: visible;
}
.obj-nos__content hr::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 600px;
  background-color: var(--gris-claro);
  top: 0;
  left: -300px;
}
.obj-nos__content hr::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 600px;
  background-color: var(--gris-claro);
  top: 0;
  right: -600px;
}
.obj-nos__content .block {
  padding: 40px 30px;
  border: 1px solid var(--gris-claro);
  margin-bottom: 30px;
}
.obj-nos__content .block:last-child {
  margin-bottom: 0;
}
.obj-nos__content .block li {
  font-size: var(--text-content-size);
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--gris-petro);
  padding: 0 0 0 20px;
  position: relative;
}
.obj-nos__content .block li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--rojo-petro);
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
}

.title-block {
  margin-bottom: 20px;
  align-items: center;
  gap: 15px;
}
.title-block h3 {
  font-weight: 700;
}
.title-block .number {
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--rojo-petro);
  color: #fff;
  font-weight: 700;
  display: flex;
  line-height: 1;
}
@media screen and (min-width: 580px) {
  .obj-nos__wrapper {
    flex-direction: row;
    gap: 30px;
  }
  .obj-nos__img {
    position: sticky;
    top: 100px;
  }
}
@media screen and (min-width: 980px) {
  .obj-nos__wrapper {
    flex-direction: row;
    gap: 115px;
  }
  .obj-nos__img {
    width: 50%;
  }
  .obj-nos__content {
    width: 50%;
    padding: 40px 0;
  }
  .obj-nos-content-pres {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	PORTAFOLIO
*	=======================================================================================================
**/
/** PORTAFOLIO - DESTACADO	============== **/
.destacado-port__wrapper {
  flex-direction: column;
  gap: 35px;
}
#destacado-port h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 100%;
  line-height: 1.2;
}
#destacado-port .tag {
  background-color: var(--gris-oscuro);
  color: #fff;
  font-size: var(--text-content-size-s);
  text-align: center;
  padding: 3px 8px;
  width: max-content;
}
.destacado-port__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 3;
  position: relative;
}
.destacado-port__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: justify;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .destacado-port__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .destacado-port__img {
    width: 55%;
  }
  .destacado-port__content {
    padding-left: 100px;
    width: 45%;
  }
  .destacado-port__img::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 260px;
    bottom: -260px;
    right: 0;
    background-color: var(--gris-claro);
  }
  #destacado-port h2 {
    font-size: 2.3rem;
    max-width: 60%;
  }
}
@media screen and (min-width: 1280px) {
}

/** PORTAFOLIO - GRID	============== **/
.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.project-item {
  flex-direction: column;
  border: 1px solid var(--gris-claro);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  background-color: #fff;
}
.project-item__img {
  width: 100%;
  height: 220px;
}
.project-item-content {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px 30px;
}
.project-item-content span {
  font-size: var(--text-content-size);
  transition: var(--transition);
}
.project-item:hover .project-item-content span {
  color: #fff;
}
.project-item-content .btn-ser {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  right: 10px;
  bottom: 18px;
  transition: var(--transition);
}
.project-item-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  background-color: var(--rojo-petro);
  transition: var(--transition);
  z-index: -1;
}
.project-item:hover .project-item-content::after {
  height: 100%;
}
.project-item h3 {
  font-size: var(--text-content-size);
  font-weight: 700;
  transition: var(--transition);
  color: var(--gris-oscuro);
  margin-bottom: 20px;
}
.project-item:hover h3 {
  color: #fff;
}
.project-item:hover .btn-ser {
  box-shadow: var(--box-shadow);
}

@media screen and (min-width: 580px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .project-item {
    flex-direction: row;
  }
  .project-item__img {
    width: 45%;
  }
  .project-item-content {
    width: 56%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	PORTAFOLIO SINGLE
*	=======================================================================================================
**/
/** PORTAFOLIO SINGLE - PRESENTATION	============== **/
#port-sin-pres {
  padding-bottom: 100px;
}
.port-single-pres__header {
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.port-single-pres__header h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}
.port-single-pres__header .btn {
  display: none;
}
.port-single-pres__img {
  aspect-ratio: 7 / 3;
  width: 100%;
  overflow: hidden;
}
.port-single-pres__wrapper {
  flex-direction: column-reverse;
}
.port-single-pres__content {
  width: 100%;
  text-align: justify;
}
.port-single-description {
  padding: 40px 0;
}
.port-single-pres__info {
  padding: 40px 0;
  height: max-content;
  border-bottom: 1px solid var(--gris-claro);
  position: relative;
  flex-direction: row;
  gap: 30px;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}
.port-single-pres__info .iso {
  position: absolute;
  width: 202px;
  height: 202px;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.port-single-pres__info .block {
  width: 45%;
  text-align: center;
}
.port-single-pres__info h4 {
  font-weight: 700;
  text-transform: uppercase;
}
.port-single-pres__info p {
  margin-bottom: 0;
}
.port-single__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.port-single-gallery__item {
  width: 100%;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1 /1;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .port-single-pres__header .btn {
    display: flex;
  }
  .port-single-pres__wrapper {
    flex-direction: row;
  }
  .port-single-pres__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin-bottom: 40px;
  }
  .port-single-pres__info {
    padding: 75px 70px;
    height: max-content;
    border-bottom: 1px solid var(--gris-claro);
    position: relative;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 50px;
    width: 25%;
  }
  .port-single-pres__info .block {
    width: 100%;
    text-align: left;
  }
  .port-single-pres__content {
    width: 75%;
    border-right: 1px solid var(--gris-claro);
  }
  .port-single-description {
    padding: 75px 230px 75px 70px;
  }
  .port-single-pres__info::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 1px;
    background-color: var(--gris-claro);
    bottom: -1px;
    right: -800px;
    z-index: -1;
  }
  .port-single-pres__info .iso {
    display: flex;
  }
  .port-single__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .port-single-pres__header h2 {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	TRABAJA CON NOSOTROS
*	=======================================================================================================
**/
/** TRABAJA - PRESENTATION	============== **/
#trabaja-pres {
  border-bottom: 1px solid var(--gris-claro);
  padding-bottom: 100px;
}
.trabaja-pres__wrapper {
  flex-direction: column;
  gap: 40px;
}
.trabaja-pres__content {
  width: 100%;
}
.trabaja-pres__img {
  width: 100%;
  height: 330px;
  overflow: hidden;
}
.trabaja-pres__txt {
  text-align: justify;
}
.trabaja-pres__content .isologo {
  position: absolute;
  width: 190px;
  height: 190px;
  bottom: -75px;
  left: -10px;
  animation: girar 10s linear infinite;
  z-index: -1;
}

@media screen and (min-width: 580px) {
  .trabaja-pres__img {
    height: 600px;
  }
}
@media screen and (min-width: 980px) {
  .trabaja-pres__wrapper {
    flex-direction: row;
    gap: 100px;
  }
  .trabaja-pres__content {
    width: 50%;
  }
  .trabaja-pres__img {
    width: 50%;
  }
  .trabaja-pres__txt {
    padding-left: 35px;
  }
  .trabaja-pres__img {
    height: 558px;
  }
}
@media screen and (min-width: 1280px) {
}

/** TRABAJA - FORM	============== **/
#trabaja-form {
  padding: 60px 0 100px;
}
.trabaja-form__wrapper {
  gap: 40px;
  flex-direction: column-reverse;
}
.trabaja-form__img {
  width: 100%;
  position: relative;
}
.trabaja-form__img::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 400px;
    background-color: var(--gris-claro);
    top: -230px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.trabaja-form__form {
  width: 100%;
}
.trabaja-form-cont-form {
  padding: 30px 25px;
  border: 1px solid var(--gris-claro);
  background-color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.trabaja-form-cont-form .form-group.last {
  margin-bottom: 0;
  margin-top: 40px;
}
.form-group p {
  margin-bottom: 0;
}
.form-group label {
  font-weight: 700;
  font-size: var(--text-content-size);
  margin-bottom: 5px;
  display: inline-block;
  color: var(--gris-oscuro);
}
input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 1px solid var(--gris-claro);
  padding: 10px;
  width: 100%;
  font: 400 var(--base-size-font) var(--primary-font);
  line-height: 1.5;
}
textarea {
  height: 190px;
  resize: none;
}

@media screen and (min-width: 580px) {
  .trabaja-form-cont-form {
    padding: 60px 50px;
  }
}
@media screen and (min-width: 980px) {
  .trabaja-form__wrapper {
    gap: 100px;
    flex-direction: row;
    align-items: center;
  }
  .trabaja-form__img {
        width: 45%;
        aspect-ratio: 1 / 1;
    }
  .trabaja-form__form {
    width: 55%;
  }
  #trabaja-form {
    padding: 130px 0 100px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	EQUIPOS
*	=======================================================================================================
**/
/** EQUIPOS - PRESENTATION	============== **/

.equipos-pres__wrapper {
  flex-direction: column;
  gap: 40px;
}
.equipos-pres__content {
  width: 100%;
  padding: 0;
  position: relative;
}
.equipos-pres__img {
  width: 100%;
  height: 330px;
  position: relative;
}
.equipos-pres__txt {
  text-align: justify;
}
.equipos-pres__img .isologo {
  position: absolute;
  width: 190px;
  height: 190px;
  bottom: -95px;
  left: -95px;
  animation: girar 10s linear infinite;
  z-index: -1;
}

@media screen and (min-width: 580px) {
  .equipos-pres__img {
    height: 600px;
  }
}
@media screen and (min-width: 980px) {
  #equipos-pres {
    padding-bottom: 100px;
  }
  .equipos-pres__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .equipos-pres__content {
    width: 50%;
    padding: 0 0 70px 70px;
    border-bottom: 1px solid var(--gris-claro);
    border-left: 1px solid var(--gris-claro);
  }
  .equipos-pres__img {
    width: 50%;
  }
  .equipos-pres__txt {
    padding-left: 35px;
  }
  .equipos-pres__img {
    height: 558px;
  }
  .equipos-pres__content::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 1px;
    background-color: var(--gris-claro);
    bottom: -1px;
    right: -300px;
    z-index: -1;
  }
  .equipos-pres__content::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 300px;
    background-color: var(--gris-claro);
    bottom: -300px;
    left: -1px;
    z-index: -1;
  }
}
@media screen and (min-width: 1280px) {
}

/** EQUIPOS - GALLERY	============== **/

.gallery-equipos__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-equipos-gallery__item {
  width: 100%;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1 /1;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .gallery-equipos__gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SERVICIOS
*	=======================================================================================================
**/
/** SERVICIOS - PRESENTATION	============== **/
#servicios-pres {
  padding-bottom: 100px;
}
.servicios-pres__header {
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.servicios-pres__wrapper {
  flex-direction: column;
  gap: 40px;
}
.servicios-pres__content {
  width: 100%;
}
#formulario-servicio {
  scroll-margin-top: 120px;
}
.servicios-pres__form {
  width: 100%;
  padding: 50px;
  border: 1px solid var(--gris-claro);
  background-color: #fff;
  height: fit-content;
}
.servicios-pres__txt {
  text-align: justify;
}
.servicios-pres__content .isologo {
  position: absolute;
  width: 190px;
  height: 190px;
  bottom: -75px;
  left: -10px;
  animation: girar 10s linear infinite;
  z-index: -1;
}
.servicios-pres-content__img {
  height: 430px;
  position: relative;
}
.servicios-pres-content__img::after {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1px;
  background-color: var(--gris-claro);
  top: 0;
  right: -1200px;
  z-index: -1;
}
.servicios-pres__header .icon {
  width: 108px;
  height: 108px;
  display: none;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gris-claro);
  flex: none;
  /*     margin-top: 30px; */
}
.servicios-pres__header .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .servicios-pres__wrapper {
    flex-direction: row;
    gap: 100px;
  }
  .servicios-pres__content {
    width: 60%;
  }
  .servicios-pres__form {
    width: 40%;
  }
  .servicios-pres__txt {
    padding-left: 35px;
  }
  .servicios-pres-content__img {
    margin-left: 35px;
  }
  .servicios-pres__header .icon {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** SERVICIOS - DESCRIPCIÓN	============== **/
#servicios-des {
  background-color: #f8f8f9;
}
.servicios-des__wrapper {
  gap: 40px;
  align-items: center;
  flex-direction: column-reverse;
}
.servicios-des__content {
  width: 100%;
  text-align: justify;
}
.servicios-des__content p:last-child {
  margin-bottom: 0;
}
.servicios-des__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 6 / 5;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .servicios-des__wrapper {
    gap: 115px;
    flex-direction: row;
  }
  .servicios-des__content {
    width: 50%;
    padding: 40px;
  }
  .servicios-des__img {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** SERVICIOS - CARACTERISTICAS	============== **/
.caract-ser__wrapper {
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.caract-ser__img {
  width: 100%;
  height: max-content;
  position: relative;
  top: 0;
  z-index: 9;
}
.caract-ser__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
.caract-ser-content-cont .btn {
  margin-top: 40px;
}
.caract-ser__content .block {
  padding: 40px 30px;
  border: 1px solid var(--gris-claro);
  margin-bottom: 30px;
}
.caract-ser__content .block:last-child {
  margin-bottom: 0;
}
.caract-ser__content .title-block h3 {
  font-weight: 700;
  font-size: 30px;
  text-align: left;
}
.caract-ser__content .block li {
  font-size: var(--text-content-size);
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--gris-petro);
  padding: 0 0 0 20px;
  position: relative;
}
.caract-ser__content .block li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--rojo-petro);
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.caract-ser__content .block .icon {
  width: 60px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 580px) {
  .caract-ser__wrapper {
    flex-direction: row;
    gap: 30px;
  }
  .caract-ser__img {
    position: sticky;
    top: 100px;
  }
}
@media screen and (min-width: 980px) {
  .caract-ser__wrapper {
    flex-direction: row;
    gap: 115px;
  }
  .caract-ser__img {
    width: 50%;
  }
  .caract-ser__content {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** SERVICIOS - CTA	============== **/
.cta-ser-bg {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
}
.cta-ser-bg-res {
  display: flex;
}
.cta-ser__wrapper {
  height: 316px;
  padding: 50px 0 0 0;
  flex-direction: column;
}
.cta-ser__img {
  width: 100%;
}
.cta-ser__content {
  width: 100%;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  align-items: center;
  text-align: center;
}
.cta-ser__content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gris-oscuro);
  line-height: 1.1;
  margin-bottom: 15px;
}
.cta-ser__content p {
  color: var(--gris-oscuro);
  margin-bottom: 0;
}
#cta-ser .line-1 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #fff;
  bottom: 0;
  right: 100px;
}
#cta-ser .line-2 {
  position: absolute;
  height: 1px;
  width: 842px;
  background-color: #fff;
  bottom: 40px;
  right: 0;
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .cta-ser__wrapper {
    flex-direction: row;
  }
  .cta-ser__img {
    width: 40%;
  }
  .cta-ser__content {
    width: 60%;
    flex-direction: row;
    text-align: left;
  }
  .cta-ser__content h2 {
    color: #fff;
  }
  .cta-ser__content p {
    color: #fff;
  }
  .cta-ser-bg {
    display: flex;
  }
  .cta-ser-bg-res {
    display: none;
  }
  #cta-ser .line-2 {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

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

/* LOADER OVERLAY */
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/preloader-bg.svg), #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.loader-wrap.active {
  animation: 1500ms ease 300ms 1 normal both running fade-in;
  pointer-events: none;
}

.loader-wrap.hide {
  display: none;
}

.loader-logo {
  position: absolute;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.background-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #f1f3f8;
  z-index: 1;
  animation: fillBackground 2s forwards;
}

@keyframes fillBackground {
  to {
    height: 100%;
  }
}
.loader-logo .loader-iso {
  width: 5rem;
  animation: girar 3s linear infinite;
}
.loader-logo .loader-txt {
  width: 10rem;
}
@media screen and (min-width: 1024px) {
  .loader-logo .loader-iso {
    width: 4.2rem;
  }
  .loader-logo .loader-txt {
    width: 18rem;
  }
}

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

/**
*	Blog
*	=======================================================================================================
**/
.main-blog-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.main-blog-wrapper article {
  width: 100%;
}
.main-blog-wrapper article .title {
  margin-bottom: 30px;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}
.fecha {
  background-color: var(--gris-oscuro);
  color: #fff;
  font-size: var(--text-content-size-s);
  text-align: center;
  padding: 3px 8px;
  width: max-content;
  height: fit-content;
}
.aside-blog {
  width: 100%;
  height: fit-content;
  position: sticky;
  top: 125px;
}
.aside-blog section {
  padding: 0;
}
.aside-blog h3 {
  font-size: 1.2rem;
  margin: 43px 0 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.aside-blog .widget_block:first-child h3 {
  margin-top: 0;
}
.aside-blog .widget_block:first-child {
  padding: 0;
}
.cat-item,
.wp-block-archives li {
  margin-bottom: 10px;
  color: var(--gris-petro);
}
.articles-blog__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 70px 30px;
  width: 100%;
}
.articles-blog__grid .carousel-equipos-item {
  margin: 0;
}
.wp-block-categories,
.wp-block-archives {
  box-sizing: border-box;
  border: 1px solid var(--gris-claro);
  padding: 20px 25px;
  position: relative;
}
.wp-block-categories::before {
  content: "";
  height: 300px;
  width: 1px;
  background-color: var(--gris-claro);
  position: absolute;
  right: -1px;
  top: -300px;
  z-index: 0;
}
@media screen and (min-width: 580px) {
  .articles-blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .main-blog-wrapper {
    flex-direction: row;
  }
  .main-blog-wrapper article {
    width: 75%;
  }
  .aside-blog {
    width: 25%;
  }
  .articles-blog__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 75%;
  }
  .main-blog-wrapper article .title {
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SINGLE - BLOG
*	=======================================================================================================
**/

h1.entry-title {
  text-transform: none;
  padding: 0;
  font-size: 1.5rem;
}
.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);
}
.content-article p {
  text-align: justify;
  font-size: var(--text-content-size);
}
.content-article .fecha {
  margin-bottom: 40px;
}
.img-article {
  width: 100%;
  height: 270px;
  overflow: hidden;
  margin-bottom: 40px;
}
.content-article h3 {
  margin: 25px 0 15px;
}
.content-article li {
  text-align: justify;
  font-size: var(--text-content-size);
  line-height: 1.5;
  color: var(--primary-color);
  list-style: auto;
  margin-left: 20px;
}
.content-article ol {
  margin-bottom: 20px;
}
.content-article strong {
  font-weight: 700;
}
@media screen and (min-width: 580px) {
  .img-article {
    height: 480px;
  }
  h1.entry-title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 980px) {
  .img-article {
    height: 508px;
  }
}
@media screen and (min-width: 1280px) {
}

#articulos-relacionados {
  padding: 55px 0 120px;
}
#articulos-relacionados .card-article__img {
  height: 240px;
  border-radius: 130px 0;
}
.art-relacionados__grid {
  display: flex;
  flex-direction: row;
  gap: 45px;
  justify-content: center;
}
.art-relacionados__grid .carousel-equipos-item {
  width: 100%;
}

@media screen and (min-width: 580px) {
  .art-relacionados__grid .carousel-equipos-item {
    width: 50%;
    max-width: 505px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/* ============================================
   BANNER INTERNO - SERVICIOS (30/70 + Swiper)
   ============================================ */
#banner-ser {
  display: flex;
  height: 252px;
  overflow: hidden;
  padding: 0;
}
#banner-ser .banner-ser__left {
  width: 30%;
  flex-shrink: 0;
  background: var(--gris-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#banner-ser .banner-ser__left h2 {
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  font-size: 1.9rem;
}

#banner-ser .banner-ser__right {
  width: 70%;
  overflow: hidden;
}

#banner-ser .swiper-banner-ser {
  width: 100%;
  height: 100%;
}

#banner-ser .swiper-slide {
  height: 252px;
}

#banner-ser .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  #banner-ser {
    flex-direction: column;
    height: auto;
  }
  #banner-ser .banner-ser__left,
  #banner-ser .banner-ser__right {
    width: 100%;
  }
  #banner-ser .banner-ser__left {
    padding: 1.5rem;
  }
  #banner-ser .banner-ser__right {
    height: 220px;
  }
  #banner-ser .swiper-slide {
    height: 220px;
  }
  #banner-ser .swiper-banner-ser {
    height: 220px;
  }
}

/**
*	LEGALES
*	=======================================================================================================
**/
.legales__inner {
  max-width: 900px;
  margin: 0 auto;
}
.form-group-wrapper {
  margin-top: 40px;
}
.form-group-info {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--gris-petro);
  line-height: 1.8;
}
.libro-reclamaciones-info {
  font-size: 0.95rem;
  color: var(--gris-petro);
  line-height: 1.8;
}
.libro-reclamaciones-info p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.legales__content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary-color);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}

.legales__content h2:first-child {
  margin-top: 0;
}
.legales input[type="radio"] {
  appearance: auto;
}
.form-row {
  display: flex;
  flex-direction: column;
}
.legales .form-row .form-group {
  width: 100%;
}
.legales input[type="text"],
.legales input[type="number"],
.legales input[type="date"],
.legales input[type="email"],
.legales input[type="tel"],
.legales select,
.legales textarea {
  width: 100%;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .legales .form-row .form-group {
    width: 50%;
  }
  .form-row {
    gap: 30px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}
