@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Poppins";
  vertical-align: baseline;
  color: white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

a {
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  max-width: 2000px;
}

body {
  line-height: 1;
  background-color: #000000;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.pd_def {
  padding-left: 100px;
  padding-right: 100px;
}

.bg_def {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.dif_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(0, 0, 0) 2%, rgba(41, 26, 26, 0) 5%, rgba(255, 255, 255, 0) 95%, rgb(0, 0, 0) 97%);
}

.bg_att {
  background-attachment: fixed;
}

/*----------------------------- text , fonts*/
.big_title_text {
  font-size: 80px;
}
.big_title_text p, .big_title_text b, .big_title_text a, .big_title_text li {
  font-size: inherit;
}

.big_inter_text {
  font-size: 65px;
}
.big_inter_text p, .big_inter_text b, .big_inter_text a, .big_inter_text li {
  font-size: inherit;
}

.big_mid_title_text {
  font-size: 50px;
}
.big_mid_title_text p, .big_mid_title_text b, .big_mid_title_text a, .big_mid_title_text li {
  font-size: inherit;
}

.semi_big_title {
  font-size: 40px;
}
.semi_big_title p, .semi_big_title b, .semi_big_title a, .semi_big_title li {
  font-size: inherit;
}

.mid_text {
  font-size: 25px;
}
.mid_text p, .mid_text b, .mid_text a, .mid_text li {
  font-size: inherit;
}

.inter_text {
  font-size: 18px;
}
.inter_text p, .inter_text b, .inter_text a, .inter_text ul, .inter_text li {
  font-size: inherit;
}

.small_text {
  font-size: 16px;
}
.small_text p, .small_text b, .small_text a, .small_text li {
  font-size: inherit;
}

.ssmall_text {
  font-size: 15px;
}
.ssmall_text p, .ssmall_text b, .ssmall_text a, .ssmall_text li {
  font-size: inherit;
}

.p_extrab {
  font-family: "Poppins-ExtraBold" !important;
}

.p_semib {
  font-family: "Poppins-SemiBold" !important;
}

.p_b {
  font-family: "Poppins-Bold" !important;
}

.p_l {
  font-family: "Poppins-light" !important;
}

.p_extral {
  font-family: "Poppins-ExtraLight" !important;
}

.p_m {
  font-family: "Poppins-Medium" !important;
}

.t_upper {
  text-transform: uppercase !important;
}

.black {
  color: #000;
}

.lh_3 {
  line-height: 1.3;
}

.lh_4 {
  line-height: 1.4;
}

/*----------------------------- header*/
#siteHeader {
  position: fixed;
  width: 100dvw;
  padding: 20px 150px;
  padding-top: 45px;
  z-index: 200;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  transition: all 0.4s ease;
}
#siteHeader.active {
  padding-top: 20px;
  background-color: rgb(15, 15, 15);
}

.headerCont {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 60;
  position: relative;
}

.headerLogo {
  display: block;
  width: 200px;
  height: 50px;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-position: left center;
}

.openMenu {
  border: none;
  width: 75px;
  height: 55px;
  border-radius: 10px;
  background-color: #E63340;
  cursor: pointer;
}
.openMenu.active .openMenuIcon {
  background-image: url(../img/openMenuClose.png);
}

.openMenuIcon {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/openMenuLines.png);
  margin: auto;
}

.header_menuCont {
  position: fixed;
  left: -100%;
  top: 0;
  display: flex;
  flex-direction: row;
  width: 600px;
  height: 100dvh;
  z-index: 201;
  transition: all 0.3s ease;
}
.header_menuCont.active {
  left: 0;
}

.menuPCont {
  width: inherit;
  height: 100%;
  background-color: #0F0F0F;
  display: flex;
  flex-direction: column;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-right: 50px;
  padding-left: 150px;
  z-index: 10;
  flex: 0 0 auto;
}

.header_ul {
  margin-top: 80px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 80dvh;
  overflow: scroll;
}
.header_ul::-webkit-scrollbar {
  width: 0 !important;
}

.header_bi {
  width: 100%;
  height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.header_bi:hover .header_it {
  color: #E3333F;
}
.header_bi:hover .header_ai {
  filter: brightness(0) saturate(100%) invert(46%) sepia(100%) saturate(5115%) hue-rotate(337deg) brightness(91%) contrast(96%);
}
.header_bi.active .header_it {
  color: #E3333F;
}
.header_bi.active .header_ai {
  filter: brightness(0) saturate(100%) invert(46%) sepia(100%) saturate(5115%) hue-rotate(337deg) brightness(91%) contrast(96%);
  transform: rotate(180deg);
}

.header_it {
  line-height: 1.4;
}

.header_ai {
  -o-object-fit: contain;
     object-fit: contain;
  width: 15px;
  height: 15px;
}

.header_boC {
  margin-top: auto;
  border-top: white 1px solid;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header_bl {
  width: 40px;
  height: 40px;
}

.header_buttonBg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 30;
  border: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.header_buttonBg.active {
  display: block;
}

.header_submenuCont {
  position: relative;
  pointer-events: none;
  width: 500px;
  height: 100dvh;
  top: 0;
  right: 0;
  transform: translateX(-100%);
  background-color: #1C1C1C;
  z-index: 2;
  transition: transform ease 0.3s;
  padding: 107px 62px 45px 90px;
  max-height: 100dvh;
  flex: 0 0 auto;
}
.header_submenuCont.services {
  padding-top: 107px;
}
.header_submenuCont.services ul {
  gap: 60px;
}
.header_submenuCont.active {
  transform: translateX(0%);
  pointer-events: all;
}
.header_submenuCont ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.header_submenuCont ul::-webkit-scrollbar {
  width: 0 !important;
}

.subMenuLink {
  display: block;
  width: 100%;
  position: relative;
}
.subMenuLink .redLines {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  width: 45px;
  left: 0;
  top: 0;
  content: url(../img/verticalRedLines.png);
}

.subMenuServiceCont {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subMenuServiceCont div {
  position: relative;
  left: -7px;
}

.subMenuText {
  margin-top: 10px;
  line-height: 1.4;
}

.gobackSubmenu {
  display: none;
}
.gobackSubmenu button {
  cursor: pointer;
  width: 20px;
  height: 50%;
  border: none;
  outline: none;
  padding: 0;
  transform: rotate(180deg);
  background-color: transparent;
  background-image: url(../img/flecha_ntp.png);
}

/*----------------------------- main*/
section {
  max-width: 2000px;
  margin: auto;
  position: relative;
}

#siteMain {
  background-color: #000000;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  margin: auto;
}

/*--------------------------------------------- shadows*/
.shadowRed {
  position: absolute;
  z-index: 0;
}
.shadowRed ~ * {
  z-index: 2;
}
.shadowRed.top-left {
  left: 0;
  top: 0;
  width: 70%;
  aspect-ratio: 16/9;
  background-image: url(../img/shadow-top-left.png);
  pointer-events: none;
  background-position: left top;
}
.shadowRed.bottom-right {
  right: 0;
  bottom: 0;
  width: 70%;
  aspect-ratio: 16/9;
  background-image: url(../img/shadow-top-left.png);
  pointer-events: none;
  background-position: left bottom;
  transform: scale(-1, -1);
}
.shadowRed.left {
  left: 0;
  top: 50%;
  width: 45%;
  aspect-ratio: 9/16;
  background-image: url(../img/shadow-left.png);
  pointer-events: none;
  background-position: left center;
  transform: translate(0, -50%);
}
.shadowRed.left.top {
  top: 0;
  transform: translate(0, 0);
}
.shadowRed.left.bottom {
  bottom: 0;
  top: auto;
  transform: translate(0, 0);
}
.shadowRed.right {
  right: 0;
  top: 50%;
  width: 45%;
  aspect-ratio: 9/16;
  background-image: url(../img/shadow-right.png);
  pointer-events: none;
  background-position: right center;
  transform: translate(0, -50%);
}

/*---------------------------------------------home*/
/*b1-----*/
.hb1_block {
  display: block;
  height: auto;
  position: relative;
}

.hb1_fs {
  height: 100vh;
  max-height: 1000px;
  min-height: 600px;
  position: relative;
}

.hb1_linesCont {
  position: absolute;
  top: 0;
  right: 10%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 40px;
}
.hb1_linesCont > div {
  width: 40px;
  height: 1px;
  transform: skewX(-20deg);
}
.hb1_linesCont .hb1_l1 {
  background-color: black;
  background: linear-gradient(180deg, #787979 0%, rgba(0, 0, 0, 0) 80%);
  height: 1px;
  transform-origin: top;
}
.hb1_linesCont .hb1_l2 {
  position: relative;
  background: linear-gradient(180deg, #787979 0%, #787979 100%);
  height: 1px;
  transform-origin: top;
}
.hb1_linesCont .hb1_l2 .pinl2 {
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: transparent;
  transform: translateY(-100%);
}
.hb1_linesCont .hb1_l3 {
  background-color: black;
  background: linear-gradient(180deg, #787979 0%, rgba(0, 0, 0, 0) 80%);
  height: 1px;
  transform-origin: top;
}

.hb1_bt {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60%;
}
.hb1_bt h1 {
  font-size: inherit;
  line-height: 1.1;
}
.hb1_bt strong {
  font-family: "Poppins-Bold";
}

.hb2_fs {
  position: relative;
  height: 100vh;
  max-height: 1000px;
  min-height: 600px;
  overflow: hidden;
}

.hb2_textC {
  position: relative;
  display: flex;
  gap: 40px;
  width: 50%;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  z-index: 5;
  justify-content: center;
  padding-right: 0;
  opacity: 0;
}
.hb2_textC .bigT {
  width: 594px;
  line-height: 1.2;
}
.hb2_textC .normalT {
  width: 594px;
  line-height: 1.4;
}
.hb2_textC .redLinkBtn {
  margin-top: 0px;
}

.redLinkBtn {
  padding: 14px 24px;
  background-color: #E63340;
  border-radius: 70px;
  font-size: 18px;
  font-family: "Poppins-Medium";
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.redLinkBtn:hover {
  transform: scale(1.07);
}
.redLinkBtn::after {
  content: "";
  display: block;
  position: relative;
  background-image: url(../img/flecha_ntp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  aspect-ratio: 9/16;
}

.hb_transform {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 804px;
  max-height: 100%;
  transform: translateY(-50%);
}
.hb_transform .gray_triangle {
  position: relative;
  top: -1px;
  clip-path: polygon(50% 0%, 50% 0%, 50% 0%, 50% 0%);
  height: 100%;
  transition: none !important;
  transform: translateX(-50%);
  opacity: 0;
  aspect-ratio: 99/134;
}
.hb_transform .difTriangle {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  /*transform: translateX(50%);*/
  opacity: 0;
  z-index: -1;
  background-image: url(../img/difTriangle.png);
  aspect-ratio: 99/134;
}
.hb_transform .redTriangle {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 594px;
  height: 100%;
  transform: translateX(50%);
  opacity: 0;
}
.hb_transform .sbLogo {
  position: absolute;
  top: 34%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: center;
  width: 197px;
  height: 270px;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hp_gray_bg {
  width: 100%;
  height: 100%;
  background-color: #313535;
}

.robotHand {
  position: absolute;
  top: 30%;
  right: -40%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: right;
  aspect-ratio: 16/9;
  height: 210px;
  opacity: 0;
  transform: translateY(-50%);
  z-index: 6;
}

.humanHand {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
     object-position: left;
  aspect-ratio: 6/4;
  left: -100%;
  bottom: 0;
  max-width: 100%;
  height: 400px;
  opacity: 0;
  z-index: 6;
}

/*b2-----*/
.hb2_block {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.atomLine {
  position: absolute;
  left: 50%;
  top: 70vh;
  z-index: 4;
  width: 5px;
  height: 0px;
  transform: translate(-50%, 0%);
  background-color: #E3333F;
  border-radius: 40px;
  transform-origin: bottom;
  box-shadow: 1px 1px 20px 10px rgb(203, 32, 32);
  -webkit-box-shadow: 1px 1px 20px 10px rgb(203, 32, 32);
}
.atomLine .atomPoint {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0px;
  height: 0px;
  transform: translate(-50%, 50%);
  background-color: #E3333F;
  border-radius: 50%;
  z-index: 4;
}
.atomLine .atomPoint .red_atom {
  position: absolute;
  content: "";
  width: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  opacity: 0;
  aspect-ratio: 1/1;
  background-image: url(../img/red_atom.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hb2_handBlock {
  position: relative;
  min-height: 150dvh;
}

.hb2_smallText {
  font-family: "Poppins-Bold";
  position: relative;
  top: 40px;
  font-size: 20px;
  width: 500px;
  line-height: 1.3;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hb2_centerTitle {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 750px;
}

.hb2_atomBlock {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100dvh;
  padding-top: 190px;
}
.hb2_atomBlock > * {
  width: 40%;
  z-index: 10;
}
.hb2_atomBlock h1 {
  font-family: "Poppins-SemiBold";
  width: 100%;
}

.atomHumanhand {
  position: absolute;
  top: 80dvh;
  left: -10%;
  max-width: 1000px;
  transform: translate(0, 0%);
  background-image: url(../img/humanHand.png);
  width: 50dvw;
  aspect-ratio: 16/9;
  background-position: left center;
}

.atomRobothand {
  position: absolute;
  top: 35dvh;
  right: 0;
  max-width: 610px;
  transform: translate(0, -100%);
  background-image: url(../img/robotHand.png);
  width: 25dvw;
  aspect-ratio: 16/9;
  background-position: right center;
}

.red_robot_hand {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 500px;
  left: 70%;
  top: 60%;
  transform: translate(-100%, -50%) rotate(30deg);
  background-image: url(../img/red_robot_hand.png);
  z-index: 3;
}

.atom_flex {
  display: flex;
  gap: 25px;
  flex-direction: column;
  height: 100%;
  font-size: 20px;
  line-height: 1.4;
}
.atom_flex h3 {
  font-family: "Poppins-SemiBold";
  font-size: 37px;
}
.atom_flex .redLinkBtn {
  width: -moz-fit-content;
  width: fit-content;
}

/*b3-----*/
.hb3_block {
  min-height: 130vh;
  max-height: 2300px;
  position: relative;
  margin-top: 40px;
}

.hb3_cardsCont {
  width: 100%;
  height: 130dvh;
  min-height: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}

.hb3_card {
  position: relative;
  background-color: transparent;
  width: 500px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 900px;
  border-radius: 40px;
  display: grid;
  gap: 0px;
  padding: 70px 30px 43px 53px;
  grid-template-rows: 1fr max-content max-content;
  background-size: cover;
  background-image: url(../img/vertical_cards/top_left_bg.png);
}
.hb3_card .title {
  margin-bottom: 36px;
}
.hb3_card .text {
  text-wrap: wrap;
  width: 374px;
  line-height: 1.4;
  align-self: end;
}
.hb3_card .logo {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hb3_card.center {
  background-image: url(../img/vertical_cards/bottom_right_bg.png);
  grid-template-rows: max-content max-content 1fr;
  padding: 53px 30px 43px 53px;
}
.hb3_card.center .text {
  order: 1;
  width: 317px;
  align-self: start;
}
.hb3_card.center .logo {
  order: 3;
  justify-self: end;
  align-self: end;
}
.hb3_card.right {
  background-image: url(../img/vertical_cards/top_right_bg.png);
}
.hb3_card.right .logo {
  justify-self: flex-end;
}

.hb3_info {
  display: flex;
  flex-direction: row;
  height: auto;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 50px 0;
  align-items: flex-end;
}
.hb3_info h2 {
  margin-bottom: 30px;
}
.hb3_info p {
  width: 530px;
  line-height: 1.4;
}
.hb3_info .redLinkBtn {
  margin-top: auto;
  align-self: baseline;
}

/*b4-----*/
.hb4_block {
  min-height: 100dvh;
  position: relative;
  display: flex;
}

.hb4_blackBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: black;
  z-index: 40;
}
.hb4_blackBg.left {
  position: absolute;
  left: 0;
  width: 20%;
  height: 100%;
  background-color: black;
}
.hb4_blackBg.right {
  position: absolute;
  left: auto;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: black;
}

.hb4_data_cont {
  position: relative;
  width: 100%;
  height: 100dvh;
  align-self: end;
  justify-self: flex-start;
}

.hb4_text_cont {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 700px;
  z-index: 2;
  transform: translateY(-50%);
}
.hb4_text_cont .s_text {
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  margin-bottom: 28px;
  letter-spacing: 10px;
}
.hb4_text_cont .b_text {
  text-align: right;
  margin-bottom: 28px;
}
.hb4_text_cont .n_text {
  text-align: right;
  line-height: 1.4;
}

.hb4_padlock {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  filter: grayscale(1);
}

/*b5-----*/
.hb5_block {
  min-height: 100dvh;
  padding-top: 95px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
}

.cde_cardCont {
  width: 50%;
}
.cde_cardCont > :last-child {
  position: relative;
  z-index: 3;
}

.cde_card {
  height: calc(100dvh - 95px);
  max-height: 100dvh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.cde_card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background-color: #E3333F;
}
.cde_card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 2px;
  height: 100%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(227, 51, 63) 100%);
}

.cde_info {
  width: 50%;
  padding: 60px 108px;
  height: calc(100dvh - 95px);
  max-height: 100dvh;
  position: relative;
  border-top: 2px solid #E3333F;
}
.cde_info::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  transform: translate(-50%, 0);
  width: 2px;
  height: 100%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(227, 51, 63) 100%);
}
.cde_info .cde_subTitle {
  margin-bottom: 30px;
}
.cde_info .cde_text {
  line-height: 1.3;
  margin-bottom: 38px;
}
.cde_info .redLinkBtn {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.cde_info > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  gap: 20px;
}
.cde_info > div :first-child {
  margin-top: auto;
}
.cde_info > div :last-child {
  margin-bottom: auto;
}

.cde_wb {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 44px;
  padding: 15px 35px;
  background-color: white;
  color: #000000;
  margin-bottom: 30px;
}

.cde_score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(100dvh - 95px);
  padding: 60px 108px;
  background-color: #000000;
  border-top: 2px solid #E3333F;
}
.cde_score * {
  line-height: 1.3;
}
.cde_score .cde_scoreTitle {
  margin: 60px 0px;
  margin-bottom: 30px;
}
.cde_score .cde_star {
  display: inline-block;
  margin-top: 10px;
}
.cde_score .cde_star::before {
  content: "★";
  font-size: 20px;
}
.cde_score .cde_icon {
  width: 300px;
  height: auto;
  align-self: center;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cde_score .redLinkBtn {
  width: -moz-fit-content;
  width: fit-content;
}

/*b6------*/
.hb6_block {
  position: relative;
  min-height: 100dvh;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hb6_block .hb6_Title {
  text-align: center;
}
.hb6_block .hb6_cardDesc {
  max-width: 90%;
  text-align: center;
  opacity: 0;
  margin-bottom: 70px;
}
.hb6_block .hb6_cardDesc .red {
  color: #ED2B2B;
}

.hb6_cardCont {
  white-space: nowrap;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.hb6_cardCont .hb6_cardSlider {
  padding-left: 100dvw;
}

.hb6_card {
  position: relative;
  /*transform-style: preserve-3d;*/
  display: inline-block;
  width: 350px;
  height: 350px;
  perspective: 500px;
  -webkit-perspective: 500px;
  cursor: pointer;
}
.hb6_card.active .container {
  transform: rotateY(-25deg) translateX(50%);
}
.hb6_card .container {
  width: 100%;
  height: 100%;
  transform: rotateY(-25deg);
  transform-origin: 50% 50% 0;
  background-color: white;
  transition: all ease 0.3s;
}
.hb6_card img {
  padding: 10% 10%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*b7------*/
.hb7_block {
  padding-bottom: 40px;
}
.hb7_block .bigT {
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.autoDigi_cont {
  position: relative;
  max-width: 1582px;
  width: 100%;
  max-height: 715px;
  height: 100dvh;
  border-radius: 50px;
  margin: auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0px;
  overflow: hidden;
}
.autoDigi_cont::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(270deg, #E3333F, #FFFFFF);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 10;
}
.autoDigi_cont::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 40%;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(0deg, #E3333F, #FFFFFF);
  z-index: 3;
}

.autoDigi_iC {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Chrome, Edge and Safari */
}
.autoDigi_iC .item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  padding: 20px 40px;
  overflow: hidden;
  width: 100%;
  height: 20%;
  cursor: pointer;
}
.autoDigi_iC .item:hover .ad_icText, .autoDigi_iC .item.active .ad_icText {
  background: linear-gradient(90deg, #000000, #000000);
  background-clip: text;
  -webkit-background-clip: text;
}
.autoDigi_iC .item:hover .ad_icIco, .autoDigi_iC .item.active .ad_icIco {
  filter: brightness(0);
}
.autoDigi_iC .item:hover::before, .autoDigi_iC .item.active::before {
  right: 0%;
}
.autoDigi_iC .item::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF, #E3333F);
  transition: all ease 0.3s;
}
.autoDigi_iC .item::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: linear-gradient(90deg, #FFFFFF, #E3333F);
}
.autoDigi_iC::-webkit-scrollbar {
  width: 5px;
}
.autoDigi_iC::-webkit-scrollbar-track {
  background: transparent;
}
.autoDigi_iC::-webkit-scrollbar-track:hover, .autoDigi_iC::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.autoDigi_iC::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: white;
}
.autoDigi_iC::-webkit-scrollbar-thumb:hover, .autoDigi_iC::-webkit-scrollbar-thumb:active {
  background-color: white;
}

.ad_icIco {
  width: 61px;
  height: 61px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(1);
  transition: all ease 0.3s;
}

.ad_icText {
  background: linear-gradient(90deg, #FFFFFF, #E3333F);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all ease 0.3s;
  z-index: 2;
  text-transform: uppercase;
}

.autoDigi_dC {
  background: url(../img/mtc_bg.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 84px 100px 46px 96px;
  overflow-x: hidden;
  overflow-y: overlay;
}

.item_dC {
  width: 100%;
  height: 100%;
}
.item_dC .redLinkBtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 25px;
  gap: 10px;
}

.header_dC {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 23px;
  margin-bottom: 40px;
}
.header_dC .ico {
  -o-object-fit: contain;
     object-fit: contain;
  width: 84px;
  height: 84px;
}

.itemdC_category {
  margin-bottom: 10px;
}

.item_dC_bigT {
  margin-bottom: 26px;
  line-height: 1.3;
}

.item_dC_desc {
  margin-bottom: 30px;
  line-height: 1.3;
}

/*b8------*/
.hb8_block {
  position: relative;
  padding-top: 140px;
}

.hb8_header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 70px;
}

.hb8_h_title {
  width: 50%;
  max-width: 550px;
  align-self: flex-start;
}
.hb8_h_title .right {
  text-align: right;
}

.hb8_h_desc {
  width: 50%;
  max-width: 790px;
  line-height: 1.4;
}

.hb8_cards_cont {
  display: grid;
  grid-template-columns: repeat(3, 432px);
  gap: 80px;
  margin: 79px 0;
  justify-items: center;
  justify-content: center;
}

.hb8_card {
  cursor: pointer;
  max-width: 452px;
  width: 100%;
  height: 530px;
  padding: 54px;
  background-color: #000;
  transform: scale(1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hb8_card:hover {
  transform: scale(1.04);
}
.hb8_card:hover .bg {
  filter: blur(4px);
}
.hb8_card:hover .link {
  display: block;
  opacity: 1;
}
.hb8_card * {
  z-index: 2;
  position: relative;
}
.hb8_card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  transition: all ease 0.3s;
}
.hb8_card .header {
  margin-bottom: 15px;
  letter-spacing: 6px;
}
.hb8_card .title {
  line-height: 1.2;
  margin-bottom: 15px;
}
.hb8_card .text {
  line-height: 1.4;
}
.hb8_card .link {
  display: block;
  margin-top: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  height: 55px;
  text-align: center;
  line-height: 15px;
  display: none;
  opacity: 0;
}
.hb8_card.black > * {
  color: #000;
}

/*b9------*/
.hb9_block {
  width: 100%;
  padding-top: 95px;
  height: 571px;
  display: flex;
  flex-direction: row;
  box-sizing: content-box;
}

.block9img {
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: left center;
  position: relative;
}
.block9img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 80px;
  width: 53px;
  height: 93px;
  background-image: url(../img/red_mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.hb9_textB {
  width: 40%;
  height: 100%;
  padding-left: 120px;
  padding-right: 165px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hb9_textB .g_text {
  color: #919191;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 10px;
}
.hb9_textB .big_t {
  line-height: 1.2;
  margin-bottom: 20px;
}
.hb9_textB .text {
  line-height: 1.4;
}
.hb9_textB .redLinkBtn {
  margin-top: auto;
  margin-left: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  gap: 25px;
}

/*b10------*/
.hb10_block {
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 95px;
}

.ai_block {
  min-height: 900px;
  width: 100%;
  max-width: 1790px;
  flex: 1 0 auto;
  background: linear-gradient(180deg, rgba(135, 24, 24, 0.6392156863) 0%, #000000 60%);
  border-radius: 80px;
  position: relative;
  padding: 78px 73px 0px 100px;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.ai_block::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E3333F);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 10;
}
.ai_block .elipse {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  height: 50%;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  animation: elipseAnim 2s linear infinite;
}

@keyframes elipseAnim {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.red {
  font-family: inherit;
  color: #E3333F;
}

.ai_block_h {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 50;
}
.ai_block_h > div {
  width: 40%;
}
.ai_block_h p {
  font-family: "Poppins-SemiBold";
  line-height: 1;
}
.ai_block_h .ia_icon {
  width: 120px;
  height: 120px;
}

.ai_splide {
  flex: 1;
  display: flex;
  gap: 100px;
  z-index: 30;
}
.ai_splide .elipse {
  display: none;
}

.ai_home_vs {
  width: 540px;
  height: auto;
  align-self: flex-end;
  overflow-y: scroll;
  direction: rtl;
  padding-left: 40px;
  margin-bottom: 100px;
  scroll-behavior: smooth;
  /* Chrome, Edge and Safari */
}
.ai_home_vs > ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  scroll-behavior: smooth;
}
.ai_home_vs::-webkit-scrollbar {
  width: 5px;
}
.ai_home_vs::-webkit-scrollbar-track {
  background: transparent;
}
.ai_home_vs::-webkit-scrollbar-track:hover, .ai_home_vs::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.ai_home_vs::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}
.ai_home_vs::-webkit-scrollbar-thumb:hover, .ai_home_vs::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}

.text_slide {
  direction: ltr;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
}
.text_slide.is-active p {
  font-family: "Poppins-SemiBold";
}
.text_slide .sb_a {
  display: none;
}

.ai_img_slide {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  left: 0;
  bottom: 2px;
  max-height: 130%;
}

.ai_text_slide {
  position: relative;
  width: 412px;
  z-index: 20;
  line-height: 1.4;
  text-align: right;
}

/*---------------------------------------------About Us*/
.au_intro_block {
  position: relative;
  min-height: 100dvh;
  margin-bottom: 60px;
}
.au_intro_block .gtb_breadcrumb_cont {
  padding-bottom: 6rem;
}

.au_i_ci {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  width: 30%;
  aspect-ratio: 16/9;
}

.au_i_ft {
  position: absolute;
  bottom: 60px;
  right: 140px;
  font-size: 24px;
}
.au_i_ft span {
  font-family: "Poppins-Bold";
  font-size: inherit;
}

.au_i_videoC {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.au_i_poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*sb*/
.au_sb_cont {
  width: 100%;
  min-height: 100dvh;
  margin-bottom: 10dvh;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.au_sb_cont .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.au_sb_tc {
  position: relative;
  width: 60%;
  z-index: 2;
  text-align: center;
}
.au_sb_tc > * {
  font-family: "Poppins-light";
  line-height: 1.2;
}
.au_sb_tc > * strong {
  font-family: "Poppins-SemiBold";
}

/*who whe are*/
.wwa_cont {
  position: relative;
  width: 100%;
  margin-bottom: 15dvh;
}

.wwa_split {
  min-height: 100dvh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.wwa_split.oriRight {
  flex-direction: row-reverse;
}
.wwa_split.oriRight .wwa_leftCont {
  right: 0;
  top: 0;
  left: auto;
}
.wwa_split.borderC {
  min-height: 770px;
  border-radius: 50px;
  margin-bottom: 100px;
  overflow: hidden;
}
.wwa_split.borderC .wwa_leftCont::after {
  box-shadow: none;
}
.wwa_split.borderC.oriRight {
  padding-left: 150px;
}
.wwa_split.borderC .wwa_rigthCont {
  min-height: 0;
  max-width: 80%;
  padding-right: 150px;
}
.wwa_split.borderC li::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}

.wwa_leftCont {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
}
.wwa_leftCont::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  z-index: 2;
  box-shadow: inset rgb(0, 0, 0) 0px 0px 20px 16px;
}
.wwa_leftCont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wwa_rigthCont {
  position: relative;
  float: right;
  width: 50%;
  max-width: 670px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
  gap: 45px;
  z-index: 5;
}

.wwa_title {
  font-size: 43px;
  font-family: "Poppins-SemiBold";
}

.wwa_descC p {
  font-size: 24px;
  line-height: 1.4;
}
.wwa_descC ul > li:not(:last-child) {
  margin-bottom: 25px;
}
.wwa_descC li {
  font-size: 24px;
  line-height: 1.4;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.wwa_descC li:before {
  display: none;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

/*transparencia*/
.au_carrousel {
  padding-top: 120px;
  padding-bottom: 120px;
}

.au_carr_title {
  text-align: center;
  line-height: 1.2;
  margin: auto;
  margin-bottom: 30px;
  max-width: 80%;
}

.au_carr_textInfo {
  text-align: center;
  width: 760px;
  margin: auto;
  line-height: 1.4;
  margin-bottom: 70px;
  max-width: 80%;
}

.au_boxCont {
  position: relative;
  width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-height: 285px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.au_boxCont::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.au_boxCont .au_boxB:first-child {
  margin-left: auto;
}
.au_boxCont .au_boxB:first-child::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 1px;
  background-color: white;
}
.au_boxCont .au_boxB:last-child {
  margin-right: auto;
}
.au_boxCont .au_boxB:not(:last-child) {
  border-right: 1px white solid;
}

.au_boxB {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 353px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 70px;
  flex: 0 0 auto;
}
.au_boxB img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.au_boxB p {
  text-align: center;
  line-height: 1.2;
  margin-top: 20px;
}

/*our promise*/
.au_ourPromise {
  padding-top: 60px;
  padding-bottom: 40px;
}

.au_op_minititle {
  text-align: center;
  margin-bottom: 26px;
}

.au_op_bigtitle {
  text-align: center;
  margin-bottom: 21px;
}

.au_op_text {
  line-height: 1.2;
  text-align: center;
  width: 50%;
  margin: auto;
  margin-bottom: 40px;
}

.au_op_itemC {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  max-height: 790px;
  flex-direction: row;
  gap: 25px;
}

.au_op_cc {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: row;
  justify-content: center;
}

.au_op_c1 {
  border-radius: 50px;
  background-color: transparent;
  height: 100%;
  width: 35%;
  padding: 60px 53px;
  background-image: url(../img/ourPromise/Bg_ourPromise_left.png);
  background-size: cover;
}
.au_op_c1 > div {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.au_op_c1 > div::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.au_c1_fb {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.au_c1_fb img {
  width: 46px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}

.au_c1_tipTitle {
  margin-bottom: 20px;
}

.au_c1_fCont {
  padding: 20px;
  background-color: rgba(217, 217, 217, 0.1);
  border-radius: 15px;
  min-height: 77px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au_c1_fCont br {
  display: none;
}

.au_c1_sCont {
  position: relative;
  background-color: rgba(217, 217, 217, 0.1);
  border-radius: 15px;
  flex: 1 1 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.au_c1_sCont::before {
  content: "“";
  font-size: 100px;
  display: block;
  height: 50px;
}
.au_c1_sCont p {
  line-height: 1.2;
}
.au_c1_sCont::after {
  content: "“";
  font-size: 100px;
  display: block;
  height: 50px;
  text-align: right;
}

.au_op_c2 {
  border-radius: 50px;
  background-color: transparent;
  height: 100%;
  width: 55%;
  padding: 60px;
  background-image: url(../img/ourPromise/Bg_ourPromise.png);
  background-size: cover;
}
.au_op_c2 > div {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 30px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.au_op_c2 > div::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.au_op_c2 h4 {
  text-align: center;
  line-height: 1.3;
}
.au_op_c2 p {
  text-align: center;
  line-height: 1.4;
}

.au_op_c2_logo {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}

.au_op_vic {
  background-color: #141414;
  border-radius: 100px;
  padding: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
  flex: 0 0 auto;
}
.au_op_vic::-webkit-scrollbar {
  visibility: collapse;
  display: none;
  width: 0;
}
.au_op_vic .au_op_vi:not(:last-child) {
  margin-bottom: 20px;
}

.au_op_vi {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.au_op_vi.active {
  background-color: #E3333F;
}
.au_op_vi img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

/* A-3-Go*/
.au_a3go {
  padding-top: 154px;
  min-height: 100dvh;
  margin-bottom: 260px;
}

.au_a3go_big_lg {
  width: 28dvw;
  max-width: 650px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
  display: block;
}

.au_a3go_title {
  text-transform: uppercase;
  width: 100%;
  margin: auto;
  text-align: center;
  letter-spacing: 10px;
  margin-bottom: 70px;
}

/*out team*/
.au_ot_cont {
  min-height: 100dvh;
  padding-top: 150px;
  margin-bottom: 50px;
  position: relative;
}

.au_ot_header {
  position: relative;
  width: 100%;
  margin: auto;
  min-height: 180px;
  z-index: 3;
  display: flex;
  flex-direction: row;
}

.au_ot_fb {
  float: left;
  width: 50%;
}
.au_ot_fb .t1 {
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 10px;
}

.au_ot_sb {
  display: block;
  width: 50%;
}

.au_ot_sbt {
  line-height: 1.4;
  max-width: 690px;
  float: right;
}

.au_ot_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.au_ot_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0) grayscale(1);
}
.au_ot_bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 10%, rgba(255, 255, 255, 0) 51%, rgb(0, 0, 0) 90%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*Leader Team*/
.au_lt_cont {
  padding-top: 70px;
  position: relative;
  min-height: 100dvh;
}

.au_lt_title {
  position: absolute;
  top: 70px;
  left: 10%;
  z-index: 4;
}

.au_lt_carr_cont {
  display: flex;
  padding-bottom: 50px;
  height: calc(100dvh - 70px);
}

.au_lt_carr {
  width: 65%;
}

.au_lt_arrowC {
  width: 35%;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 96px;
  padding-right: 50px;
  margin-top: auto;
}

.au_lt_name {
  margin-bottom: 7px;
}

.au_lt_charge {
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

.au_lt_desc {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  line-height: 1.4;
}
.au_lt_desc::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.au_lt_desc::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0);
}
.au_lt_desc::-webkit-scrollbar-thumb {
  border-radius: 13px;
  background-color: #222222;
}

.au_lt_item {
  position: relative;
  width: 251px;
  height: 33%;
  aspect-ratio: 3/4;
  filter: grayscale(1);
  transition: all 0.4s ease;
  background: linear-gradient(0deg, #222222 0%, #222222 100%);
  cursor: pointer;
}
.au_lt_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
}

.au_lt_arrow {
  width: 100px;
  height: 100px;
  border-radius: 80px;
  background: linear-gradient(180deg, #E3333F 0%, #7D1C23 100%);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  margin-top: 40px;
}
.au_lt_arrow[data-orientation=left] {
  margin-right: 40px;
}
.au_lt_arrow[data-orientation=left]::after {
  background-image: url(../img/flecha.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 52px;
  height: 52px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.au_lt_arrow[data-orientation=right]::after {
  background-image: url(../img/flecha.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 52px;
  height: 52px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*Bottom*/
.au_bottom_cont {
  padding-top: 100px;
  margin-top: 150px;
  min-height: 80dvh;
  position: relative;
}
.au_bottom_cont .bigT {
  position: relative;
  line-height: 1.2;
  width: 60%;
  text-align: center;
  margin: auto;
  margin-bottom: 28px;
  z-index: 2;
}
.au_bottom_cont .smallT {
  position: relative;
  margin: auto;
  width: 70%;
  text-align: center;
  margin-bottom: 28px;
  z-index: 2;
}
.au_bottom_cont .redLinkBtn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  z-index: 2;
}
.au_bottom_cont .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  filter: brightness(0);
  background: linear-gradient(180deg, rgb(0, 0, 0) 10%, rgba(255, 255, 255, 0) 51%, rgb(0, 0, 0) 90%);
}

/*---------------------------------------------Industrias*/
.indus_moreInfoCont {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.indus_mi_tl {
  position: relative;
  line-height: 1.2;
  width: 42%;
  z-index: 2;
}
.indus_mi_tl strong {
  font-size: inherit;
  font-family: "Poppins-SemiBold";
}

.indus_mi_bg {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 70%;
  min-height: 50dvh;
  max-height: 100%;
  height: auto;
  right: 0px;
  top: 0;
  z-index: 0;
  -o-object-position: center bottom;
     object-position: center bottom;
  pointer-events: none;
}

.indus_mi_itemsCont {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 450px);
  gap: 60px;
  justify-items: center;
  justify-content: center;
  z-index: 2;
}

.indus_mi_item {
  background-color: #191919;
  width: 100%;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px 30px;
  gap: 20px;
}
.indus_mi_item:hover {
  background-color: white;
}
.indus_mi_item:hover .mi_item_text {
  color: #3C3C3B;
}
.indus_mi_item:hover .arrow {
  filter: brightness(0) saturate(100%) invert(22%) sepia(0%) saturate(0%) hue-rotate(212deg) brightness(96%) contrast(92%);
}

.mi_item_iconC {
  width: 60px;
  height: 60px;
  background-color: #E63340;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.mi_item_iconC img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 50%;
  height: 50%;
}

.mi_item_text {
  margin: auto;
  color: white;
  line-height: 1.3;
}

/*------------------------------------------- Casos de exito*/
.cde_cards_block {
  position: relative;
  min-height: 100dvh;
  padding-top: 190px;
  padding-bottom: 90px;
}

.cde_cards_h {
  width: 100%;
  margin: auto;
}
.cde_cards_h > * {
  text-align: center;
  width: 50%;
  margin: auto;
}
.cde_cards_h .smallT {
  margin-bottom: 25px;
}

.cde_cardsC {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 45px;
}

.pcde_card {
  display: flex;
  min-height: 400px;
  transition: all ease 0.3s;
  cursor: pointer;
  filter: grayscale(1);
  border-radius: 50px;
  border: 1px solid #E3333F;
  padding: 50px;
  position: relative;
  background-size: cover;
}
.pcde_card:hover {
  filter: grayscale(0);
}
.pcde_card:hover .redLinkBtn {
  opacity: 1;
}
.pcde_card.large {
  width: calc(50% - 25px);
  justify-content: flex-end;
}
.pcde_card.large.text_first {
  justify-content: flex-start;
}
.pcde_card.small {
  width: calc(33% - 25px);
  min-height: 560px;
  align-items: end;
}
.pcde_card.small .pcde_elogo {
  top: 50px;
  bottom: auto;
}
.pcde_card.small.text_first {
  align-items: baseline;
}
.pcde_card.small.text_first .pcde_elogo {
  top: auto;
  bottom: 50px;
}
.pcde_card.small .pcde_textC {
  width: 100%;
}
.pcde_card.small .pcde_textC > * {
  text-align: center;
}
.pcde_card.bottom .pcde_elogo {
  top: auto;
  bottom: 50px;
}
.pcde_card .redLinkBtn {
  transition: all 0.3s ease;
  opacity: 0;
  justify-content: center;
}

.pcde_elogo {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 30px;
  top: 20px;
}

.pcde_textC {
  width: 65%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pcde_small_title {
  line-height: 1.3;
}

.pcde_big_title {
  line-height: 1.2;
}

.pcde_text {
  line-height: 1.3;
}

/*carrousel*/
.cde_carrousel {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 30px 0;
}

.cde_carrousel_title {
  width: 90%;
  text-align: center;
  margin: auto;
}

.cde_carr_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  margin-top: 40px;
}

.cde_logo_cont {
  border-radius: 30px;
  background-color: #D9D9D9;
  aspect-ratio: 16/9;
  width: 380px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cde_logo_cont img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 150px;
  height: auto;
  max-height: 100%;
}

/*----------------------------- Single Industria*/
.si_percentage_block {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.si_per_title {
  text-align: center;
  max-width: 60%;
}

.si_per_text {
  max-width: 60%;
  text-align: center;
  line-height: 1.6;
}

.si_per_block {
  position: relative;
  width: 100%;
  min-height: 263px;
  padding: 50px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  gap: 40px;
  border-radius: 50px;
}
.si_per_block::after {
  content: "";
  position: absolute;
  margin: auto;
  pointer-events: none;
  z-index: 20;
  inset: 0;
  background: linear-gradient(280deg, rgb(227, 51, 63) 0%, rgb(255, 255, 255) 100%);
  padding: 2px;
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0) content-box;
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) exclude, linear-gradient(#000 0 0) content-box;
}

.si_per_item {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.si_per_number {
  text-align: center;
}

.si_per_numertext {
  text-align: center;
}

/*----------------------------- Servicios generales*/
.psg_header {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  background-size: cover;
}
.psg_header img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 400px;
  margin-bottom: 15px;
}
.psg_header .indicator {
  margin-bottom: 60px;
  letter-spacing: 15px;
  text-align: left;
}
.psg_header .gtb_breadcrumb_cont {
  position: relative;
}

/* cards*/
.psg_cards_cont {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  box-sizing: content-box;
  padding-top: 60px;
  padding-bottom: 60px;
}

.psg_card {
  width: 100%;
  min-height: 450px;
  padding: 60px;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
}
.psg_card:not(.os) > * {
  max-width: 60%;
}
.psg_card.os > div {
  width: 70%;
}
.psg_card .redLinkBtn {
  background-color: white;
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
}
.psg_card .redLinkBtn::after {
  filter: brightness(0);
}

.psg_card_border {
  border: 2px solid white;
  border-radius: 30px;
  padding: 15px 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.psg_card_border p {
  font-family: inherit;
}

.psg_wysy p {
  font-family: inherit;
  margin-bottom: 25px;
}

.psg_text {
  line-height: 1.4;
  margin-bottom: 30px;
}

.psg_os_list {
  font-family: "Poppins-SemiBold";
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  row-gap: 20px;
}
.psg_os_list li {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.4;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.psg_os_list li:before {
  display: none;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}

.psg_icon {
  -o-object-fit: contain;
     object-fit: contain;
  width: 340px;
  height: 340px;
}

/*----------------------------- single service page*/
.pss_vertical_cont {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
}

.pps_text {
  display: inline-block;
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.3;
}
.pps_text .icon_right {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  align-self: flex-end;
}
.pps_text p {
  width: 95%;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.pss_cards_c {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  width: 60%;
}
.pss_cards_c > div {
  max-width: 437px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 0 auto;
}
.pss_cards_c .right {
  margin-top: 275px;
}

.pss_card {
  position: relative;
  width: 100%;
  min-height: 550px;
  border-radius: 30px;
  padding: 40px;
  background-color: #191919;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.pss_card > * {
  z-index: 2;
}
.pss_card:hover .redLinkBtn {
  border: 0;
  background-color: #E63340;
}
.pss_card:hover::after {
  opacity: 1;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/pss/specialItemBg.png);
}
.pss_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.pss_card .redLinkBtn {
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: 1px solid white;
}

.pss_c_icon {
  width: 60px;
  height: 60px;
  margin-bottom: 50px;
}

.pss_c_title {
  margin-top: auto;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: left;
}

.pss_c_text {
  line-height: 1.4;
  text-align: left;
}

/*faqs*/
.pss_faq_cont {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
}

.pss_faq_header {
  position: relative;
  width: 100%;
  border-radius: 30px 30px 0 0;
  height: 500px;
  padding-left: 190px;
  background: linear-gradient(180deg, #731920 0%, #000 100%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.pss_faq_smallT {
  letter-spacing: 4px;
  z-index: 2;
}

.pss_faq_bigT {
  line-height: 1.4;
  z-index: 2;
}

.pss_fh_robot {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 30%;
  max-width: 360px;
  height: 120%;
  background-image: url(../img/AiImage.png);
  background-size: cover;
  background-position: top right;
  z-index: 1;
}

.pss_faq_block {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  transition: all 0.5s ease !important;
  box-shadow: 0 0 0px 0px #D5CFC8;
  background: linear-gradient(180deg, #731920 0%, #000 100%);
  border-radius: 30px 30px 0 0;
  height: 184px;
}

.pss_faq_open {
  position: relative;
  min-height: 100px;
  padding: 50px 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20%;
}
.pss_faq_open.active .pss_faq_cross::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.pss_faq_title {
  line-height: 1.4;
}

.pss_faq_cross {
  border-radius: 50px;
  width: 70px;
  height: 70px;
  position: relative;
  background-color: rgba(217, 217, 217, 0.2);
  flex: 0 0 auto;
}
.pss_faq_cross::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 2px;
  background-color: white;
}
.pss_faq_cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  width: 2px;
  height: 50%;
  background-color: white;
  transition: all 0.2s ease;
}

.pss_faq_answer {
  position: relative;
  padding: 50px 80px;
  line-height: 1.4;
}
.pss_faq_answer li:not(:last-child) {
  margin-bottom: 10px;
}
.pss_faq_answer p {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.pss_faq_answer li {
  font-size: inherit;
  line-height: inherit;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.pss_faq_answer li:before {
  display: none;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}

/*PopUp*/
.pss_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: none;
  overflow: auto;
  background-color: black;
  /* Chrome, Edge and Safari */
  z-index: 300;
}
.pss_pop.active {
  display: block;
}
.pss_pop::-webkit-scrollbar {
  width: 5px;
  display: none;
}
.pss_pop::-webkit-scrollbar-track {
  background: transparent;
}
.pss_pop::-webkit-scrollbar-track:hover, .pss_pop::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.pss_pop::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}
.pss_pop::-webkit-scrollbar-thumb:hover, .pss_pop::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}

.pss_close_pop {
  position: fixed;
  top: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-image: url(../img/openMenuClose.png);
  background-size: contain;
  background-position: center;
  padding: 10px;
  border: 0;
  background-color: transparent;
  z-index: 300;
}

.pops_sdc {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding-top: 140px;
  padding-left: 140px;
  padding-bottom: 60px;
  background-size: cover;
}

.pops_stc {
  position: relative;
  color: #E63340;
  width: 45%;
  margin-bottom: 120px;
}
.pops_stc.premiun::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 200px;
  background-image: url(../img/verticalRedLines.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(31%) sepia(9%) saturate(362%) hue-rotate(153deg) brightness(96%) contrast(90%);
  z-index: 3;
  transform: translate(-50%, -34%);
}
.pops_stc h1 {
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  z-index: 4;
}

.pops_wysy {
  width: 45%;
  margin-bottom: 40px;
}
.pops_wysy p {
  font-family: "Poppins-light";
  line-height: 1.4;
}
.pops_wysy p strong {
  font-size: inherit;
  font-family: "Poppins-SemiBold";
}

.pops_char_icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  padding-right: 50px;
}

.pops_charI {
  width: 340px;
  min-height: 90px;
  border: 1px solid white;
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}
.pops_charI img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 50px;
  height: 50px;
  display: inline-block;
  flex: 1 0 auto;
}
.pops_charI p {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.4;
}

/**/
.pops_scs {
  background-size: cover;
  min-height: 800px;
  padding-top: 200px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  gap: 70px;
}

.pops_scs_left {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 0 auto;
}

.pops_white ul {
  position: relative;
  background-color: white;
  padding: 40px;
  width: 500px;
  right: 0;
  bottom: 0;
}
.pops_white ul li:not(:last-child) {
  margin-bottom: 23px;
}
.pops_white ul li {
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  color: black;
  min-height: 20px;
}
.pops_white ul li::before {
  display: none;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.pops_scs_right {
  position: relative;
  width: 50%;
}

.pops_scs_title {
  width: 50%;
  margin-bottom: 70px;
  line-height: 1.3;
}

.pops_scs_scroll {
  width: 90%;
  min-height: 400px;
  /* Chrome, Edge and Safari */
}
.pops_scs_scroll::-webkit-scrollbar {
  width: 5px;
}
.pops_scs_scroll::-webkit-scrollbar-track {
  background: transparent;
}
.pops_scs_scroll::-webkit-scrollbar-track:hover, .pops_scs_scroll::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.pops_scs_scroll::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}
.pops_scs_scroll::-webkit-scrollbar-thumb:hover, .pops_scs_scroll::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #E3333F 0%, #FFFFFF 100%);
}

.pops_scs_ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  line-height: 1.3;
}
.pops_scs_ul li {
  position: relative;
  font-size: inherit;
  line-height: inherit;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.pops_scs_ul li::before {
  display: none;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}
.pops_scs_ul strong {
  font-family: "Poppins-SemiBold";
}

/**/
.pops_sd {
  position: relative;
  width: 100%;
  padding: 80px 140px 50px 140px;
}

.pops_sd_smallt {
  width: 60%;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

.pops_sd_bigt {
  width: 50%;
  margin: auto;
  text-align: center;
  margin-bottom: 120px;
  line-height: 1.4;
}

.pops_sd_dc {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  margin-top: 15px;
}
.pops_sd_dc .pops_sd_dc_i:not(:last-child) {
  border-right: 2px white solid;
}

.pops_sd_dc_i {
  min-height: 210px;
  padding: 0px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pops_sd_ico {
  position: relative;
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
}

.pops_sd_text {
  line-height: 1.4;
  margin-top: auto;
}

/*------------------------------- Vacantes page*/
.pv_title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.pv_title::after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(2270%) hue-rotate(71deg) brightness(123%) contrast(101%);
}

.pv_block_sp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 140px;
       column-gap: 140px;
  row-gap: 60px;
  margin-top: 60px;
}

.pv_item {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  background-color: #191919;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.pv_item:hover {
  background-color: #E3333F;
}
.pv_item:hover .pv_bar {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
.pv_item.small .pv_cont {
  padding: 35px 35px;
}
.pv_item.small .redLinkBtn {
  font-size: inherit;
}
.pv_item.small .redLinkBtn::after {
  width: 25px;
  height: 25px;
}

.pv_bar {
  display: block;
  width: 100%;
  height: 40px;
  background: #E3333F;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgb(227, 51, 63) 0%, rgb(255, 255, 255) 100%);
}

.pv_cont {
  position: relative;
  padding: 50px;
}
.pv_cont h3 {
  margin-bottom: 20px;
}
.pv_cont > * {
  line-height: 1.4;
}

.pv_button_cont {
  margin-top: 40px;
  overflow: hidden;
  height: 0px;
  transition: all 0.4s ease;
}
.pv_button_cont .redLinkBtn {
  margin-top: 0px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  color: black;
}
.pv_button_cont .redLinkBtn::after {
  filter: brightness(0);
}

.pv_country_rep {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 30px;
}
.pv_country_rep p::after {
  content: "|";
  position: relative;
  padding: 0px 20px;
}

/*----------------------------- single vacante page*/
.psv_hero {
  margin-bottom: 90px;
  position: relative;
  background-size: cover;
}
.psv_hero .gtb_breadcrumb_cont {
  padding-bottom: 0;
}

.psv_h_cont {
  padding-top: 290px;
  min-height: 80dvh;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.psv_h_cont .redLinkBtn {
  margin-top: 0;
}

.psv_h_bottom {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  gap: 30px;
}
.psv_h_bottom span {
  margin-left: 10px;
}

.psv_details {
  position: relative;
  min-height: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.psv_requeriment_cont {
  width: 60%;
  flex: 0 1 auto;
}

.psv_requeriment {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.psv_requeriment .requeriment {
  margin-left: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.psv_requeriment .requeriment.approved::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(2270%) hue-rotate(71deg) brightness(123%) contrast(101%);
}
.psv_requeriment .requeriment.failed::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.psv_wysy_cont * {
  line-height: 1.4;
}
.psv_wysy_cont strong {
  font-family: "Poppins-SemiBold";
  font-size: inherit;
}
.psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
  font-size: 28px;
  margin-bottom: 40px;
}
.psv_wysy_cont ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.psv_wysy_cont li {
  line-height: 1.4;
  position: relative;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.psv_wysy_cont li::before {
  display: none;
  vertical-align: middle;
  content: "";
  margin-right: 20px;
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
.psv_wysy_cont .psv_wysy:not(:last-child) {
  border-bottom: 1px white solid;
}

.psv_wysy {
  padding: 40px 0;
}

.psv_others {
  width: 30%;
  flex: 0 1 auto;
}
.psv_others .title {
  margin-bottom: 30px;
}
.psv_others * {
  line-height: 1.4;
}
.psv_others .pv_item {
  margin-bottom: 50px;
}

.psv_white_tip {
  position: relative;
  width: 100%;
  min-height: 300px;
  color: #000;
  padding: 50px;
  background-color: white;
  margin-top: 90px;
}
.psv_white_tip * {
  color: #000;
}
.psv_white_tip::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 80px;
  height: 80px;
  transform: translate(50%, -80%);
  background-image: url(../img/red_bell.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*----------------------------- contactenos page*/
.pct_section {
  position: relative;
  margin-top: 100px;
}

.pct_infocards_cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.pct_infocard {
  width: 100%;
  height: 438px;
  border-radius: 30px;
  border: 2px solid white;
  transition: all 0.3s ease;
  padding: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 6;
  /**/
}
.pct_infocard.phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.pct_infocard.phone * {
  text-align: center;
}
.pct_infocard.time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.pct_infocard.time .title {
  margin-bottom: 20px;
}
.pct_infocard.time .cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  float: right;
  width: 50%;
}
.pct_infocard.adress {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pct_infocard.adress .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
.pct_infocard.adress .cont * {
  line-height: 1.3;
  width: 40%;
}
.pct_infocard.adress .cont .separator {
  width: 2px;
  height: 100%;
  background-color: #E3333F;
  flex: 0 1 auto;
}
.pct_infocard.mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.pct_infocard:hover {
  border: 2px solid #E3333F;
}
.pct_infocard:hover .pct_bg {
  filter: grayscale(0);
}
.pct_infocard * {
  position: relative;
  z-index: 2;
}

.pct_bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background-size: cover;
  transition: all 0.3s ease;
  filter: grayscale(1);
}

.pct_iframeCont {
  position: relative;
  transform: translateY(-60px);
  width: 100%;
  min-height: 678px;
}
.pct_iframeCont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgb(0, 0, 0) 100%);
  z-index: 4;
}
.pct_iframeCont iframe {
  width: 100%;
  min-height: 678px;
}

/*----------------------------- Blogs page*/
.pb_blogs_cont {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  padding-top: 200px;
  padding-bottom: 60px;
}

.pb_blog_twy {
  position: relative;
  width: 80%;
  text-align: center;
  margin: auto;
  font-family: "Poppins-ExtraLight";
  margin-bottom: 3rem;
}
.pb_blog_twy p {
  font-family: inherit;
}
.pb_blog_twy strong {
  font-family: "Poppins-SemiBold";
}

.pb_blog_cont {
  margin-bottom: 40px;
}
.pb_blog_cont.type_a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pb_blog_cont.type_a > :nth-child(1) {
  grid-row: span 2/span 2;
}
.pb_blog_cont.type_a > :nth-child(2) {
  grid-column: span 2/span 2;
}
.pb_blog_cont.type_a > :nth-child(3) {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 2;
}
.pb_blog_cont.type_b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pb_blog_cont .pcde_card {
  width: 100%;
}
.pb_blog_cont .pcde_card .pcde_textC > * {
  text-align: left;
}
.pb_blog_cont .pcde_card.small .pb_blog_card_date {
  margin-bottom: 0;
}
.pb_blog_cont .pcde_card.large .pcde_elogo {
  position: relative;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
}
.pb_blog_cont .pcde_card .redLinkBtn {
  display: none;
}

.pb_blog_card_date {
  font-size: 20px;
  margin-bottom: 20px;
}

.pb_blog_index {
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 50px;
  border: 1px solid white;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.pb_blog_h {
  position: relative;
  padding: 30px 30px;
}
.pb_blog_h::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}
.pb_blog_h p {
  font-family: inherit;
  text-align: center;
}

.pb_index_c {
  padding: 30px;
  overflow: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 900px;
}
.pb_index_c::-webkit-scrollbar {
  display: none;
}

.pb_index_item {
  display: flex;
  flex-direction: row;
  gap: 25px;
  width: 100%;
}

.pb_i_img {
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.pb_i_title {
  margin-bottom: 15px;
  line-height: 1.3;
}

.pb_blog_pag {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
}

.pb_blog_pag_cont {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  overflow: auto;
  padding-bottom: 20px;
  /* Chrome, Edge and Safari */
}
.pb_blog_pag_cont::-webkit-scrollbar {
  padding-top: 20px;
  height: 5px;
  cursor: pointer;
}
.pb_blog_pag_cont::-webkit-scrollbar-track {
  background: transparent;
}
.pb_blog_pag_cont::-webkit-scrollbar-track:hover, .pb_blog_pag_cont::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.pb_blog_pag_cont::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: white;
  cursor: pointer;
}
.pb_blog_pag_cont::-webkit-scrollbar-thumb:hover, .pb_blog_pag_cont::-webkit-scrollbar-thumb:active {
  background: white;
}
.pb_blog_pag_cont > :nth-child(1) {
  margin-left: auto;
}

.pb_blog_bt_cont {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex: 0 0 auto;
}

.pb_blog_button {
  border: 2px white solid;
  border-radius: 20px;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  color: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pb_blog_button.number {
  background-color: transparent;
}
.pb_blog_button.number.active {
  background-color: #E3333F;
  border: 0;
}
.pb_blog_button.arrow {
  background-color: #191919;
  border: 0;
}
.pb_blog_button.arrow.left span {
  transform: rotate(180deg);
}
.pb_blog_button.arrow span {
  display: block;
  width: 35%;
  height: 35%;
  margin: auto;
}

/**/
.pb_newsletters {
  position: relative;
}
.pb_newsletters.pd_def {
  padding-right: 0;
}

.pb_nw_mt {
  margin-bottom: 15px;
}

.pb_nw_t {
  margin-bottom: 40px;
  font-family: "Poppins-SemiBold";
}

.pb_nw_i {
  display: flex;
  flex-direction: column;
  width: 510px;
  height: 100%;
  min-height: 680px;
  background-color: white;
}
.pb_nw_i * {
  color: #000;
}
.pb_nw_i:hover {
  background-color: #E3333F;
}
.pb_nw_i:hover .pb_donwload_btn {
  border: none;
  color: #000;
}
.pb_nw_i:hover * {
  color: white;
}

.pb_nw_img {
  height: 370px;
  background-color: gray;
  background-size: cover;
  flex: 1 0 auto;
}

.pb_nw_textc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 35px;
  height: 100%;
}
.pb_nw_textc * {
  line-height: 1.4;
}

.pb_donwload_btn {
  margin-top: auto;
  width: 100%;
  height: 60px;
  background-color: white;
  border-radius: 30px;
  border: 1px solid black;
  pointer-events: none;
}

/*----------------------------- single block*/
.psb_header_cont {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 70dvh;
  padding-top: 200px;
  padding-bottom: 90px;
  background-size: cover;
}

.psb_h_fb {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.psb_h_fb .date {
  margin-top: auto;
}
.psb_h_fb .date strong {
  font-family: "Poppins-SemiBold";
}
.psb_h_fb .title {
  line-height: 1.5;
}

.psb_h_sb {
  width: 15%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.psb_h_sb p {
  line-height: 1.5;
}
.psb_h_sb .first {
  margin-bottom: 20px;
  letter-spacing: 3px;
}

/**/
.psb_blog_cont {
  position: relative;
  padding-top: 150px;
  padding-bottom: 60px;
}
.psb_blog_cont > * {
  margin: auto;
  width: 80%;
}

.psb_b_title {
  margin-bottom: 75px;
}

.psb_b_textc * {
  line-height: 1.6;
}
.psb_b_textc strong {
  font-size: inherit;
  font-family: "Poppins-SemiBold";
}
.psb_b_textc h1, .psb_b_textc h2, .psb_b_textc h3, .psb_b_textc h4, .psb_b_textc h5, .psb_b_textc h6 {
  font-size: 28px;
}
.psb_b_textc ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.psb_b_textc ul ::marker {
  width: 20px;
  height: 20px;
}
.psb_b_textc li {
  font-size: inherit;
  line-height: inherit;
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
}
.psb_b_textc li::before {
  display: none;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
.psb_b_textc em {
  font-style: italic;
  font-size: inherit;
}
.psb_b_textc blockquote {
  position: relative;
  padding: 0 35px;
}
.psb_b_textc blockquote::before {
  content: "″";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 28px;
}
.psb_b_textc blockquote::after {
  content: "„";
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 28px;
}

.psb_b_separator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}
.psb_b_separator::before {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  background-color: white;
}
.psb_b_separator::after {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  background-color: white;
}

.psb_b_sl {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 25px;
  background-image: url(../img/footerLogo.png);
  flex: 0 0 auto;
}

/**/
.psb_b_divide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  min-height: 690px;
  padding: 60px 0;
}
.psb_b_divide.reverse {
  flex-direction: row-reverse;
}
.psb_b_divide.reverse .psb_b_d_text {
  transform: translateX(-10%);
}
.psb_b_divide.reverse .psb_b_d_image {
  transform: translateX(10%);
}
.psb_b_divide .psb_b_d_text {
  transform: translateX(10%);
}
.psb_b_divide .psb_b_d_image {
  transform: translateX(-10%);
}
.psb_b_divide > * {
  position: relative;
  min-height: 460px;
  max-width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 40px;
  background-color: rgba(31, 31, 31, 0.7);
  flex: 1 0 auto;
}
.psb_b_divide p {
  line-height: 1.4;
}

.psb_b_d_text {
  padding: 60px;
  z-index: 2;
  margin-top: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.psb_b_d_text strong {
  font-size: inherit;
  font-family: "Poppins-SemiBold";
}

.psb_b_d_image {
  background-size: cover;
  aspect-ratio: 16/9;
  z-index: 1;
  align-self: flex-start;
}

/*----------------------------- page landing*/
.landingNav {
  width: 80%;
  position: absolute;
  display: flex;
  padding: 10px 10px 10px 30px;
  border-radius: 45px;
  align-items: center;
  justify-content: space-between;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.landingNav.active {
  opacity: 1;
  pointer-events: all;
}

.landingLogo {
  width: 120px;
  height: 50px;
}

.landingNav_cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

/**/
.pland_hero {
  min-height: 100dvh;
  background-image: url(../img/landing/planding_hero.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 300px;
  padding-bottom: 90px;
}

.pland_hero_center_cont {
  min-height: 30dvh;
  padding: 0px 8dvw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
.pland_hero_center_cont > div {
  width: 26%;
}
.pland_hero_center_cont > div :not(:last-child) {
  margin-bottom: 20px;
}
.pland_hero_center_cont .left {
  align-self: flex-start;
}
.pland_hero_center_cont .right {
  align-self: flex-end;
}

.pland_boxico {
  width: 80px;
  aspect-ratio: 1;
  height: auto;
  background-image: url(../img/landing/logo_box.png);
}

/**/
.pland_purbleButton {
  padding: 15px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #8033E6 0%, #000000 100%);
  transition: all 0.3s ease;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.pland_purbleButton:hover {
  transform: scale(1.05);
}

.pland_container {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.pland_container > *:not(:last-child) {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  will-change: transform;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pland_container .pland_border_block:not(:first-child) {
  padding-top: 290px;
}

.pland_border_block {
  min-height: 100dvh;
  border-radius: 0 0 100px 100px;
  background-color: black;
  overflow: hidden;
}

.pland_white_info {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  border-radius: 30px;
  background-color: white;
  margin: auto;
  margin-top: 130px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.pland_white_info p {
  color: #606060;
  vertical-align: middle;
}

.pland_white_ico {
  aspect-ratio: 1;
  width: 30px;
  height: auto;
}

.pland_gtitle {
  text-align: center;
  line-height: 1.2;
}
.pland_gtitle span {
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: inherit;
}
.pland_gtitle.purple {
  color: #3F1E6B;
}

.planding_boxbg {
  position: relative;
}
.planding_boxbg * {
  z-index: 2;
  position: relative;
}
.planding_boxbg::after {
  content: "";
  position: absolute;
  top: -290px;
  left: 0;
  width: 100%;
  height: calc(100% + 290px);
  background-image: url(../img/landing/fondoA.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pland_benefict_table {
  width: 80%;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  justify-content: space-between;
  justify-items: center;
}
.pland_benefict_table .pland_bene_card:not(:last-child) {
  margin-bottom: 40px;
}

.pland_bene_card {
  width: 500px;
  border-radius: 20px;
  background-color: white;
  padding: 30px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
.pland_bene_card > p {
  color: black;
  line-height: 1.3;
  align-self: center;
}
.pland_bene_card.purple {
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
}
.pland_bene_card.purple > p {
  color: white;
  line-height: 1.3;
}
.pland_bene_card.purple .pland_bene_check {
  background-color: white;
  background-image: url(../img/landing/check1.svg);
}

.pland_bene_check {
  width: 28px;
  height: 28px;
  flex: 1 0 auto;
  background-color: #D9D9D9;
  border-radius: 50px;
  background-image: url(../img/landing/x.svg);
}

/**/
.pland_HyphatIA {
  margin: auto;
  margin-top: 80px;
  margin-bottom: 100px;
  border-radius: 40px;
  background-color: rgba(25, 10, 34, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 80px 60px;
  padding-left: 0;
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pland_iahand {
  width: 50%;
  background-image: url(../img/landing/iaHand.png);
  height: -webkit-fill-available;
  background-position: left center;
}

.pland_iatextcont {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pland_iatextcont strong {
  font-family: "Poppins-SemiBold";
}
.pland_iatextcont .pland_white_info {
  margin: 0;
}

/**/
.pland_white_bar {
  padding-top: 65px;
  padding-bottom: 65px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
}
.pland_white_bar > div {
  width: 40%;
}
.pland_white_bar .left_block p {
  color: #3F1E6B;
  margin-bottom: 30px;
}
.pland_white_bar .right_block {
  display: flex;
  flex-direction: column;
}
.pland_white_bar .right_block .info {
  padding: 20px 40px;
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  margin-bottom: 30px;
}
.pland_white_bar .right_block .info .ico {
  background-image: url(../img/landing/planding_icon_3.svg);
  aspect-ratio: 1;
  width: 40px;
  height: auto;
}
.pland_white_bar .right_block .text_cont p {
  color: #3C3C3B;
  line-height: 1.3;
}
.pland_white_bar .right_block .text_cont strong {
  font-family: "Poppins-Bold";
  font-size: inherit;
  color: #000;
  line-height: 1.3;
}

/**/
.pland_info {
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}
.pland_info.purpleLight {
  color: #D9C2F8;
}
.pland_info.purple {
  color: #3F1E6B;
}
.pland_info strong {
  color: inherit;
  font-family: "Poppins-SemiBold";
}

.pland_aspect_cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pland_aspect {
  padding: 20px 40px;
  border-radius: 20px;
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  width: -moz-fit-content;
  width: fit-content;
}
.pland_aspect p {
  line-height: 1;
  color: #3F1E6B;
}

.pland_think_ul {
  margin: auto;
  margin-top: 60px;
  border-radius: 40px;
  background-color: rgba(25, 10, 34, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px 50px;
  width: 70%;
}
.pland_think_ul > li:not(:last-child) {
  border-bottom: 2px solid #D9C2F8;
}

.pland_think_li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 30px 0;
}
.pland_think_li p {
  line-height: 1.4;
}
.pland_think_li > :first-child {
  margin-left: 20px;
}
.pland_think_li > :last-child {
  margin-right: 20px;
}

/**/
.pland_borderWhite {
  min-height: 400px;
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  margin-top: auto;
  z-index: -2;
}
.pland_borderWhite::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  background-image: url(../img/landing/landing_border_bg.jpg);
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 900px;
}

.pland_gr_cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
}

.pland_grcard {
  position: relative;
  width: 20%;
  height: -webkit-fill-available;
  padding: 60px 50px;
  border-radius: 50px;
}
.pland_grcard.expand {
  width: 32%;
}
.pland_grcard p {
  line-height: 1.3;
}
.pland_grcard :first-child {
  color: #000;
  margin-bottom: 30px;
}
.pland_grcard :last-child {
  color: #3C3C3B;
}
.pland_grcard::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 10;
}

/**/
.pland_radar_block {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: auto;
  margin-top: 45px;
}
.pland_radar_block .left {
  width: 60%;
}
.pland_radar_block .right {
  width: 40%;
  background-image: url(../img/landing/purple_radar.png);
}

.pland_radar_grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 38px;
       column-gap: 38px;
  row-gap: 25px;
  min-height: 416px;
}
.pland_radar_grid > div {
  border-radius: 50px;
  background-color: #3F1E6B;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.pland_radar_grid p {
  text-align: center;
}
.pland_radar_grid > :nth-child(1) {
  grid-row: span 3/span 3;
}
.pland_radar_grid > :nth-child(2) {
  grid-row: span 2/span 2;
}
.pland_radar_grid > :nth-child(3) {
  grid-row: span 2/span 2;
}
.pland_radar_grid > :nth-child(4) {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 3;
  background: linear-gradient(60deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  flex-direction: row;
}
.pland_radar_grid > :nth-child(4) p {
  color: #3F1E6B;
  text-align: left;
}
.pland_radar_grid > :nth-child(4) .pland_radar_bar {
  background: #3F1E6B;
  margin: auto 20px;
}

.pland_radar_ico {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.pland_radar_bar {
  min-width: 3px;
  height: 58px;
  background: linear-gradient(180deg, rgb(166, 112, 238) 0%, rgb(217, 194, 248) 100%);
  flex: 0 1 auto;
}

/**/
.pland_neuMind {
  position: relative;
  padding-top: 300px;
  padding-bottom: 90px;
}

.pland_nm_pc {
  margin: auto;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
  max-width: 1500px;
}

.pland_nm_card {
  margin-top: 40px;
  background-color: #190a22;
  border-radius: 80px;
  min-height: 850px;
  padding: 0 50px 30px 50px;
}

.pland_nm_c_photo {
  position: relative;
  border-radius: 40px;
  background-color: #3F1E6B;
  width: 50%;
  min-height: 400px;
  top: -36px;
  background-size: cover;
  background-position: top;
}

.p_land_nm_charge {
  background-color: #3F1E6B;
  padding: 10px 40px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 50px;
}

/*----------------------------- General top block*/
.gtb_block {
  display: flex;
  flex-direction: column;
  position: relative;
  /*min-height: 100dvh;*/
}

.gtb_infoCont {
  position: relative;
  min-height: 75dvh;
  background-size: cover;
  padding: 140px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gtb_ic_sh {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(../img/gtb/red_shadow.png);
  z-index: 1;
  top: 0;
  left: 0;
}

.gtb_ic_gc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  z-index: 2;
  margin: auto;
}
.gtb_ic_gc.format_a {
  width: 80%;
}

.gtb_formatA_title {
  text-align: center;
  line-height: 1.4;
}

.gtb_formatA_text {
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
}

.gtb_formatB_icon {
  width: 100px;
  height: 100px;
  background-color: #E63340;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gtb_formatB_icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 50%;
  height: 50%;
}

.gtb_formatB_title {
  font-family: "Poppins-SemiBold";
  margin-top: 10px;
}

.gtb_formatB_text {
  font-family: "Poppins-light";
  font-size: 90px;
  margin-top: 20px;
  text-align: center;
}

.gtb_breadcrumb_cont {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 20px;
  z-index: 12;
  gap: 10px;
}

.gtb_redbar {
  position: relative;
  min-height: 25dvh;
  background-size: cover;
  background-image: url(../img/gtb/Gtp_red_bar.png);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.gtb_redbar > * {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gtb_lc_smallT {
  width: 80%;
  text-align: left;
  margin-bottom: 15px;
  align-self: flex-start;
}

.gtb_lc_bigT {
  width: 80%;
  text-align: left;
  line-height: 1.2;
  align-self: flex-start;
}

.gtb_rc_text {
  width: 80%;
  line-height: 1.4;
  align-self: flex-end;
}

/*----------------------------- blocks*/
/*Split block*/
.spb_cont {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.spb_split {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.spb_split.rounded {
  border-radius: 50px;
}
.spb_split.rounded .spb_image::after {
  display: none;
}
.spb_split.frame {
  min-height: 500px;
  overflow: hidden;
  padding: 70px 0;
  max-width: 1600px;
  margin: auto;
}
.spb_split.frame .spb_title {
  width: 70%;
}
.spb_split.frame .spb_descC {
  width: 70%;
}
.spb_split.frame .spb_descC li::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}
.spb_split.frame.right .spb_textC {
  align-items: flex-end;
  width: 60%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-right: 150px;
}
.spb_split.frame.left .spb_textC {
  align-items: flex-start;
  width: 60%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-left: 150px;
}
.spb_split.mini_frame {
  min-height: 500px;
  overflow: hidden;
  padding: 50px;
}
.spb_split.mini_frame .spb_frontImage .spb_image {
  width: 30%;
}
.spb_split.mini_frame .spb_textC {
  font-size: 40px;
}
.spb_split.mini_frame .spb_descC li::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
}
.spb_split.mini_frame.right .spb_textC {
  width: 60%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-right: 150px;
}
.spb_split.mini_frame.left .spb_textC {
  width: 60%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-left: 150px;
}
.spb_split.right {
  justify-content: flex-end;
}
.spb_split.right .spb_image {
  left: 0;
}
.spb_split.left {
  justify-content: flex-start;
}
.spb_split.left .spb_image {
  right: 0;
}

.spb_image {
  position: absolute;
  height: 100%;
  top: 0;
}
.spb_image.spb_frontImage {
  width: 50%;
}
.spb_image.spb_bgImage {
  width: 100%;
  background-size: cover;
}
.spb_image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  z-index: 2;
  box-shadow: inset rgb(0, 0, 0) 0px 0px 20px 16px;
}

.spb_textC {
  position: relative;
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 5;
}
.spb_textC strong {
  font-size: inherit;
}
.spb_textC .redLinkBtn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
}

.spb_title {
  line-height: 1.4;
}

.spb_descC p {
  line-height: 1.4;
}
.spb_descC ul > li:not(:last-child) {
  margin-bottom: 15px;
}
.spb_descC li {
  list-style: none;
  padding-left: 30px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
  min-height: 20px;
  line-height: 1.4;
}
.spb_descC li:before {
  display: none;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/wwa/red_li_dot.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

/*----------------------------- red rectanble block*/
.rrb_blockC {
  margin: 35px auto;
  position: relative;
  border-radius: 50px;
  z-index: 0;
}

.rrb_borderCont {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background-size: cover;
  background-image: url(../img/rrb/shadow.png);
  border-radius: 50px;
  padding: 50px 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: auto;
}
.rrb_borderCont::after {
  content: "";
  position: absolute;
  margin: auto;
  pointer-events: none;
  z-index: 20;
  inset: 0;
  background: linear-gradient(280deg, rgb(227, 51, 63) 0%, rgb(255, 255, 255) 100%);
  padding: 2px;
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0) content-box;
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) exclude, linear-gradient(#000 0 0) content-box;
}
.rrb_borderCont .redLinkBtn {
  color: #000;
  background-color: white;
  padding: 14px 50px;
  margin-top: 0;
}
.rrb_borderCont .redLinkBtn::after {
  filter: brightness(0);
}

.rrb_title {
  text-align: center;
}

.rrb_text {
  line-height: 1.2;
  text-align: center;
}

/*----------------------------- 2 cards block*/
.dcb_cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
  box-sizing: content-box;
  justify-content: center;
}

.dcb_item {
  max-width: 680px;
  width: calc(50% - 20px);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.dcb_item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 150px;
  height: 150px;
  flex: 1 0 auto;
}

.dcb_title {
  font-family: "Poppins-light";
  font-size: 50px;
}

.dcb_text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.4;
}

/*-------------------------- formulary*/
.formulary {
  min-height: 1000px;
  margin-top: 140px;
  margin-bottom: 140px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  gap: 90px;
  justify-content: space-between;
  position: relative;
}
.formulary::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 50%;
  width: calc(100% - 200px);
  height: 100%;
  border-top: 1px white solid;
  border-bottom: 1px white solid;
  z-index: 6;
  transform: translateX(-50%);
}

.form_text {
  width: 25%;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.form_text * {
  line-height: 1.3;
}

.form_fields {
  width: 65%;
  flex: 0 1 auto;
}
.form_fields * {
  line-height: 1.3;
}

.form_ordened {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.form_ordened .form_ta {
  grid-column: span 2/span 2;
}

.form_input {
  color: white;
  width: 100%;
  border-radius: 20px;
  border: none;
  height: 70px;
  margin-top: 20px;
  padding: 20px 25px;
  outline: none;
  background: #191919;
  transition: 0.3s ease;
}
.form_input:focus {
  background: #191919;
  border: 0px solid #C7C7C7;
}
.form_input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3647058824);
}
.form_input::placeholder {
  color: rgba(255, 255, 255, 0.3647058824);
}
.form_input.form_texta {
  min-height: 300px;
}

.form_lastC {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}
.form_lastC label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form_lastC span {
  cursor: pointer;
}
.form_lastC .redLinkBtn {
  margin-top: 0;
}
.form_lastC .redLinkBtn::after {
  display: none;
}

.form_checkbox {
  opacity: 0;
  display: none;
}
.form_checkbox:checked ~ .f_check::after {
  display: block;
}

.f_check {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #5a5a5a;
  background-color: #191919;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
  flex: 1 0 auto;
}
.f_check::after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/*----------------------------- breadcrum*/
.breadcrumLink {
  position: relative;
  cursor: pointer;
}
.breadcrumLink::after {
  content: ">";
  margin-left: 10px;
  font-family: "Poppins-SemiBold";
  font-size: inherit;
  vertical-align: middle;
}

/*----------------------------- splide*/
.splide_home_ai {
  display: flex;
  width: 70%;
  flex-direction: row-reverse;
  justify-content: flex-end;
  overflow-x: clip;
  overflow-y: visible;
}
.splide_home_ai .splide__track {
  overflow: visible !important;
  width: 100%;
}
.splide_home_ai .redLinkBtn {
  margin-top: 0;
  z-index: 4;
}
.splide_home_ai .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 15px;
}
.splide_home_ai .splide__slide > :last-child {
  margin-bottom: 100px;
}

.splide_au_op {
  overflow: hidden;
  max-width: 1300px;
}
.splide_au_op .splide__track {
  height: 100%;
}

.splide_au_lt {
  height: 100%;
}
.splide_au_lt .splide__track {
  height: 100%;
}
.splide_au_lt .splide__list {
  align-items: flex-end;
}
.splide_au_lt .splide__list .au_lt_item:nth-child(even) {
  background: linear-gradient(0deg, #101010 0%, #101010 100%);
}
.splide_au_lt .au_lt_item.is-active {
  filter: grayscale(0);
  height: 100%;
  background: linear-gradient(0deg, #E3333F 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.splide_au_lt .au_lt_item.is-active::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 22%) !important;
  z-index: 20;
  pointer-events: none;
}

.pb_newsletter_cont {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
.pb_newsletter_cont .splide__list li:last-child {
  padding-right: 40px;
}
.pb_newsletter_cont .splide__arrows {
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 50px;
  gap: 20px;
}
.pb_newsletter_cont .splide__arrows .splide__arrow {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: white;
  transform: none;
  opacity: 1;
  left: 0;
  right: 0;
}
.pb_newsletter_cont .splide__arrows .splide__arrow:disabled {
  opacity: 0.5;
}
.pb_newsletter_cont .splide__arrows .splide__arrow svg {
  width: 30%;
  height: 30%;
}

/*----------------------------- footer*/
.paperText {
  font-size: 16px !important;
}

#footer {
  background-color: black;
  position: relative;
  width: 100%;
  margin: auto;
}

.fsuscribe_cont {
  position: relative;
  background-color: #313535;
  padding-top: 60px;
  padding-bottom: 60px;
}

.fsuscribe_bt {
  margin-bottom: 28px;
}

.fsuscribe_st {
  line-height: 1.45;
}

.items_fsuscribe {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  max-width: 2000px;
  margin: auto;
}

.fsuscribe_f {
  background-color: #666E6E;
  border-radius: 200px;
  width: 700px;
  height: 110px;
  display: flex;
  justify-content: center;
  padding: 18px;
}
.fsuscribe_f input[type=email] {
  color: #E3E0E0;
  font-size: inherit;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 0.7em;
}
.fsuscribe_f input[type=email]::-moz-placeholder {
  color: #E3E0E0;
}
.fsuscribe_f input[type=email]::placeholder {
  color: #E3E0E0;
}
.fsuscribe_f input[type=email]:focus {
  color: #E3E0E0;
}
.fsuscribe_f input[placeholder=Email] {
  color: #E3E0E0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 0.7em;
}
.fsuscribe_f input[placeholder=Email]::-moz-placeholder {
  color: #E3E0E0;
}
.fsuscribe_f input[placeholder=Email]::placeholder {
  color: #E3E0E0;
}
.fsuscribe_f input[placeholder=Email]:focus {
  color: #E3E0E0;
}
.fsuscribe_f .suscribeBtn {
  color: white;
  background-color: #E63340;
  border-radius: 70px;
  height: 100%;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 18px 25px;
}

/*--------*/
.finfo_cont {
  padding-top: 95px;
  padding-bottom: 95px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ful_cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 365px;
  max-width: 2000px;
  width: 100%;
}
.ful_cont p, .ful_cont a {
  line-height: 1.3;
}

.fo_logoCont {
  min-width: 278px;
  display: flex;
  flex-direction: column;
}
.fo_logoCont p {
  font-size: 12px;
}

.fo_logo {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: center top;
  margin-bottom: 10px;
}

.fo_infob {
  min-width: 437px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fo_infob > div {
  max-width: 438px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.ftitle {
  font-family: "Poppins-Bold";
  font-size: 24px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.fdirection_cont :not(:last-child) {
  margin-bottom: 20px;
}

.ficonRed {
  width: 25px;
  height: 25px;
  margin-right: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  flex: 0 0 auto;
}

.fo_accessCont {
  max-width: 377px;
  display: flex;
  flex-direction: column;
}

.fo_access {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  margin-bottom: 50px;
}

.fo_socialCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.fo_socialCont .socialIcon {
  width: 45px;
  height: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*-------------------------------------- responsive */
@media only screen and (max-width: 1800px) {
  .hb1_linesCont > div {
    transform: skewX(-24deg);
  }
  .hb_transform .sbLogo {
    top: 45%;
    height: auto;
  }
  .robotHand {
    height: 177px;
  }
  .humanHand {
    height: 344px;
  }
}
@media only screen and (max-width: 1600px) {
  /*----------------------------- fonts*/
  .big_title_text {
    font-size: 75px;
  }
  .big_inter_text {
    font-size: 55px;
  }
  .big_mid_title_text {
    font-size: 46px;
  }
  .semi_big_title {
    font-size: 25px;
  }
  .mid_text {
    font-size: 20px;
  }
  .inter_text {
    font-size: 18px;
  }
  .small_text {
    font-size: 15px;
  }
  .ssmall_text {
    font-size: 14px;
  }
  .paperText {
    font-size: 15px !important;
  }
  .pd_def {
    padding-left: 80px;
    padding-right: 80px;
  }
  /*----------------------------- Home*/
  .hb1_linesCont > div {
    transform: skewX(-17deg);
    width: 35px;
  }
  .hb_transform {
    height: 624px;
  }
  .hb_transform .sbLogo {
    left: 53%;
    width: 151px;
    height: 210px;
  }
  .hb_transform .redTriangle {
    width: 460px;
  }
  .humanHand {
    height: 290px;
  }
  .robotHand {
    height: 152px;
  }
  /*--atom b*/
  .hb2_smallText {
    width: 450px;
    font-size: 17px;
  }
  .hb2_centerTitle {
    font-size: 58px;
    width: 650px;
  }
  .hb2_atomBlock h1 {
    line-height: 1.2;
  }
  .atom_flex h3 {
    font-size: 30px;
  }
  /*hb5*/
  .cde_info {
    padding: 60px 108px;
  }
  .cde_info .cde_subTitle {
    margin-bottom: 20px;
  }
  .cde_wb {
    padding: 15px 35px;
    margin-bottom: 50px;
  }
  .cde_score {
    padding: 60px 108px;
  }
  /*hb7*/
  .header_dC {
    margin-bottom: 35px;
  }
  .header_dC .ico {
    width: 70px;
    height: 70px;
  }
  .autoDigi_cont {
    max-height: 615px;
  }
  .autoDigi_iC .item {
    height: 20%;
  }
  .ad_icIco {
    width: 55px;
    height: 55px;
  }
  .ad_icText {
    line-height: 1.3;
  }
  .autoDigi_dC {
    padding: 74px 90px 36px 86px;
  }
  .item_dC .redLinkBtn {
    padding: 15px 18px;
  }
  /*hb8*/
  .hb8_cards_cont {
    gap: 40px;
    grid-template-columns: repeat(3, 384px);
  }
  /*hb9*/
  .hb9_block {
    height: 500px;
  }
  .block9img {
    width: 50%;
  }
  .hb9_textB {
    width: 50%;
    padding-left: 100px;
    padding-right: 145px;
  }
  .hb9_textB .redLinkBtn {
    gap: 10px;
    padding: 10px 18px;
  }
  /*hb10*/
  .hb10_block {
    max-height: 1300px;
  }
  .ai_block {
    padding: 70px 68px 0px 70px;
    min-height: 900px;
  }
  .ai_block_h > * div {
    width: 60%;
  }
  .ai_block_h .ia_icon {
    width: 100px;
    height: 100px;
  }
  .ai_splide {
    gap: 20px;
  }
  .ai_home_vs {
    height: auto;
    padding-left: 20px;
    margin-bottom: 60px;
  }
  .ai_img_slide {
    max-width: 70%;
  }
  .splide_home_ai .splide__slide > :last-child {
    margin-bottom: 60px;
  }
  /*----------------------------- AU*/
  /*transparency*/
  .au_carr_title {
    margin-bottom: 25px;
  }
  .au_carr_textInfo {
    margin-bottom: 60px;
  }
  .au_boxCont {
    min-height: 260px;
  }
  .au_boxB {
    width: 300px;
    padding: 30px 60px;
  }
  .au_boxB img {
    width: 60px;
    height: 60px;
  }
  /*our promise*/
  .au_op_text {
    font-size: 20px;
    margin-bottom: 4rem;
  }
  .au_op_c1 {
    padding: 50px 43px;
  }
  .au_c1_fb {
    margin-bottom: 37px;
  }
  .au_c1_fb img {
    width: 42px;
    height: 42px;
  }
  .au_c1_sCont {
    padding: 40px;
  }
  .au_c1_sCont::after, .au_c1_sCont::before {
    font-size: 80px;
  }
  .au_op_c2 {
    padding: 50px;
    gap: 30px;
  }
  .au_op_c2_logo {
    width: 130px;
    height: 130px;
  }
  .au_op_itemC {
    max-height: 750px;
  }
  .au_op_vic .au_op_vi:not(:last-child) {
    margin-bottom: 15px;
  }
  .au_op_vi {
    width: 60px;
    height: 60px;
  }
  /*vertical*/
  .au_a3go_big_lg {
    height: 160px;
  }
  /*out team*/
  .au_ot_fb .t1 {
    letter-spacing: 6px;
  }
  /*leader team*/
  .au_lt_arrow {
    width: 80px;
    height: 80px;
  }
  /*----------------------------- page Casos exito*/
  .cde_cards_h .smallT {
    margin-bottom: 15px;
  }
  .cde_cards_h > * {
    width: 60%;
  }
  .cde_cardsC {
    margin-bottom: 70px;
  }
  .pcde_card {
    min-height: 330px;
    height: 100%;
  }
  .pcde_card.small {
    min-height: 560px;
  }
  .pcde_card .redLinkBtn {
    margin-top: 0;
  }
  .pcde_elogo {
    width: 45px;
    height: 45px;
  }
  .pcde_textC {
    gap: 15px;
  }
  /**/
  .cde_logo_cont {
    width: 330px;
    height: 130px;
  }
  .cde_logo_cont img {
    width: 180px;
  }
  /*----------------------------- page Industrias*/
  .indus_mi_itemsCont {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
  .mi_item_iconC {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- page servicios*/
  .psg_header img {
    width: 350px;
  }
  .psg_card {
    padding: 54px;
    min-height: 380px;
  }
  .psg_card_border {
    margin-bottom: 15px;
  }
  .psg_icon {
    width: 330px;
    height: 330px;
  }
  .psg_wysy p {
    margin-bottom: 16px;
  }
  /*----------------------------- Service single*/
  .pps_text .icon_right {
    width: 45px;
    height: 45px;
  }
  .pss_cards_c .right {
    margin-top: 240px;
  }
  .pss_card {
    min-height: 480px;
  }
  /**/
  .pss_faq_header {
    padding-left: 90px;
    height: 400px;
  }
  .pss_fh_robot {
    right: 7%;
    width: 30%;
  }
  /*----------------------------- page contact*/
  .pct_infocard {
    height: 380px;
  }
  .pct_infocard.adress {
    gap: 30px;
  }
  /*----------------------------- page vacante*/
  .pv_block_sp {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  /*----------------------------- single vacante*/
  .psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
    font-size: 24px;
  }
  /*----------------------------- single blog*/
  .psb_blog_cont > * {
    width: 90%;
  }
  .psb_b_divide > * {
    min-height: 440px;
    padding: 45px;
  }
  /*----------------------------- landing*/
  .pland_radar_grid > div {
    padding: 10px 25px;
    border-radius: 35px;
  }
  .pland_think_ul {
    width: 90%;
  }
  .pland_grcard {
    width: 320px;
  }
  .pland_grcard.expand {
    width: 420px;
  }
  /*----------------------------- vertical cards*/
  .redLinkBtn {
    font-size: 16px;
    gap: 10px;
    padding: 10px 25px;
  }
  .redLinkBtn.atomB {
    padding: 10px 25px;
    gap: 10px;
  }
  .hb3_cardsCont {
    gap: 40px;
  }
  .hb3_card {
    width: 430px;
    min-height: 750px;
  }
  .hb3_card.center .text {
    width: auto;
  }
  .hb3_card .logo {
    width: 100px;
    height: 100px;
  }
  .hb3_card .text {
    width: auto;
  }
  /*----------------------------- Blocks*/
  /*formulary*/
  .formulary {
    gap: 70px;
  }
  .formulary::after {
    width: calc(100% - 160px);
  }
  /*2 card block*/
  .dcb_item {
    padding: 50px;
    gap: 35px;
  }
  .dcb_item img {
    width: 120px;
    height: 120px;
  }
  .dcb_title {
    font-size: 40px;
  }
  .dcb_text {
    font-size: 18px;
  }
  /*red card block*/
  .rrb_borderCont {
    gap: 40px;
  }
  /*general top block*/
  .gtb_formatB_icon {
    width: 70px;
    height: 70px;
  }
  .gtb_formatB_text {
    margin-top: 10px;
    font-size: 80px;
  }
  /*general bottom block*/
  .au_bottom_cont .bigT {
    margin-bottom: 30px;
  }
  .au_bottom_cont .smallT {
    margin-bottom: 35px;
  }
  /*full block*/
  .si_percentage_block {
    gap: 20px;
  }
  .si_per_block {
    margin-top: 20px;
    min-height: 220px;
    padding: 30px 70px;
  }
  /*split block*/
  .spb_textC {
    gap: 20px;
  }
  .spb_split.frame.left .spb_textC {
    padding-left: 100px;
  }
  .spb_split.frame.right .spb_textC {
    align-items: flex-end;
    padding-right: 100px;
  }
  .spb_split.mini_frame.left .spb_textC {
    padding-left: 0px;
  }
  .spb_split.mini_frame.right .spb_textC {
    padding-right: 0px;
  }
  /*PopUp*/
  .pss_close_pop {
    width: 50px;
    height: 50px;
  }
  .pops_sdc {
    padding-left: 110px;
  }
  .pops_stc.premiun::after {
    height: 180px;
  }
  .pops_char_icons {
    gap: 25px;
  }
  .pops_charI {
    padding: 10px 30px;
    width: 275px;
    min-height: 90px;
  }
  .pops_charI img {
    width: 50px;
    height: 50px;
  }
  .pops_scs {
    gap: 50px;
  }
  .pops_white ul {
    padding: 35px;
  }
  .pops_white ul li:not(:last-child) {
    margin-bottom: 16px;
  }
  .pops_scs_title {
    width: 80%;
  }
  .pops_sd_bigt {
    width: 70%;
  }
  .pops_sd {
    padding: 80px 110px 50px 110px;
  }
  .pops_sd_dc_i {
    padding: 0px 40px;
  }
  .pops_sd_ico {
    width: 60px;
    height: 60px;
  }
  /*----------------------------- header*/
  #siteHeader {
    padding: 20px 120px;
    padding-top: 45px;
  }
  .openMenuIcon {
    width: 25px;
    height: 25px;
  }
  .menuPCont {
    padding-left: 120px;
  }
  .subMenuLink .redLines {
    width: 35px;
    height: 60px;
  }
  /*----------------------------- footer*/
  .items_fsuscribe {
    gap: 35px;
  }
  .fsuscribe_cont {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .fsuscribe_f {
    width: 540px;
    height: 100px;
  }
  .fsuscribe_f .suscribeBtn {
    padding: 14px 20px;
  }
  /*-----------------------------*/
  .finfo_cont {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .fo_logo {
    width: 170px;
    margin-bottom: 20px;
  }
  .fo_socialCont .socialIcon {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 1400px) {
  /*----------------------------- fonts*/
  .big_title_text {
    font-size: 70px;
  }
  .big_inter_text {
    font-size: 60px;
  }
  .big_mid_title_text {
    font-size: 50px;
  }
  .semi_big_title {
    font-size: 30px;
  }
  .mid_text {
    font-size: 20px;
  }
  .inter_text {
    font-size: 16px;
  }
  .small_text {
    font-size: 14px;
  }
  .ssmall_text {
    font-size: 14px;
  }
  .paperText {
    font-size: 14px !important;
  }
  .pd_def {
    padding-left: 60px;
    padding-right: 60px;
  }
  /*----------------------------- Home*/
  .hb1_linesCont {
    right: 6%;
    gap: 20px;
  }
  .hb1_linesCont > div {
    width: 24px;
    transform: skewX(-20deg);
  }
  .hb_transform {
    height: 510px;
  }
  .hb_transform .sbLogo {
    left: 50%;
    width: 130px;
  }
  .robotHand {
    height: 120px;
  }
  .humanHand {
    height: 250px;
  }
  /**/
  .atom_flex h3 {
    font-size: 26px;
  }
  /**/
  .cde_score {
    padding: 60px;
  }
  .cde_score .cde_icon {
    width: 250px;
    height: auto;
  }
  .cde_info {
    padding: 60px;
  }
  .hb6_card {
    width: 250px;
    height: 250px;
  }
  .hb6_card.active .container {
    transform: rotateY(-25deg) translateX(40%);
  }
  /**/
  .autoDigi_iC .item {
    gap: 30px;
  }
  .autoDigi_cont {
    height: 530px;
  }
  .ad_icIco {
    width: 48px;
    height: auto;
    aspect-ratio: 1;
  }
  .header_dC .ico {
    width: 55px;
    height: auto;
    aspect-ratio: 1;
  }
  /**/
  .hb8_cards_cont {
    margin: 50px 0;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hb8_card {
    padding: 30px;
    height: 400px;
  }
  .ai_block_h .ia_icon {
    width: 90px;
    height: 90px;
  }
  .ai_home_vs {
    width: 30%;
  }
  .ai_block {
    border-radius: 50px;
    padding: 50px 58px 0px 50px;
  }
  /*----------------------------- AU*/
  .au_sb_tc {
    width: 70%;
  }
  /*transparency*/
  .au_boxCont {
    min-height: 220px;
  }
  .au_boxB {
    width: 250px;
    padding: 30px 50px;
  }
  .au_boxB img {
    width: 45px;
    height: 45px;
  }
  /*our promise*/
  .au_op_text {
    width: 65%;
  }
  .au_op_itemC {
    max-height: 650px;
  }
  .au_op_c1 {
    padding: 40px 33px;
    width: 35%;
  }
  .au_c1_fb {
    margin-bottom: 30px;
    gap: 15px;
  }
  .au_c1_fb img {
    width: 36px;
    height: 36px;
  }
  .au_c1_sCont {
    padding: 30px;
  }
  .au_c1_sCont::after, .au_c1_sCont::before {
    font-size: 65px;
    height: 40px;
  }
  .au_op_c2 {
    width: auto;
    padding: 40px;
    flex: 1;
  }
  .au_op_c2 > div {
    gap: 27px;
  }
  .au_op_c2_logo {
    width: 120px;
    height: 120px;
  }
  /**/
  .au_op_vic {
    padding: 15px;
  }
  .au_op_vi {
    width: 60px;
    height: 60px;
  }
  /*vertical*/
  .au_a3go_big_lg {
    height: 140px;
  }
  /*out team*/
  .au_lt_arrowC {
    padding-left: 45px;
    padding-right: 45px;
  }
  .au_lt_charge {
    margin-bottom: 40px;
  }
  .au_lt_arrow[data-orientation=left] {
    margin-right: 20px;
  }
  .au_lt_arrow {
    width: 60px;
    height: 60px;
  }
  .au_lt_arrow::after, .au_lt_arrow::before {
    width: 50% !important;
    height: 50% !important;
  }
  /*----------------------------- page Casos exito*/
  .cde_cardsC {
    margin-bottom: 60px;
  }
  .pcde_card {
    border-radius: 30px;
    padding: 40px;
    min-height: 340px;
  }
  .pcde_card.small {
    min-height: 480px;
  }
  .pcde_card .redLinkBtn {
    padding: 6px 20px;
  }
  .pcde_textC {
    width: 70%;
  }
  .pcde_elogo {
    width: 35px;
    height: 35px;
  }
  /**/
  .cde_logo_cont {
    width: 250px;
    height: 130px;
  }
  .cde_logo_cont img {
    width: 130px;
  }
  /*----------------------------- page Industrias*/
  .indus_mi_itemsCont {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  /*----------------------------- page servicios*/
  .psg_cards_cont {
    gap: 30px;
  }
  .psg_header img {
    width: 250px;
  }
  .psg_card_border {
    padding: 15px 20px;
  }
  .psg_card {
    padding: 45px;
    min-height: 330px;
  }
  .psg_card.os > div {
    width: 80%;
  }
  .psg_icon {
    width: 230px;
    height: 230px;
  }
  .psg_os_list li::before {
    gap: 15px;
    width: 18px;
    height: 18px;
  }
  /*----------------------------- Service single*/
  .pss_vertical_cont {
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pps_text .icon_right {
    width: 40px;
    height: 40px;
  }
  .pss_cards_c .right {
    margin-top: 190px;
  }
  .pss_card {
    padding: 30px;
    min-height: 380px;
  }
  .pss_card .redLinkBtn {
    border-radius: 30px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .pss_c_icon {
    width: 50px;
    height: 50px;
  }
  .pss_c_title {
    margin-bottom: 15px;
  }
  /**/
  .pss_faq_cont {
    padding-top: 100px;
  }
  .pss_faq_header {
    padding-left: 80px;
    height: 300px;
  }
  .pss_faq_open {
    padding: 40px 70px;
    gap: 15%;
  }
  .pss_faq_cross {
    width: 60px;
    height: 60px;
  }
  .pss_faq_answer {
    padding: 40px 70px;
  }
  .pss_faq_answer li {
    gap: 20px;
  }
  .pss_faq_answer li::before {
    width: 16px;
    height: 16px;
  }
  /*popUp*/
  .pss_close_pop {
    width: 40px;
    height: 40px;
  }
  .pops_sdc {
    padding-left: 60px;
  }
  .pops_stc {
    width: 60%;
  }
  .pops_stc.premiun::after {
    height: 120px;
    aspect-ratio: 9/16;
    width: auto;
  }
  .pops_wysy {
    width: 55%;
    margin-bottom: 30px;
  }
  .pops_char_icons {
    gap: 15px;
    padding-right: 20px;
  }
  .pops_charI {
    width: 220px;
    padding: 10px 20px;
    gap: 10px;
  }
  .pops_charI img {
    width: 45px;
    height: 45px;
  }
  .pops_scs {
    gap: 30px;
  }
  .pops_scs_left {
    width: 40%;
  }
  .pops_white ul {
    padding: 20px;
  }
  .pops_scs_right {
    width: 60%;
  }
  .pops_scs_ul {
    gap: 30px;
  }
  .pops_sd {
    padding: 80px 60px 50px 60px;
  }
  .pops_sd_bigt {
    margin-bottom: 90px;
  }
  .pops_sd_dc_i {
    min-height: 180px;
    padding: 0 35px;
  }
  .pops_sd_ico {
    width: 70px;
    height: 70px;
  }
  /*----------------------------- page contact*/
  .pct_infocards_cont {
    gap: 30px;
  }
  .pct_infocard {
    height: 320px;
  }
  .pct_iframeCont {
    min-height: 560px;
  }
  .pct_iframeCont iframe {
    min-height: 560px;
  }
  /*leader team*/
  /*----------------------------- page vacante*/
  .pv_block_sp {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .pv_cont {
    padding: 30px;
  }
  /*----------------------------- single vacante*/
  .psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
    font-size: 20px;
  }
  /*----------------------------- page blog*/
  .pb_blog_index {
    border-radius: 20px;
  }
  .pb_blog_h {
    padding: 30px 50px;
  }
  .pb_index_c {
    padding: 30px;
  }
  .pb_index_item {
    gap: 20px;
  }
  .pb_i_img {
    width: 70px;
    height: 70px;
  }
  /*----------------------------- single blog*/
  .psb_blog_cont > * {
    width: 100%;
  }
  .psb_b_divide {
    min-height: auto;
    padding: 50px 0;
  }
  .psb_b_divide > * {
    min-height: 340px;
  }
  .psb_b_d_text {
    margin-top: 170px;
  }
  .psb_b_sl {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- landing*/
  .pland_HyphatIA {
    width: 80%;
  }
  .pland_radar_block .left {
    width: 65%;
  }
  .pland_radar_block .right {
    width: 35%;
  }
  .pland_radar_grid {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .pland_nm_pc {
    grid-template-columns: repeat(2, 1fr);
  }
  .pland_benefict_table {
    width: 90%;
  }
  .pland_bene_card {
    width: 100%;
  }
  .pland_nm_c_photo {
    min-height: 250px;
  }
  .pland_nm_card {
    min-height: 600px;
    border-radius: 40px;
  }
  /*----------------------------- vertical cards*/
  .hb3_cardsCont {
    gap: 30px;
  }
  .hb3_card {
    width: 320px;
    min-height: 650px;
    padding: 60px 20px 33px 43px;
  }
  .hb3_card .logo {
    width: 80px;
    height: 80px;
  }
  .hb3_card.center {
    padding: 43px 25px 33px 43px;
  }
  .hb3_card .title {
    margin-bottom: 32px;
  }
  /*----------------------------- Blocks*/
  /*formulary*/
  .formulary {
    gap: 60px;
  }
  .formulary::after {
    width: calc(100% - 120px);
  }
  .form_input {
    border-radius: 10px;
  }
  /*2 card block*/
  .dcb_item {
    padding: 40px;
    gap: 30px;
  }
  .dcb_item img {
    width: 100px;
    height: 100px;
  }
  .dcb_title {
    font-size: 35px;
  }
  .dcb_text {
    font-size: 16px;
  }
  /*red card block*/
  .rrb_borderCont {
    gap: 30px;
  }
  /*general top block*/
  .gtb_redbar {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: auto;
  }
  /*general bottom block*/
  .au_bottom_cont .bigT {
    margin-bottom: 25px;
  }
  .au_bottom_cont .smallT {
    margin-bottom: 25px;
  }
  /**/
  .redLinkBtn {
    font-size: 15px;
    gap: 8px;
    padding: 10px 20px;
  }
  .redLinkBtn::after {
    width: 8px;
  }
  /*full block*/
  .si_per_title {
    max-width: 70%;
  }
  .si_per_text {
    max-width: 70%;
  }
  .si_per_block {
    padding: 30px 60px;
    min-height: 180px;
  }
  /*split block*/
  .spb_textC {
    gap: 15px;
  }
  .spb_descC li {
    gap: 20px;
  }
  .spb_descC li::before {
    width: 18px;
    height: 18px;
  }
  .spb_split.frame.left .spb_textC {
    padding-left: 0px;
    margin-left: 80px;
  }
  .spb_split.frame.right .spb_textC {
    margin-right: 80px;
    padding-right: 0px;
  }
  .spb_split.mini_frame.left .spb_textC {
    padding-left: 0px;
  }
  .spb_split.mini_frame.right .spb_textC {
    padding-right: 0px;
  }
  /*----------------------------- header*/
  #siteHeader {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .header_menuCont {
    width: 45%;
  }
  .menuPCont {
    width: 100%;
    padding-left: 80px;
  }
  .header_submenuCont {
    width: 100%;
  }
  /*----------------------------- footer*/
  /*- Suscribe*/
  .fsuscribe_bt {
    margin-bottom: 25px;
  }
  .fsuscribe_f {
    width: 450px;
    height: 90px;
  }
  .finfo_cont {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .ful_cont {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .ficonRed {
    margin-right: 20px;
  }
  .fo_logoCont {
    min-width: auto;
    width: 20%;
  }
  .fo_infob {
    min-width: auto;
    width: 35%;
  }
  .fo_accessCont {
    min-width: auto;
    width: 35%;
  }
  .fo_logo {
    width: 140px;
  }
  .fo_socialCont .socialIcon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  /*----------------------------- landing*/
  .landingNav {
    width: -moz-fit-content;
    width: fit-content;
    gap: 60px;
    padding: 10px;
  }
  .landingNav_cont {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  /*------------------------------ fonts*/
  .big_title_text {
    font-size: 56px;
  }
  .big_inter_text {
    font-size: 53px;
  }
  .big_mid_title_text {
    font-size: 45px;
  }
  .semi_big_title {
    font-size: 26px;
  }
  .mid_text {
    font-size: 18px;
  }
  .inter_text {
    font-size: 14px;
  }
  .pd_def {
    padding-left: 50px;
    padding-right: 50px;
  }
  /*----------------------------- Home*/
  .hb2_centerTitle {
    width: 90%;
  }
  .hb2_fs {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: unset;
    gap: 40px;
    height: auto;
  }
  .hb2_textC {
    width: 100%;
    opacity: 1;
    gap: 30px;
    height: auto;
  }
  .hb2_textC > p {
    width: 100% !important;
  }
  .hb_transform {
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }
  .hb_transform .gray_triangle {
    clip-path: none;
    opacity: 1;
    width: 50%;
    top: 0;
    left: auto !important;
  }
  .hb_transform .difTriangle {
    opacity: 1;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 0;
  }
  .hb_transform .redTriangle {
    opacity: 1;
    width: 50%;
    right: 0 !important;
    transform: translateX(50%);
  }
  .hb_transform .sbLogo {
    width: 100px;
    opacity: 1;
  }
  .hp_gray_bg {
    background-color: transparent;
    background-image: url(../img/redTriangle.png);
    background-position: right;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(15%) sepia(6%) saturate(480%) hue-rotate(131deg) brightness(100%) contrast(86%);
  }
  .robotHand {
    right: 0 !important;
    opacity: 1;
    height: 150px;
    aspect-ratio: unset;
  }
  .humanHand {
    left: 50% !important;
    opacity: 1;
    -o-object-position: right;
       object-position: right;
    max-width: none;
    aspect-ratio: unset;
  }
  /**/
  .hb2_atomBlock {
    padding-top: 160px;
  }
  .atom_flex h3 {
    font-size: 23px;
  }
  /**/
  .hb3_info {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hb3_info h2, .hb3_info p {
    width: 100%;
  }
  /**/
  .hb4_text_cont {
    width: 80%;
  }
  .hb4_text_cont * {
    white-space: normal !important;
    line-height: 1.4;
  }
  .hb5_block {
    flex-direction: column;
  }
  .cde_cardCont {
    width: 100%;
  }
  .cde_info {
    width: 100%;
    padding: 40px;
    height: auto;
    max-height: none;
  }
  .cde_info::before {
    display: none;
  }
  .cde_score {
    width: 100%;
    padding: 40px;
  }
  .hb6_cardCont .hb6_cardSlider {
    padding-left: 50dvw;
  }
  .hb7_block .bigT {
    margin-bottom: 2.5rem;
  }
  .autoDigi_iC {
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto;
    flex: 1 0 auto;
  }
  .autoDigi_iC .item {
    width: 420px;
    height: 100%;
    flex: 1 0 auto;
    pointer-events: visible;
    border-bottom: 2px solid #E3333F;
  }
  .autoDigi_iC .item::before {
    transition: none;
  }
  .autoDigi_iC .item.active .ad_icIco {
    filter: brightness(0) !important;
  }
  .autoDigi_iC .item.active .ad_icText {
    background: linear-gradient(90deg, #000000, #000000) !important;
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }
  .autoDigi_iC .item.active::before {
    right: 0% !important;
  }
  .autoDigi_iC .item:hover .ad_icIco {
    filter: brightness(1);
  }
  .autoDigi_iC .item:hover .ad_icText {
    background: linear-gradient(90deg, #FFFFFF, #E3333F);
    -webkit-background-clip: text;
            background-clip: text;
  }
  .autoDigi_iC .item:hover::before {
    right: -100%;
  }
  .autoDigi_iC .item::after {
    display: none;
  }
  .autoDigi_iC::-webkit-scrollbar {
    width: auto;
    height: 5px;
  }
  .autoDigi_dC {
    height: 100%;
    padding: 54px;
  }
  .autoDigi_dC .splide__slide {
    display: none;
  }
  .autoDigi_dC .splide__slide.is-active {
    display: block;
    transform: translateX(0%) !important;
  }
  .autoDigi_cont {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    height: auto;
  }
  .autoDigi_cont::after {
    display: none;
  }
  .header_dC {
    margin-bottom: 30px;
  }
  .header_dC .ico {
    width: 55px;
    height: 55px;
  }
  .hb8_cards_cont {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
  .hb9_block {
    flex-direction: column;
    gap: 40px;
    padding-left: 50px;
    padding-right: 50px;
    height: auto;
    width: 100%;
    box-sizing: border-box;
  }
  .ai_block {
    border-radius: 15px;
    min-height: 590px;
    padding: 30px 38px 0px 30px;
  }
  .ai_block_h .ia_icon {
    width: 60px;
    height: 60px;
  }
  .ai_home_vs::-webkit-scrollbar {
    width: 2px;
  }
  .ai_home_vs > ul {
    gap: 30px;
  }
  .block9img {
    width: 100%;
    height: 400px;
  }
  .hb9_textB {
    width: 100%;
    padding: 0;
  }
  .hb9_textB .big_t {
    margin-bottom: 30px;
  }
  .hb9_textB .text {
    margin-bottom: 20px;
  }
  .ai_text_slide {
    width: 90%;
  }
  /*----------------------------- AU*/
  /*transparency*/
  .au_carrousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .au_carr_textInfo {
    margin-bottom: 50px;
  }
  .au_boxCont {
    min-height: 150px;
  }
  .au_boxB {
    width: 200px;
    padding: 20px 40px;
  }
  .au_boxB img {
    width: 35px;
    height: 35px;
  }
  /*our promise*/
  .au_ourPromise {
    padding-top: 60px;
  }
  .au_op_minititle {
    margin-bottom: 16px;
  }
  .au_op_bigtitle {
    margin-bottom: 16px;
  }
  .au_op_text {
    width: 70%;
    margin-bottom: 2rem;
  }
  .au_op_itemC {
    flex-direction: column;
    max-height: none;
  }
  .au_op_c1 {
    border-radius: 25px;
    max-height: 540px;
    padding: 30px 23px;
  }
  .au_op_c2 {
    max-height: 540px;
    border-radius: 25px;
    padding: 30px;
  }
  .au_op_c2 > div {
    gap: 20px;
  }
  .au_c1_fb {
    margin-bottom: 20px;
  }
  .au_c1_fb img {
    width: 28px;
    height: 28px;
  }
  .au_c1_tipTitle {
    margin-bottom: 20px;
  }
  .au_c1_fCont {
    padding: 15px;
    min-height: 60px;
  }
  .au_c1_fCont p {
    font-size: 14px;
    line-height: 1.4;
  }
  .au_c1_sCont {
    padding: 20px;
  }
  .au_c1_sCont::after, .au_c1_sCont::before {
    font-size: 55px;
  }
  .au_op_c2_logo {
    width: 80px;
    height: 80px;
  }
  .au_op_vic {
    overflow-y: hidden;
    overflow-x: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .au_op_vic .au_op_vi:not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .au_op_vic .au_op_vi:last-child {
    margin-right: auto;
  }
  .au_op_vic .au_op_vi:first-child {
    margin-left: auto;
  }
  .au_op_vi {
    flex: 0 0 auto;
  }
  /*vertical*/
  .au_a3go_big_lg {
    height: 100px;
  }
  /*out team*/
  /*leader team*/
  .au_lt_arrowC {
    padding-left: 30px;
    padding-right: 30px;
  }
  .au_lt_charge {
    margin-bottom: 30px;
  }
  .splide_au_lt .au_lt_item.is-active {
    height: 80%;
  }
  .au_lt_arrow {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- page Casos exito*/
  .cde_cards_block {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .cde_cardsC {
    margin-bottom: 40px;
  }
  .cde_cardsC {
    gap: 15px;
  }
  .pcde_card {
    border-radius: 20px;
    padding: 20px;
    min-height: 300px;
  }
  .pcde_card.small {
    width: calc(33% - 15px);
    flex-direction: column;
    min-height: 380px;
  }
  .pcde_card.small.text_first {
    flex-direction: column-reverse;
  }
  .pcde_card.small.text_first .pcde_elogo {
    bottom: 0;
    top: 0;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .pcde_card.small .pcde_elogo {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 30px;
  }
  .pcde_card.large {
    width: calc(50% - 15px);
  }
  .pcde_elogo {
    width: 30px;
    height: 30px;
  }
  /**/
  .cde_carr_cont {
    margin-top: 35px;
  }
  .cde_logo_cont {
    width: 220px;
    height: 100px;
    border-radius: 20px;
  }
  .cde_logo_cont img {
    width: 100px;
  }
  /*----------------------------- page Industrias*/
  .indus_moreInfoCont {
    padding-bottom: 40px;
  }
  .indus_mi_itemsCont {
    margin-top: 90px;
    gap: 20px;
  }
  .indus_mi_item {
    padding: 10px 20px;
    height: 80px;
  }
  .mi_item_iconC {
    width: 45px;
    height: 45px;
  }
  /*----------------------------- Service single*/
  .pss_faq_cont {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pss_vertical_cont {
    gap: 15px;
    flex-direction: column;
  }
  .pps_text {
    flex-direction: column-reverse;
  }
  .pps_text .icon_right {
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
  }
  .pss_cards_c {
    width: 80%;
    margin: auto;
  }
  .pss_faq_header {
    padding-left: 50px;
  }
  .pss_faq_bigT {
    width: 50%;
    line-height: 1.4;
  }
  .pss_faq_open {
    padding: 30px 60px;
    gap: 50px;
  }
  .pss_faq_cross {
    width: 45px;
    height: 45px;
  }
  .pss_faq_answer {
    padding: 35px 60px;
  }
  /*----------------------------- page servicios*/
  .psg_card {
    padding: 40px;
    min-height: 500px;
  }
  .psg_card:not(.os) > * {
    max-width: 70%;
  }
  .psg_card_border {
    padding: 12px 15px;
    border-radius: 15px;
  }
  .psg_text {
    margin-bottom: 25px;
  }
  .psg_icon {
    width: 130px;
    height: 130px;
  }
  .psg_os_list {
    font-size: 12px;
  }
  /*pop*/
  .pss_close_pop {
    width: 40px;
    height: 40px;
  }
  .pops_scs {
    min-height: auto;
  }
  .pops_sdc {
    padding-left: 40px;
  }
  .pops_stc {
    margin-bottom: 80px;
  }
  .pops_stc.premiun::after {
    height: 90px;
  }
  .pops_char_icons {
    gap: 10px;
  }
  .pops_charI img {
    width: 40px;
    height: 40px;
  }
  .pops_scs_title {
    margin-bottom: 50px;
  }
  .pops_scs_ul li::before {
    width: 15px;
    height: 15px;
    gap: 10px;
  }
  .pops_white ul li {
    gap: 10px;
  }
  .pops_white ul li::before {
    width: 15px;
    height: 15px;
  }
  .pops_sd {
    padding: 60px 40px 50px 40px;
  }
  .pops_sd_dc_i {
    padding: 0 25px 0 25px;
  }
  .pops_sd_ico {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- page contact*/
  .pct_infocards_cont {
    grid-template-columns: 1fr;
  }
  /*----------------------------- page vacante*/
  .pv_block_sp {
    margin-top: 40px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .pv_bar {
    height: 30px;
  }
  /*----------------------------- single vacante*/
  .psv_details {
    flex-direction: column;
  }
  .psv_requeriment_cont {
    width: 100%;
  }
  .psv_others {
    width: 100%;
  }
  .psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
    font-size: 18px;
  }
  .psv_white_tip {
    margin: auto;
    margin-top: 80px;
    width: 50%;
    min-height: auto;
    padding: 40px;
  }
  .psv_white_tip::after {
    width: 60px;
    height: 60px;
  }
  /*----------------------------- page blog*/
  .pb_blog_index {
    width: 100%;
    overflow: auto;
  }
  .pb_index_c {
    width: 100%;
    flex-direction: row;
  }
  .pb_index_item {
    width: 250px;
    gap: 20px;
    flex: 1 0 auto;
  }
  .pb_index_item .ssmall_text {
    font-size: 14px;
  }
  .pb_index_item > :last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pb_i_title {
    margin-bottom: auto;
  }
  .pb_i_img {
    width: 80px;
    height: 80px;
    margin: auto;
  }
  .pb_blog_cont {
    width: 100%;
    grid-template-columns: 1fr !important;
  }
  .pb_blog_cont.type_a > :nth-child(1) {
    grid-row: auto;
  }
  .pb_blog_cont.type_a > :nth-child(2) {
    grid-column: auto;
    grid-row-start: auto;
  }
  .pb_blog_cont.type_a > :nth-child(3) {
    grid-column: auto;
    grid-row-start: auto;
  }
  .pb_blog_cont .pcde_card {
    width: 100%;
    min-height: auto;
  }
  .pb_blog_cont .pcde_card.large {
    justify-content: flex-start;
  }
  .pb_blog_cont .pcde_card.small {
    flex-direction: row;
  }
  .pb_blog_cont .pcde_card .pcde_textC {
    width: 80% !important;
    height: 100%;
  }
  .pb_blog_cont .pcde_card .pcde_elogo {
    position: relative !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0;
  }
  .pb_blog_cont .pb_blog_card_date {
    margin-bottom: 20px !important;
  }
  .pcde_text {
    width: 80%;
  }
  .pb_blog_button {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .pb_nw_i {
    width: 340px;
    min-height: 500px;
  }
  .pb_nw_img {
    height: 250px;
  }
  .pb_nw_textc {
    padding: 30px;
    gap: 15px;
  }
  .pb_donwload_btn {
    height: auto;
    min-height: 30px;
    padding: 10px;
  }
  .pb_newsletter_cont .splide__arrows {
    margin-top: 30px;
  }
  .pb_newsletter_cont .splide__arrows .splide__arrow {
    width: 60px;
    height: 60px;
  }
  /*----------------------------- single blog*/
  .psb_blog_cont {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .psb_b_title {
    margin-bottom: 50px;
  }
  .psb_b_sl {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  .psb_b_separator {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .psb_b_d_text {
    margin-top: 120px;
  }
  .psb_b_divide {
    padding: 40px 0;
  }
  .psb_b_divide > * {
    min-height: 240px;
    padding: 30px;
  }
  /*----------------------------- landing*/
  .pland_border_block {
    border-radius: 0 0 60px 60px;
  }
  .pland_hero_center_contñ > div {
    width: 35%;
  }
  .pland_radar_block {
    flex-direction: column;
    gap: 40px;
  }
  .pland_radar_block .left {
    width: 100%;
  }
  .pland_radar_block .right {
    width: 100%;
    aspect-ratio: 1;
    max-height: 300px;
  }
  .pland_white_bar {
    padding-top: 45px;
    padding-bottom: 45px;
    justify-content: space-between;
    gap: 50px;
  }
  .pland_white_bar > div {
    width: 50%;
  }
  .pland_white_bar .right_block .info {
    padding: 15px 30px;
    border-radius: 15px;
  }
  .pland_white_bar .right_block .info .ico {
    width: 25px;
  }
  .pland_aspect {
    padding: 20px 30px;
  }
  .pland_benefict_table {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .pland_think_ul {
    width: 100%;
  }
  .pland_grcard {
    width: 45%;
  }
  .pland_grcard.expand {
    width: 45%;
  }
  .pland_nm_card {
    border-radius: 15px;
    min-height: 550px;
  }
  .pland_nm_c_photo {
    border-radius: 15px;
    min-height: 230px;
  }
  /*----------------------------- vertical cards*/
  .hb3_cardsCont {
    gap: 15px;
  }
  .hb3_card {
    width: 220px;
    min-height: 480px;
    padding: 50px 10px 23px 33px;
  }
  .hb3_card .logo {
    width: 50px;
    height: 50px;
  }
  .hb3_card.center {
    padding: 33px 15px 23px 33px;
  }
  .hb3_card .title {
    margin-bottom: 22px;
  }
  /*----------------------------- Blocks*/
  /*formulary*/
  .formulary {
    flex-direction: column;
    gap: 40px;
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .formulary::after {
    width: calc(100% - 100px);
  }
  .form_text {
    width: 100%;
  }
  .form_text p {
    text-align: center;
  }
  .form_fields {
    width: 100%;
  }
  /*2 card block*/
  .dcb_cont {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .dcb_item {
    padding: 30px;
    gap: 20px;
  }
  .dcb_item img {
    width: 80px;
    height: 80px;
  }
  .dcb_title {
    font-size: 28px;
  }
  .dcb_text {
    font-size: 14px;
  }
  /*red card block*/
  .rrb_borderCont {
    gap: 25px;
    padding: 50px 90px;
  }
  /*general top block*/
  .gtb_formatB_icon {
    width: 50px;
    height: 50px;
  }
  .gtb_lc_smallT {
    line-height: 1.4;
  }
  /*general bottom block*/
  /**/
  .redLinkBtn {
    font-size: 15px;
    padding: 10px 30px;
  }
  /*full block*/
  .si_per_title {
    max-width: 80%;
  }
  .si_per_text {
    max-width: 80%;
  }
  .si_per_block {
    padding: 30px 60px;
    min-height: auto;
  }
  .si_per_item {
    width: 100%;
  }
  /*split block*/
  .spb_descC {
    width: 100% !important;
  }
  .spb_descC li {
    gap: 10px;
  }
  .spb_descC li::before {
    width: 14px;
    height: 14px;
  }
  .spb_split {
    min-height: auto;
    gap: 50px;
  }
  .spb_split.full {
    flex-direction: column;
  }
  .spb_split.full .spb_image {
    position: relative;
    width: 100%;
    height: 500px;
  }
  .spb_split.full .spb_image.spb_frontImage {
    width: 100%;
  }
  .spb_split.mini_frame {
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .spb_split .spb_image {
    width: 100% !important;
    height: 320px !important;
    position: relative !important;
  }
  .spb_split.frame {
    min-height: auto;
    padding: 20px;
    border-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .spb_textC {
    width: 100% !important;
    align-items: flex-start !important;
    margin: 0 !important;
  }
  /*----------------------------- header*/
  #siteHeader {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .headerLogo {
    width: 150px;
    height: 40px;
  }
  .openMenu {
    width: 60px;
    height: 40px;
    border-radius: 10px;
  }
  .openMenuIcon {
    width: 20px;
    height: 20px;
  }
  .menuPCont {
    padding-left: 60px;
  }
  /*----------------------------- footer*/
  .items_fsuscribe {
    flex-direction: column;
    align-items: flex-start;
  }
  .items_fsuscribe > div {
    width: 100%;
  }
  .fsuscribe_cont {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .fsuscribe_bt {
    width: 100%;
  }
  .fsuscribe_st {
    width: 100%;
  }
  .fsuscribe_st br {
    display: none;
  }
  .fsuscribe_f {
    width: 100%;
  }
  .ful_cont {
    flex-wrap: wrap;
  }
  .fo_logoCont {
    order: 3;
    align-items: center;
    margin: auto;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    gap: 20px;
  }
  .fo_logo {
    width: 120px;
  }
  .fo_infob {
    width: 45%;
  }
  .fo_accessCont {
    width: 45%;
  }
}
@media only screen and (max-width: 768px) {
  /*------------------------------ fonts*/
  .big_title_text {
    font-size: 40px;
  }
  .big_inter_text {
    font-size: 35px;
  }
  .big_mid_title_text {
    font-size: 30px;
  }
  .semi_big_title {
    font-size: 20px;
  }
  .mid_text {
    font-size: 15px;
  }
  .inter_text {
    font-size: 14px;
  }
  .redLinkBtn {
    font-size: 14px;
  }
  .pd_def {
    padding-left: 30px;
    padding-right: 30px;
  }
  .bg_att {
    background-attachment: unset;
  }
  /*----------------------------- page Home*/
  .hb1_linesCont {
    right: 0px;
  }
  .hb1_linesCont > div {
    width: 17px;
    transform: skewX(-14deg);
  }
  .hb_transform {
    height: 380px;
  }
  .robotHand {
    height: 114px;
  }
  .humanHand {
    height: 170px;
  }
  /**/
  .hb2_atomBlock {
    flex-direction: column;
    gap: 40px;
    padding-top: 110px;
    justify-content: unset;
    height: auto;
  }
  .hb2_atomBlock > :first-child {
    width: 100%;
  }
  .atom_flex {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    /*dont erase*/
    padding-bottom: 170px;
  }
  .atom_flex h3 {
    font-size: 18px;
  }
  .atom_flex .redLinkBtn {
    margin-top: 0 !important;
  }
  .red_robot_hand {
    top: 0;
    width: 50%;
    transform: translate(-100%, 0%) rotate(30deg);
    position: relative;
  }
  .atomHumanhand {
    transform: translate(0%, 0%);
  }
  .atomRobothand {
    transform: translate(0%, -100%);
  }
  /**/
  .hb3_block {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .cde_info {
    padding: 30px;
  }
  .cde_score {
    padding: 30px;
  }
  .cde_score .cde_icon {
    width: 300px;
    max-width: 80%;
    height: auto;
  }
  .autoDigi_iC {
    height: auto;
  }
  .autoDigi_iC .item {
    padding: 30px 10px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ad_icIco {
    width: 45px;
    height: 45px;
  }
  .ad_icText {
    display: none;
  }
  .header_dC .ico {
    width: 45px;
    height: 45px;
  }
  .item_dC .redLinkBtn {
    margin-top: 0;
    padding: 10px 20px;
  }
  .item_dC_bigT {
    margin-bottom: 20px;
  }
  .item_dC_desc {
    margin-bottom: 20px;
  }
  .hb4_text_cont .s_text {
    margin-bottom: 15px;
  }
  .hb4_text_cont .b_text {
    margin-bottom: 15px;
  }
  .hb8_header {
    flex-direction: column;
  }
  .hb8_h_desc {
    width: 100%;
  }
  .hb9_block {
    padding-left: 30px;
    padding-right: 30px;
  }
  /**/
  .ai_block > .elipse {
    display: none;
  }
  .ai_splide {
    flex-direction: column;
    position: relative;
  }
  .ai_splide .elipse {
    display: block;
    z-index: -1;
  }
  .ai_block_h .ia_icon {
    width: 40px;
    height: 40px;
  }
  .ai_block_h > div {
    width: 60%;
  }
  .ai_home_vs {
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
    height: auto;
    padding-bottom: 14px;
    padding-left: 0px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .ai_home_vs > ul {
    align-items: flex-start;
    flex-direction: row;
  }
  .ai_home_vs::-webkit-scrollbar {
    width: auto;
    height: 2px;
  }
  .text_slide {
    width: 148px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .splide_home_ai {
    width: 100%;
    flex: 1;
    min-height: 400px;
  }
  .splide_home_ai .splide__slide > :last-child {
    margin-bottom: 20px;
  }
  .ai_img_slide {
    max-height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .block9img::after {
    right: 6%;
    width: 45px;
    top: 0;
  }
  /*----------------------------- page AU*/
  .au_i_ci {
    width: 60%;
  }
  .au_boxB {
    width: 150px;
    padding: 20px;
  }
  .au_ourPromise {
    padding-top: 60px;
  }
  .au_op_cc {
    flex-direction: column;
    align-items: center;
  }
  .au_op_c1 {
    width: 90%;
    padding: 20px 30px;
    border-radius: 15px;
  }
  .au_op_c1 > div {
    overflow: unset;
  }
  .au_c1_fCont {
    padding: 10px;
  }
  .au_op_c2 {
    width: 90%;
    padding: 20px 30px;
    border-radius: 15px;
  }
  .au_op_vic {
    width: 90%;
    margin: auto;
  }
  .au_a3go {
    min-height: auto;
    padding-top: 80px;
    margin-bottom: 120px;
  }
  .au_a3go_title {
    margin-bottom: 40px;
  }
  .au_lt_title {
    position: relative;
    top: 0;
  }
  .au_lt_carr_cont {
    flex-direction: column;
    height: auto;
  }
  .au_lt_carr {
    width: 100%;
    height: 50dvh;
  }
  .au_lt_arrowC {
    padding-top: 30px;
    width: 100%;
  }
  .au_lt_arrow {
    width: 40px;
    height: 40px;
  }
  .au_lt_arrow[data-orientation=left] {
    margin-right: 10px;
  }
  /*----------------------------- page contact*/
  .pct_section {
    margin-top: 50px;
  }
  .pct_infocard {
    height: 220px;
    border-radius: 10px;
  }
  /*----------------------------- page Industrias*/
  .indus_mi_tl {
    width: 60%;
  }
  .indus_mi_itemsCont {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
  .mi_item_iconC {
    width: 36px;
    height: 36px;
  }
  .indus_mi_item {
    border-radius: 15px;
    height: 60px;
  }
  .indus_mi_item .arrow {
    height: 16px;
  }
  .indus_moreInfoCont {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /*----------------------------- page servicios*/
  .psg_header .indicator {
    letter-spacing: 6px;
  }
  .psg_header img {
    width: 180px;
  }
  .psg_card {
    flex-direction: column-reverse;
    align-items: flex-start;
    min-height: auto;
    gap: 20px;
  }
  .psg_card .redLinkBtn {
    padding: 10px 20px;
  }
  .psg_card_border {
    display: none;
  }
  .psg_card.os > div {
    width: 95%;
  }
  .psg_os_list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .psg_os_list li {
    gap: 10px;
  }
  /*----------------------------- taxonomy servicios*/
  .pps_text {
    width: 50%;
  }
  .pss_cards_c {
    width: 100%;
  }
  .pss_cards_c .right {
    margin-top: 160px;
  }
  .pss_card {
    padding: 20px;
    min-height: 320px;
    border-radius: 15px;
  }
  .pss_c_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0px;
  }
  .pss_fh_robot {
    background-size: contain;
    background-position: bottom;
    width: 45%;
    right: 0px;
  }
  .pss_faq_header {
    padding-left: 30px;
    border-radius: 15px 15px 0 0;
  }
  .pss_faq_smallT {
    width: 50%;
    letter-spacing: 2px;
    line-height: 1.4;
  }
  .pss_faq_block {
    border-radius: 15px 15px 0 0;
  }
  .pss_faq_open {
    padding: 30px 30px;
    gap: 30px;
  }
  .pss_faq_answer {
    padding: 35px 30px;
  }
  .pss_faq_cross {
    width: 38px;
    height: 38px;
  }
  /**/
  .pops_charI {
    height: auto;
    min-height: auto;
    border-radius: 15px;
  }
  .pops_charI img {
    width: 35px;
    height: 35px;
  }
  .pops_charI p {
    text-shadow: 0px 0px 3px black;
  }
  .pops_scs {
    padding-top: 90px;
    padding-bottom: 90px;
    height: auto;
    gap: 35px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .pops_scs > div {
    width: 90%;
  }
  .pops_scs_scroll {
    min-height: auto;
  }
  .pops_scs_ul {
    gap: 15px;
  }
  .pops_scs_ul li {
    gap: 8px;
  }
  .si_percentage_block {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .si_per_block {
    border-radius: 15px;
    padding-top: 90px;
    padding-bottom: 90px;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    padding: 30px 50px;
  }
  .pops_sd_dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .pops_sd_dc .pops_sd_dc_i:not(:last-child) {
    border-right: 0;
  }
  .pops_sd_dc .pops_sd_dc_i:nth-child(odd) {
    border-right: 2px white solid;
  }
  .pops_sd_bigt {
    margin-bottom: 50px;
  }
  .pops_sd_dc_i {
    min-height: 140px;
    padding-right: 0;
  }
  .pops_sd_ico {
    width: 40px;
    height: 40px;
  }
  .pss_close_pop {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
  .pops_scs_left {
    justify-content: flex-start;
  }
  /*----------------------------- page casos de exito*/
  .cde_cards_block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cde_cards_h > * {
    width: 90%;
  }
  .cde_cardsC {
    margin-top: 30px;
  }
  .pcde_elogo {
    width: 26px;
    height: 26px;
    top: 20px !important;
    right: 20px !important;
    left: auto;
    bottom: auto;
    position: absolute !important;
    margin: 0 !important;
  }
  .pcde_card {
    border-radius: 15px;
  }
  .pcde_card.large {
    width: 100%;
    min-height: 200px;
    justify-content: flex-start !important;
  }
  .pcde_card.small {
    width: 100%;
    min-height: 200px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .pcde_card .redLinkBtn {
    display: none;
  }
  .pcde_textC {
    width: 70% !important;
  }
  .pcde_textC * {
    text-align: left !important;
  }
  .cde_carr_cont {
    gap: 20px;
  }
  .cde_logo_cont {
    width: 150px;
    height: 70px;
    border-radius: 15px;
  }
  .cde_logo_cont img {
    width: 50%;
  }
  /*----------------------------- page vacante*/
  .pv_title {
    gap: 20px;
  }
  .pv_title::after {
    width: 30px;
    height: 30px;
  }
  .pv_item {
    border-radius: 15px;
  }
  .pv_bar {
    height: 25px;
  }
  .pv_cont {
    padding: 25px;
  }
  .pv_button_cont {
    display: none;
  }
  /*----------------------------- single vacante*/
  .psv_hero {
    margin-bottom: 60px;
  }
  .psv_hero .gtb_breadcrumb_cont {
    margin-top: 50px;
    position: relative;
    width: 100%;
    padding: 0 !important;
  }
  .psv_hero .hb1_linesCont {
    display: none;
  }
  .psv_h_cont {
    padding-top: 200px;
    width: 95%;
    gap: 20px;
  }
  .psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
    font-size: 16px;
  }
  .psv_wysy_cont li::before {
    width: 16px;
    height: 16px;
    margin-right: 15px;
  }
  .psv_white_tip {
    width: 90%;
  }
  .psv_requeriment .requeriment {
    margin-left: 20px;
  }
  .psv_requeriment .requeriment.approved::before {
    width: 30px;
    height: 30px;
  }
  .psv_requeriment .requeriment.failed::before {
    width: 30px;
    height: 30px;
  }
  .psv_others .pv_item {
    margin-bottom: 30px;
  }
  /*----------------------------- page blog*/
  .pb_index_item {
    width: 300px;
  }
  .pb_blog_cont .pcde_card .pcde_elogo {
    width: 40px !important;
    height: 40px !important;
  }
  .pb_blog_button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .pb_nw_i {
    width: 240px;
    min-height: 360px;
  }
  .pb_nw_img {
    height: 180px;
  }
  .pb_nw_textc {
    padding: 15px;
    gap: 10px;
  }
  .pb_newsletter_cont .splide__arrows {
    margin-top: 20px;
    padding-right: 20px;
  }
  .pb_newsletter_cont .splide__arrows .splide__arrow {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- single blog*/
  .psb_header_cont {
    flex-direction: column;
    justify-content: unset;
    min-height: auto;
  }
  .psb_h_fb {
    width: 90%;
    gap: 20px;
  }
  .psb_h_sb {
    margin-top: 50px;
    width: 90%;
    gap: 20px;
  }
  .psb_b_divide {
    width: 90%;
    border-radius: 15px;
    flex-direction: column;
    padding: 20px 0;
    background-color: rgba(31, 31, 31, 0.7);
    margin: 40px auto;
  }
  .psb_b_divide.reverse {
    flex-direction: column-reverse;
  }
  .psb_b_divide.reverse .psb_b_d_text {
    padding-top: 30px;
  }
  .psb_b_divide .psb_b_d_image, .psb_b_divide .psb_b_d_text {
    transform: translateX(0) !important;
    align-self: center;
    width: 80%;
    max-width: none;
  }
  .psb_b_d_image {
    border-radius: 15px;
  }
  .psb_b_d_text {
    margin-top: 0;
    border-radius: 0px;
    background-color: transparent;
    padding: 0;
    padding-bottom: 30px;
  }
  .psb_b_sl {
    width: 30px;
    height: 30px;
  }
  /*----------------------------- landing*/
  .landingNav .pland_purbleButton {
    padding: 10px 20px;
  }
  .pland_hero_center_cont {
    flex-direction: column;
  }
  .pland_hero_center_cont > div {
    width: 50%;
  }
  .pland_boxico {
    width: 60px;
  }
  .pland_HyphatIA {
    width: 90%;
  }
  .pland_white_ico {
    width: 25px;
  }
  .pland_radar_block {
    width: 90%;
  }
  .pland_radar_grid {
    min-height: 350px;
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 14px;
  }
  .pland_radar_grid > :nth-child(4) .pland_radar_bar {
    margin: auto 10px;
  }
  .pland_radar_ico {
    width: 45px;
  }
  .pland_bene_check {
    width: 18px;
    height: 18px;
  }
  .pland_think_ul {
    padding: 20px 30px;
  }
  .pland_think_li {
    gap: 30px;
  }
  .pland_think_li > :first-child {
    margin-left: 0;
  }
  .pland_think_li > :last-child {
    margin-right: 0;
  }
  .pland_grcard {
    padding: 40px 33px;
    border-radius: 30px;
  }
  .pland_nm_pc {
    gap: 20px;
  }
  .pland_nm_card {
    padding: 0 35px 20px 35px;
    min-height: 475px;
  }
  .pland_nm_c_photo {
    min-height: 175px;
  }
  /*----------------------------- Blocks*/
  /*formulary*/
  .formulary {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .formulary::after {
    width: calc(100% - 60px);
  }
  .form_lastC {
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 20px;
  }
  .form_ordened > div {
    display: flex;
    flex-direction: column;
  }
  .form_input {
    height: 60px;
    padding: 10px 15px;
    margin-top: auto;
  }
  .form_fields * {
    line-height: 1.4;
  }
  .form_ordened {
    gap: 20px;
    margin-bottom: 30px;
  }
  /*split block*/
  .spb_textC {
    width: 85% !important;
    margin: auto !important;
  }
  /*vertical cards*/
  .hb3_cardsCont {
    flex-direction: column;
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .hb3_card {
    background-position: 0% 30%;
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    height: 100%;
    min-height: auto;
    gap: 30px;
    border-radius: 15px;
    background-image: url(../img/vertical_cards/top_left_bg.png) !important;
    padding: 30px !important;
  }
  .hb3_card .logo {
    order: 0 !important;
    align-self: flex-start !important;
  }
  .hb3_card .title {
    order: 1 !important;
    margin-bottom: 0 !important;
    writing-mode: initial !important;
    align-self: flex-start !important;
  }
  .hb3_card .text {
    order: 2 !important;
  }
  /*bottom block*/
  .au_bottom_cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    gap: 30px;
    min-height: 100dvh;
  }
  .au_bottom_cont * {
    margin: 0 !important;
  }
  .au_bottom_cont .bigT {
    width: 90%;
  }
  .au_bottom_cont .smallT {
    width: 90%;
    line-height: 1.4;
  }
  /*red-block*/
  .rrb_blockC {
    margin: 25px 0;
  }
  .rrb_borderCont {
    gap: 15px;
    padding: 30px 60px;
    border-radius: 15px;
  }
  .rrb_borderCont .redLinkBtn {
    padding: 14px 30px;
  }
  /*--------------------------- Header*/
  #siteHeader {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .headerLogo {
    width: 100px;
    height: 30px;
  }
  .openMenu {
    width: 50px;
    height: 35px;
  }
  .headerCont {
    z-index: 200;
  }
  .header_menuCont {
    width: 100%;
    z-index: 199;
  }
  .header_menuCont .mid_text {
    font-size: 18px;
  }
  .menuPCont {
    padding: 30px;
  }
  .menuPCont .headerLogo {
    display: none;
  }
  .header_ul {
    margin-top: 100px;
  }
  .header_submenuCont {
    position: absolute;
    z-index: 12;
    padding: 130px 30px;
    padding-bottom: 40px;
  }
  .header_submenuCont.services ul {
    gap: 20px;
  }
  .subMenuLink .redLines {
    height: 40px;
  }
  .gobackSubmenu {
    display: flex;
  }
  .header_bl {
    width: 30px;
    height: 30px;
  }
  /*------------------------------ footer*/
  .finfo_cont {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .fsuscribe_f {
    border-radius: 30px;
    height: auto;
    align-items: center;
  }
  .fsuscribe_f .suscribeBtn {
    border-radius: 40px;
    padding: 13px 25px;
  }
  .fo_logo {
    width: 100px;
  }
  .fo_socialCont .socialIcon {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 600px) {
  /*------------------------------ fonts*/
  .big_title_text {
    font-size: 30px;
  }
  .big_inter_text {
    font-size: 25px;
  }
  .big_mid_title_text {
    font-size: 20px;
  }
  .semi_big_title {
    font-size: 18px;
  }
  .mid_text {
    font-size: 17px;
  }
  .inter_text {
    font-size: 16px;
  }
  .small_text {
    font-size: 15px;
  }
  .pd_def {
    padding-left: 20px;
    padding-right: 20px;
  }
  .redLinkBtn {
    font-size: 14px;
    border-radius: 15px;
    padding: 10px 20px;
  }
  /*----------------------------- page Home*/
  .hb_transform {
    height: 340px;
  }
  .hb_transform .sbLogo {
    width: 75px;
    height: auto;
    top: 43%;
    left: 55%;
  }
  .robotHand {
    height: 84px;
  }
  .humanHand {
    height: 136px;
  }
  /**/
  .hb6_card {
    width: 180px;
    height: 180px;
  }
  .autoDigi_iC .item {
    padding: 20px 10px;
  }
  .ad_icIco {
    width: 35px;
    height: 35px;
  }
  .header_dC .ico {
    width: 35px;
    height: 35px;
  }
  .hb9_block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hb8_cards_cont {
    grid-template-columns: 1fr;
  }
  .hb8_card {
    width: 85%;
  }
  .hb8_card:hover {
    transform: none;
  }
  .block9img::after {
    right: 6%;
    width: 35px;
    top: 0;
  }
  .ai_block {
    min-height: 530px;
  }
  .splide_home_ai {
    min-height: 300px;
  }
  /*----------------------------- page AU*/
  .au_op_vi {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- page contact*/
  .pct_infocard {
    padding: 20px;
  }
  /*----------------------------- page servicios*/
  .psg_icon {
    width: 80px !important;
    height: 80px;
  }
  .psg_card {
    padding: 20px;
    border-radius: 15px;
  }
  .psg_card:not(.os) > * {
    width: 90%;
    max-width: none;
  }
  .psg_os_list {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 10px;
  }
  .psg_os_list li {
    gap: 8px;
  }
  .psg_os_list li::before {
    width: 10px;
    height: 10px;
  }
  /*----------------------------- taxonomy servicios*/
  .pss_c_title {
    margin: 12px 0;
  }
  .pss_card {
    min-height: 280px;
    padding: 14px;
  }
  .pss_card .redLinkBtn {
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
  .pss_c_icon {
    width: 36px;
    height: 36px;
  }
  .pss_faq_open {
    padding: 25px 15px;
    gap: 15px;
  }
  .pss_faq_answer {
    padding: 25px 15px;
  }
  .pss_faq_cross {
    width: 34px;
    height: 34px;
  }
  .pss_faq_header {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
    padding-left: 20px;
  }
  .si_per_block {
    width: 100%;
    padding: 20px;
    gap: 20px;
  }
  /*PopUp*/
  .pops_sdc {
    padding: 60px 40px;
  }
  .pops_wysy {
    width: 100%;
  }
  .pops_char_icons {
    justify-content: center;
  }
  .pops_charI img {
    width: 30px;
    height: 30px;
    flex: 0 1 auto;
  }
  .pops_sd_dc_i {
    padding-left: 10px;
  }
  /*----------------------------- page casos de exito*/
  .pcde_card {
    min-height: 160px !important;
  }
  .cde_logo_cont {
    width: 120px;
    height: 50px;
  }
  /*----------------------------- single vacante*/
  .psv_wysy_cont h1, .psv_wysy_cont h2, .psv_wysy_cont h3, .psv_wysy_cont h4, .psv_wysy_cont h5, .psv_wysy_cont h6 {
    font-size: 14px;
  }
  .psv_requeriment .requeriment {
    margin-left: 15px;
  }
  .psv_requeriment .requeriment.approved::before {
    width: 20px;
    height: 20px;
  }
  .psv_requeriment .requeriment.failed::before {
    width: 20px;
    height: 20px;
  }
  .psv_details {
    gap: 30px;
  }
  .psv_white_tip {
    padding: 30px;
  }
  .psv_white_tip::after {
    width: 50px;
    height: 50px;
  }
  /*----------------------------- landing*/
  .landingNav {
    width: 90%;
    gap: 15px;
  }
  .landingNav .pland_purbleButton {
    text-align: center;
  }
  .landingLogo {
    height: 30px;
  }
  .pland_border_block {
    border-radius: 0 0 30px 30px;
  }
  .pland_hero_center_cont > div {
    width: 90%;
    align-self: flex-start !important;
  }
  .pland_HyphatIA {
    margin-top: 40px;
    margin-bottom: 60px;
    flex-direction: column-reverse;
    padding: 30px 30px;
  }
  .pland_white_info {
    padding: 10px 25px;
    border-radius: 15px;
  }
  .pland_iatextcont {
    width: 100%;
  }
  .pland_iahand {
    width: 100%;
    min-height: 200px;
  }
  .pland_radar_block .right {
    max-height: 200px;
  }
  .pland_radar_grid {
    grid-template-columns: 1fr;
  }
  .pland_radar_grid > div {
    padding: 15px 15px;
    border-radius: 15px;
  }
  .pland_radar_grid > :nth-child(1) {
    grid-row: auto;
  }
  .pland_radar_grid > :nth-child(2) {
    grid-row: auto;
  }
  .pland_radar_grid > :nth-child(3) {
    grid-row: auto;
  }
  .pland_radar_grid > :nth-child(4) {
    grid-column: auto;
    grid-column-start: auto;
    grid-row-start: auto;
    flex-direction: column;
  }
  .pland_radar_grid > :nth-child(4) p {
    text-align: center;
  }
  .pland_radar_bar {
    display: none;
  }
  .pland_benefict_table {
    margin: 50px auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pland_benefict_table .pland_bene_card:not(:last-child) {
    margin-bottom: 20px;
  }
  .pland_white_bar {
    flex-direction: column;
  }
  .pland_white_bar > div {
    width: 100%;
  }
  .pland_aspect {
    width: 90%;
  }
  .pland_aspect p {
    text-align: center;
  }
  .pland_think_ul {
    overflow: auto;
    border-radius: 15px;
  }
  .pland_think_ul::-webkit-scrollbar {
    display: none;
  }
  .pland_think_li {
    overflow: auto;
    width: 600px;
  }
  .pland_grcard {
    width: 100% !important;
  }
  .pland_nm_pc {
    width: 80%;
    grid-template-columns: 1fr;
  }
  .pland_nm_c_photo {
    min-height: 175px;
    aspect-ratio: 9/16;
  }
  /*----------------------------- Blocks*/
  /*formulary*/
  .formulary {
    min-height: auto;
    gap: 60px;
  }
  .formulary::after {
    width: calc(100% - 40px);
  }
  .form_input {
    height: 40px;
    border-radius: 5px;
  }
  /**/
  .gtb_redbar {
    flex-direction: column;
    gap: 20px;
  }
  .gtb_redbar > * {
    width: 100%;
  }
  .gtb_lc_smallT {
    width: 100%;
    margin-bottom: 15px;
  }
  .gtb_lc_bigT {
    width: 100%;
  }
  .gtb_rc_text {
    align-self: flex-start;
    width: 100%;
  }
  /**/
  /*----------------------------- Split block*/
  .spb_split .spb_image {
    height: 240px !important;
  }
  .spb_split.mini_frame {
    padding: 25px;
    border-radius: 15px;
  }
  /**/
  .rrb_borderCont {
    padding: 30px 40px;
  }
  /*----------------------------- Header*/
  .gobackSubmenu button {
    height: 15px;
  }
  /*----------------------------- footer*/
  .fsuscribe_cont {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .fsuscribe_f {
    border-radius: 15px;
    flex-direction: column;
    gap: 20px;
  }
  .fsuscribe_f .suscribeBtn {
    padding: 10px 15px;
    border-radius: 15px;
  }
  .fo_logo {
    width: 80px;
    margin-bottom: 0px;
  }
  .ficonRed {
    margin-right: 8px;
  }
  .fo_socialCont {
    gap: 10px;
  }
  .fo_infob {
    width: 100%;
  }
  .fo_accessCont {
    width: 100%;
    margin-top: 40px;
  }
  .fo_access {
    margin-bottom: 30px;
  }
}
@media only screen and (max-height: 800px) and (min-width: 1024px) {
  /*Home*/
  .hb1_linesCont > div {
    transform: skewX(-17deg);
  }
  .humanHand {
    height: 190px;
  }
  .robotHand {
    height: 100px;
  }
  .hb_transform {
    height: 70%;
  }
  .hb_transform .redTriangle {
    width: auto;
  }
  .hb_transform .sbLogo {
    width: 112px;
    height: auto;
  }
  /*card*/
  .hb6_card {
    width: 250px;
    height: 250px;
  }
}/*# sourceMappingURL=style.css.map */