/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: #a2ca35;
}

body {
  color: #505050;
  font-size: 1rem;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.main-page-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #262626;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #262626;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
}

*::-moz-selection {
  background: #a2ca35;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #a2ca35;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #a2ca35;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #505050;
  font-size: 18px;
  opacity: 1;
}

*::placeholder {
  color: #505050;
  font-size: 18px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #a2ca35;
  background: #a2ca35;
}
.btn-theme:hover {
  background: #a2ca35;
  color: #fff;
  border-color: #a2ca35;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #a2ca35;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #a2ca35;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

@media (min-width: 1200px) {
  .c-row-40 {
    --bs-gutter-x: 40px !important;
  }
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}


[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #a2ca35;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1350px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
/* Move frame*/
@keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }
  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 100px;
  }
  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 200px;
  }
  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}
@-webkit-keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }
  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 200px;
  }
  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 100px;
  }
  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}
@keyframes moveShap {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 100px;
    top: 0px;
  }
  50% {
    left: 100px;
    top: 100px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
@keyframes moveShap2 {
  0% {
    right: 0px;
    top: 0px;
  }
  25% {
    right: 100px;
    top: 0px;
  }
  50% {
    right: 100px;
    top: 100px;
  }
  75% {
    right: 0px;
    top: 200px;
  }
  100% {
    right: 0px;
    top: 0px;
  }
}
/* Heartbeat frame*/
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/* Rotation frame*/
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 140, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.scaleUp1 {
  -webkit-animation-name: scaleUp1;
  animation-name: scaleUp1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}
@keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}
@keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(300px) rotate(90deg);
  }
  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-webkit-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(300px) rotate(90deg);
  }
  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-moz-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(300px) rotate(90deg);
  }
  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-o-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(300px) rotate(90deg);
  }
  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
    background: #a2ca35;
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    background: #a2ca35;
    opacity: 1;
  }
}
@-webkit-keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
    background: #a2ca35;
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    background: #a2ca35;
    opacity: 1;
  }
}
@-moz-keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
    background: #a2ca35;
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    background: #a2ca35;
    opacity: 1;
  }
}
@keyframes squareMove {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-100px) rotate(180deg);
  }
  66% {
    transform: translateX(200px) rotate(-90deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes squareMove {
  0% {
    transform: translateX(0px);
  }
  33% {
    transform: translateY(-100px);
  }
  66% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-moz-keyframes squareMove {
  0% {
    transform: translateX(0px);
  }
  33% {
    transform: translateY(-100px);
  }
  66% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes float-bob {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@-moz-keyframes float-bob-y {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@keyframes cus-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes cus-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes cus-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-btn a,
.theme-btn button {
  display: inline-block;
  padding: 16px 80px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  background: #a2ca35;
  border-radius: 15px;
  box-shadow: 5px 15px 45px rgba(22, 27, 45, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  outline: none;
  border: none;
}
.theme-btn a::before,
.theme-btn button::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: #262626;
}
.theme-btn a:hover,
.theme-btn button:hover {
  color: #ffffff;
}
.theme-btn a:hover::before,
.theme-btn button:hover::before {
  top: -40%;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------         EMPRESAS        --------- */      
/*------------------------------------------ */
/*------------------------------------------ */


.landing-convenio__header {
  background: linear-gradient(to right, #004e92, #000428);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.landing-convenio__titulo {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.landing-convenio__subtitulo {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.landing-convenio__btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}
.landing-convenio__btn:hover {
  background: #e0a800;
}

.landing-convenio__beneficios,
.landing-convenio__ofrecemos,
.landing-convenio__testimonial,
.landing-convenio__contacto {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.landing-convenio__seccion-titulo {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004e92;
}

.landing-convenio__benefits-grid,
.landing-convenio__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.landing-convenio__card {
  background: #e9ecef;
  padding: 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.landing-convenio__testimonial-texto {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.landing-convenio__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.landing-convenio__input,
.landing-convenio__select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.landing-convenio__submit {
  background: #004e92;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.landing-convenio__submit:hover {
  background: #002f5a;
}

.landing-convenio__footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------     ERROR PAGE - 404    --------- */      
/*------------------------------------------ */
/*------------------------------------------ */


#notfound {
  position: relative;
  min-height: 737px;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 920px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.notfound .notfound-404 {
  position: absolute;
  height: 100px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.notfound .notfound-404 h1 {
  font-family: 'Maven Pro', sans-serif;
  color: #ececec;
  font-weight: 900;
  font-size: 276px;
  margin: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound h2 {
  font-size: 46px;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0px;
}

.notfound p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 15px;
}

.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 16px 38px;
  border: 2px solid transparent;
  border-radius: 40px;
  background: #fff;
  border-color: #a2ca35;
  color: #a2ca35;
  font-weight: 400;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  background-color: #a2ca35;
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 h1 {
    font-size: 162px;
  }
  .notfound h2 {
    font-size: 26px;
  }
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------      INDEX FARADAY      --------- */      
/*------------------------------------------ */
/*------------------------------------------ */


/*   <!--   ──┤ [HEADER AREA] ├───────────────────────────────────────────   -->  */
.header-area {
  position: relative;
  z-index: 999;
}
.header-area.header-style-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 1199px) {
  .header-area.header-style-1 {
    margin-top: 14px;
  }
}

.header-area .logo {
  width: 240px;
}


.header-area .main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-area .main-menu ul li {
  display: inline-block;
  margin-right: 28px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-area .main-menu ul li {
    margin-right: 25px;
  }
}
.header-area .main-menu ul li:last-child {
  margin-right: 0;
}
.header-area .main-menu ul li:hover > a {
  color: #a2ca35;
}
.header-area .main-menu ul li a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #505050;
  padding: 36px 0;
}
.header-area .main-menu ul li i {
  margin-right: 5px;
  font-size: 16px;
}



.header-area .btn-beca-menu {
  text-align: center;
  display: flex;
  gap: 12px;
}
@media (max-width: 767px) {
  .header-area .btn-beca-menu {
    display: none;
  }
}

.header-area .btn-beca-menu a {
  background-color: #a2ca35;
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
}

.header-area .btn-beca-menu a:hover {
  background-color: #8eb424;
}

.header-area .btn-beca-menu .btn-campus {
  background-color: #fff;
  color: #a2ca35;
  padding: 8px 18px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #a2ca35;
}

.header-area .btn-beca-menu .btn-campus:hover {
  background-color: #a2ca35;
  color: #fff;
}



.sticky-header {
  position: fixed;
  width: 100%;
  background: #262626;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
}
.header-style-1 .sticky-header {
  background: #ffffff;
  padding: 12px 0px;
}
.header-style-1 .sticky-header .main-menu ul li a {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-border {
  background: rgba(80, 80, 80, 0.1);
  width: 100%;
  max-width: 1620px;
  margin-right: auto;
  margin-left: auto;
  height: 1px;
}



.open-menu-bar {
  width: 44px;
  height: 41px;
  background: #a2ca35;
  display: inline-block;
  border-radius: 5px;
  margin-left: 30px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s linear 0s;
}
.open-menu-bar .bar-1,
.open-menu-bar .bar-2,
.open-menu-bar .bar-3 {
  width: 25px;
  height: 1.5px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear 0s;
}
.open-menu-bar .bar-1 {
  margin-top: -8px;
}
.open-menu-bar .bar-3 {
  margin-top: 8px;
}
.open-menu-bar.active {
  background: #a2ca35;
}
.open-menu-bar.active .bar-2 {
  visibility: hidden;
  opacity: 0;
}
.open-menu-bar.active .bar-1 {
  transform: translate(-50%, -50%) rotate(45deg);
  margin: 0;
}
.open-menu-bar.active .bar-3 {
  transform: translate(-50%, -50%) rotate(-45deg);
  margin: 0;
}




.header-area.header-style-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.header-area.header-style-2 .main-header-area-2 {
  text-align: center;
  display: flex;
  justify-content: center;
}

.header-area.header-style-2 img {
  margin: 20px;
  width: 131px;
}
  





/*   <!--   ──┤ [OFF CANVAS] ├───────────────────────────────────────────   -->  */

.off-canvas-section {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}

.off-canvas-section.active {
  visibility: visible;
  opacity: 1;
}

.off-canvas-section .off-canvas-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.off-canvas-wrap {
  overflow-y: auto;
  width: 100%;
  max-width: 480px;
  height: 100%;
  padding: 50px;
  background: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: -99999;
}

@media (max-width: 767px) {
  .off-canvas-wrap {
    max-width: 100%;
    padding: 30px 15px;
  }
}

.off-canvas-wrap::-webkit-scrollbar {
  width: 0.3em;
}

.off-canvas-wrap::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.off-canvas-wrap::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.off-canvas-wrap .off-canvas-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}

.off-canvas-wrap .off-canvas-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #a2ca35;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.off-canvas-wrap .off-canvas-close i {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.off-canvas-wrap .off-canvas-close:hover {
  transform: scale(1.1);
}

.off-canvas-wrap .off-canvas-close:hover i {
  transform: rotate(180deg);
}

.off-canvas-wrap.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}

.off-canvas-wrap .btn-alumno {
  text-align: center;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.off-canvas-wrap .btn-alumno a {
  background-color: #a2ca35;
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
}

.off-canvas-wrap .btn-alumno a:hover {
  background-color: #8eb424; /* Color al pasar el mouse */
}

.off-canvas-wrap .btn-alumno .btn-campus {
  background-color: #fff;
  color: #a2ca35;
  padding: 8px 18px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #a2ca35;
}

.off-canvas-wrap .btn-alumno .btn-campus:hover {
  background-color: #a2ca35; /* Color al pasar el mouse */
  color: #fff;
}

.off-canvas-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.off-canvas-menu ul li {
  display: block;
}
.off-canvas-menu ul li:hover > a {
  color: #a2ca35;
}
.off-canvas-menu ul li a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #505050;
  padding: 10px 30px 10px 0;
}






/*   <!--   ──┤ [HERO SECTION] ├───────────────────────────────────────────   -->  */

.hero-section {
  position: relative;
  background: center bottom / cover no-repeat;
  padding: 150px 0 100px;
}

@media (max-width: 1199px) {
  .hero-section {
    padding-top: 160px;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 70px;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    margin: 0 -80px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    flex-direction: column;
    margin: 0 10px;
  }
}

@media (max-width: 766px) {
  .hero-content {
    flex-direction: column;
    margin: 0 30px;
  }
} 

.info-text {
  flex: 0 0 40%;
  max-width: 520px; 
  text-align: center;
}

.info-text h2 {
  font-size: 20px;
  font-weight: 500;
  color: #363636;
  margin-bottom: -10px;
  letter-spacing: 6px;
}

.info-text h1 {
  font-size: 32px;
  color: #a2ca35;
  margin-bottom: 0px;
  font-weight: bold;
}

.info-text h3 {
  font-size: 28px;
  font-weight: 500;
  color: #262626;
  margin: 14px 0px 30px;
  letter-spacing: 1px;
  line-height: 28px;
}

.img-responsive {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .img-responsive {
    object-position: center top;
  }
}

.info-form {
  color: #fff;
  background-color: #262626;
  padding: 40px 42px;
  border-radius: 25px;
  flex: 0 0 55%;  /* o 60% */
  max-width: 600px;
  text-align: center;
}

.info-form h2 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
}

.alert-tel {
  font-weight: bold;
}

.info-form label {
  font-size: 12px;
}

.info-form label a {
  color: #fff;
  text-decoration: underline;
}

.apellido-group {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.apellido-group .info-input {
  flex: 1 1 0;
  min-width: 0;
}

.info-input {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 14px;
}

.info-input i {
  color: #1757a3;
  margin-right: 10px;
}

.info-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  min-width: 0;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.privacy-checkbox input {
  margin-right: 5px;
}

.btn-info,
.btn-chat {
  color: #fff;
  padding: 8px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0;
}

.btn-info {
  background-color: #ff9611;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-info i{
  font-size: 22px;
  margin-right: 10px;
}

.btn-chat {
  background-color: #00b000;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-chat i {
  margin-right: 10px;
  font-size: 26px;
}

.lined-text {
  display: flex;
  align-items: center;
  text-align: center;
}

.lined-text::before,
.lined-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ffffff8c;
  margin: 0 10px;
}
@media (max-width: 1199px) {

  .info-text h2 {
    font-size: 24px !important;
  }

  .info-text h1 {
    font-size: 38px !important;
  }

  .info-text h3 {
    font-size: 24px !important;
  }


  .info-form {
    padding: 20px 30px;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  
  .info-text h2 {
    font-size: 20px !important;
    line-height: 1.2;
  }

  .info-text h1 {
    font-size: 36px !important;
  }

  .info-text h3 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  .info-form {
    padding: 36px 60px;
    margin-top: 40px;
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .info-text h2 {
    font-size: 25px !important;
  }

  .info-text h1 {
    font-size: 36px !important;
  }

  .info-text h3 {
    font-size: 28px !important;
  }

  .info-form {
    padding: 36px 60px;
    margin-top: 60px;
    max-width: 520px;
  }

  .info-form h2 {
    font-size: 18px !important;
  }

  .info-input input,
  .btn-info,
  .btn-chat {
    font-size: 14px;
  }

  .btn-info,
  .btn-chat {
    padding: 6px;
  }
}

@media (max-width: 766px) {
  .info-text h2 {
    font-size: 21px !important;
    margin-bottom: 0px;
  }

  .info-text h1 {
    font-size: 34px !important;
  }

  .info-form {
    padding: 36px 100px;
    margin-top: 40px;
    max-width: 520px;
    margin: 40px 90px;
  }

  .info-form h2 {
    font-size: 18px !important;
  }

  .info-input input,
  .btn-info,
  .btn-chat {
    font-size: 14px;
  }

  .btn-info,
  .btn-chat {
    padding: 6px;
  }
}


  



/*   <!--   ──┤ [ABOUT SECTION] ├───────────────────────────────────────────   -->  */

.about-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
}

.about-banner .about-img {
  display: block;
  border-radius: 15px;
}

.about-banner .abs-img {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 6px solid #fff;
  z-index: 2;
}

@media (max-width: 1199px) {
    .about-banner .abs-img {
      display: none;
  }
}

.about-section .about-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section .about-thumb img {
    border-radius: 15px;
    text-align: center;
}

.about-content {
    padding-left: 85px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .about-content {
        padding-left: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-content {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .about-content {
        padding-left: 0;
    }
}

.about-content .sub-title {
  margin-bottom: 5px;
}

.about-content .sub-title p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 4px;
  color: #262626;
}

@media (max-width: 767px) {
  .about-content .sub-title p {
    letter-spacing: 0px;
    text-align: center;
  }
}

@media (max-width: 401px) {
  .about-content .sub-title p {
    letter-spacing: 0px;
  }
}

.about-content .title h2 {
  letter-spacing: 7px;
  color: #a2ca35;
  font-size: 34px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content .title h2 {
    letter-spacing: 3px;
  }
}

@media (max-width: 767px) {
  .about-content .title h2 {
    text-align: center;
  }
}

@media (max-width: 541px) {
  .about-content .title h2 {
    letter-spacing: 0px;
    font-size: 38px;
  }
}

.about-list { margin-block: 40px 60px; }

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.about-item:not(:last-child) { margin-block-end: 40px; }

.about-item .item-icon {
  padding: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; 
  justify-content: center;
  align-items: center;
}

.about-item .item-icon img {
  width: 30px;          
  height: 30px;
  object-fit: contain; 
}

.about-item .item-icon-1 { 
  background-color: #f3ffe8;
}

.about-item .item-icon-2 { 
  background-color: #fff6e8; 
}

.about-item .item-icon-3 { 
  background-color: #edeffc; 
}

.about-item .item-icon-4 { 
  background-color: #eef2ff; 
}

.about-item .item-title {
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
  color: #262626;
}

.icon-container {
    display: inline-block;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    font-weight: bold;
}

.about-content .theme-btn {
    text-align: center;
}

.about-content .theme-btn i {
    margin-right: 10px;
}







/*   <!--   ──┤ [CAREER SECTION] ├───────────────────────────────────────────   -->  */

.career-section {
  position: relative;
  z-index: 1;
  background: rgba(95, 95, 95, 0.03);
}

.career-wrap {
  display: flex;
  align-items: center;
  padding: 28px 56px;
  background: #ffffff;
  border-radius: 6px;
  gap: 32px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .career-wrap {
    padding: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .career-wrap {
    padding: 30px 15px 20px 15px;
  }
}

.career-wrap .thumb {
  max-width: 200px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .career-wrap .thumb {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .career-wrap .thumb {
    margin-left: auto;
    margin-right: auto;
  }
}

.career-wrap .thumb img {
  max-width: 100%;
}

.career-wrap .content  {
  text-align: left;
}

.career-wrap .content h4 {
  max-width: 316px;
  margin: 0px;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #262626;
}

@media (min-width: 1200px) {
  .career-wrap .content h4 {
    font-size: 20px;
    line-height: 32px;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .career-wrap .content h4 {
    font-size: 20px;
    line-height: 32px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .career-wrap .content h4 {
    max-width: 100%;
    font-size: 20px;
  }
}

@media (max-width: 515px) {
  .career-wrap .content h4 {
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 378px) {
  .career-wrap .content h4 {
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}

.career-section .theme-btn {
  text-align: center;
}

.career-section .theme-btn i{
  margin-right: 10px;
}





/*   <!--   ──┤ [CHOOSE SECTION] ├───────────────────────────────────────────   -->  */

.choose-section img{
  border-radius: 15px;
}

.choose-content {
  max-width: 570px;
}

.choose-content .sub-title {
  margin-bottom: 5px;
}

.choose-content .sub-title p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 4px;
  color: #262626;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .choose-content .sub-title p {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .choose-content .sub-title p {
    font-size: 15px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .choose-content .sub-title p {
    font-size: 20px;
  }
}

@media (min-width: 431px) and (max-width: 767px) {
  .choose-content .sub-title p {
    font-size: 22px;
    letter-spacing: 8px;
  }
}

@media (min-width: 360px) and (max-width: 430px) {
  .choose-content .sub-title p {
    font-size: 16px;
    letter-spacing: 8px;
  }
}

.choose-content .title {
  margin-bottom: 30px;
  position: relative;
}

.choose-content .title h2{
  letter-spacing: 6px;
  color: #a2ca35;
  font-size: 34px;
}

@media (max-width: 1200px) {
  .choose-content .title h2 {
    letter-spacing: 3px;
  }
}

@media (max-width: 991px) {
  .choose-content .title h2 {
    letter-spacing: 10px;
    text-align: center;
    font-size: 31px;
  }
}

@media (max-width: 767px) {
  .choose-content .title h2 {
    letter-spacing: 7px;
  }
}

@media (max-width: 430px) {
  .choose-content .title h2 {
    letter-spacing: 0px;
  }
}

@media (min-width: 360px) and (max-width: 429px) {
  .choose-content .title h2 {
    letter-spacing: 0px;
    font-size: 30px;
  }
}

.choose-content .theme-btn {
  text-align: center;
}

.choose-content .theme-btn i {
  margin-right: 10px;
}

.choose-content .check-list {
  margin-bottom: 50px;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .choose-content .check-list {
      margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .choose-content .check-list {
      margin-bottom: 30px;
  }
}

.choose-content .check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 28px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #262626;
}

.choose-content .check-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .choose-content .check-list li {
      font-size: 16px;
      margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .choose-content .check-list li {
      font-size: 16px;
      margin-bottom: 10px;
      margin-left: 0px;
  }
}

.choose-content .check-list li i {
  color: #1757a3;
  margin-right: 10px;
}

.choose-content .check-list li p {
  margin-left: 40px;
  font-size: 16px;
  font-weight: 400;
}











/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------     FOOTER - WHATSAPP    --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.whatsapp-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-text {
  font-size: 16px;
  color: #25d366;
  font-weight: bold;
  background-color: white;
  padding: 4px 32px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------     FOOTER SECTION      --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.footer-section {
  background: #262626;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widget-layout-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget-layout-top {
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .footer-widget-layout-top {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0;
  }
}

.footer-widget-top {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  text-align: center;
}

.footer-widget-top:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

@media (min-width: 1200px) {
  .footer-widget-top:before {
    left: -65px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-widget-top:before {
    left: -30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget-top:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-widget-top:before {
    display: none;
  }
}

.footer-widget-top:first-child:before {
  display: none;
}

.footer-widget-top .title {
  margin-bottom: 10px;
}

.footer-widget-top .title p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #ffffff;
}

.footer-widget .text-info p {
  padding-right: 148px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #ffffff;
}

@media (min-width: 220px) and (max-width: 1199px) {
  .footer-widget .text-info p {
    padding-right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget-top .title p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer-widget-top .title p {
    font-size: 16px;
  }
}

.footer-widget-top .content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-widget-top .content .phone-icon {
  margin-right: 10px;
  color: #ffffff;
}

.footer-widget-top .content .number a {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: #ffffff;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget-top .content .number a {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .footer-widget-top .content .number a {
    font-size: 18px;
  }
}

.footer-widget-top .content .number a:hover {
  color: #a2ca35;
}

@media (min-width: 768px) and (max-width: 991px) {
  .logo_blanco {
    text-align: center;
  }
}

.logo_blanco img {
  max-width: 180px;
  width: 100%;
}

.footer-middle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widget {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-widget {
    text-align: center;
    margin-bottom: 40px;
  }
}

.footer-widget .title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-widget .title {
    margin-bottom: 15px;
  }
}

.footer-widget .title h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 0;
}

.footer-widget .text p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 30px;
  color: #ffffff;
}

.footer-widget .footer-btn {
  margin-top: 30px;
}

.footer-widget .footer-btn a {
  display: inline-block;
  padding: 15px 45px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  background: linear-gradient(0deg, #a2ca35, #a2ca35), #d9d9d9;
  border-radius: 6px;
}

.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .footer-widget ul li {
    margin-bottom: 10px;
  }
}

.footer-widget ul li a {
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #ffffff;
}

.footer-widget ul li a:hover {
  color: #a2ca35;
}

.footer-widget .social-icon {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .footer-widget .social-icon {
    justify-content: center;
  }
}

.footer-widget .social-icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget .social-icon a {
    height: 45px;
    width: 45px;
  }
}

.footer-widget .social-icon a:hover {
  color: #a2ca35;
  background: #fff;
}

.copyright-text p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .copyright-text p {
    font-size: 16px;
    line-height: 28px;
  }
}

.copyright-text a {
  color: #ffffff;
  font-weight: 600;
}

.copyright-text a:hover {
  color: #a2ca35;
}









/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------    FOOTER CON CONTACTO  --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.contact-info-footer {
  text-align: center;
  font-size: 16px;
  margin: 80px 0px 20px;
}

@media (max-width: 1399px) {
  .contact-info-footer {
    margin: 80px 100px 20px;
  }
}

@media (max-width: 1199px) {
  .contact-info-footer {
    margin: 80px 135px 20px;
  }
}

@media (max-width: 1199px) {
  .contact-info-footer {
    margin: 80px 20px 20px;
  }
}

.faq-wrapper {
  padding: 40px;
  background: rgba(36, 93, 81, 0.03);
  border-radius: 6px;
}
@media (max-width: 767px) {
  .faq-wrapper {
    padding: 0;
    border-radius: 0;
    background: none;
  }
}
.faq-wrapper .contract-phone {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 6px;
}
.faq-wrapper .contract-phone .title h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
  color: #a2ca35;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .contract-phone .title h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .contract-phone .title h2 {
    font-size: 28px;
    line-height: 40px;
  }
}
.faq-wrapper .contract-phone .input-wrap {
  margin-bottom: 20px;
}
.faq-wrapper .contract-phone .input-wrap input {
  padding: 14px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #505050;
  background: #f7f7f7;
  border-radius: 6px;
  border: none;
}
.faq-wrapper .contract-phone .input-wrap textarea {
  padding: 14px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #505050;
  background: #f7f7f7;
  border-radius: 6px;
  border: none;
  height: 182px;
}
.faq-wrapper .contract-phone .submit-btn {
  margin-top: 10px;
}
.faq-wrapper .contract-phone .submit-btn button {
  width: 100%;
  display: block;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  background: #a2ca35;
  border-radius: 6px;
  border: 0;
}
@media only screen and (max-width: 767.98px) {
  .faq-wrapper .contract-phone {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.faq-content-wrap {
  background: #fff;
  padding: 40px;
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  .faq-content-wrap {
    padding: 24px 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .faq-content-wrap {
    padding: 24px 0px;
  }
}

.faq-content-wrap p{
  font-weight: 600;
  color: #262626;
  font-size: 18px;
  letter-spacing: 3px;
}

.faq-content-wrap .title h2{
  color: #a2ca35;
  margin-top: -10px;
  letter-spacing: 4px;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid rgba(80, 80, 80, 0.2);
}
.faq-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #161b2d;
  padding: 20px 0;
  position: relative;
  padding-right: 48px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.faq-accordion .accordion-item .accordion-header .accordion-button:before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(0deg, #a2ca35, #a2ca35), #d9d9d9;
  box-shadow: 5px 15px 45px rgba(7, 95, 51, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed:before {
  content: "\f068";
  background: #a2ca35;
}
.faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #505050;
}
@media only screen and (max-width: 1200px) {
  .faq-accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 16px;
  }
}






/* ----------------------------------------- */
/* ----------------------------------------- */
/* ------- TERMINOS Y CONDICIONES  --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

@media (max-width: 767px) {
  .privacy-section {
    padding-top: 120px;
  }
}

.privacy-content {  
  text-align: justify;
}

.privacy-title {
  text-align: center;
  padding-top: 80px;
}

.privacy-content .remark {
  font-weight: 600;
}

.privacy-content .data ul{
  list-style-type: upper-alpha;
}

.privacy-content .data ul li{
  margin-bottom: 20px;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------   PAGINA DE NOSOTROS    --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.choose-3-thumb {
  position: relative;
  z-index: 1;
}
.choose-3-thumb .thumb {
  display: inline-block;
}
.choose-3-thumb .thumb img {
  border-radius: 50%;
}
.choose-3-thumb .thumb-2 {
  position: absolute;
  top: 10%;
  left: -5%;
}
.choose-3-thumb .thumb-2 img {
  border-radius: 50%;
  border: 8px solid #ffffff;
}
@media (max-width: 575px) {
  .choose-3-thumb .thumb-2 img{
    width: 160px;
  }
}

.about-us-choose-content {
  max-width: 497px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-choose-content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .about-us-choose-content {
    max-width: 100%;
  }
}

.about-us-choose-content .sub-title p {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #505050;
}
@media (max-width: 767px) {
  .about-us-choose-content .sub-title p {
    font-size: 16px;
  }
}
.about-us-choose-content .title {
  margin-bottom: 20px;
}

.about-us-choose-content .title h2{
  color: #a2ca35;
  font-style: italic;
  font-size: 34px;

}

.about-us-choose-content .text p {
  font-size: 17px;
  line-height: 26px;
  text-align: justify;
}
@media (max-width: 767px) {
  .about-us-choose-content .text p {
    font-size: 16px;
  }
}





/*   <!--   ──┤ [FEATURE WRAP] ├───────────────────────────────────────────   -->  */

.features-section {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-section .container {
  width: 100%;
  max-width: 1200px; /* O el ancho máximo que prefieras */
  margin: 0 auto; /* Centra el contenedor */
}

.features-section .row {
  justify-content: center; /* Centra las columnas horizontalmente */
}

.feature-wrap {
  padding: 30px 34px;
  border: 2px solid rgba(22, 27, 45, 0.05);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s linear 0s;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra los elementos internos */
  text-align: center;
}

.feature-wrap:hover {
  border-color: transparent;
  box-shadow: 5px 15px 45px rgba(80, 80, 80, 0.08);
  border-radius: 6px;
}

.feature-wrap .icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: rgba(36, 93, 81, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px; /* Centra el ícono y añade margen inferior */
}

.feature-wrap .title {
  margin-bottom: 8px;
}

.feature-wrap .title h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #161b2d;
}

.feature-wrap .title,
.feature-wrap .text {
  width: 100%;
  text-align: center;
}

.feature-wrap .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #505050;
  margin: 0 auto;
  text-align: left;

}

@media only screen and (max-width: 991.98px) {
  .feature-wrap {
    padding: 25px 15px 20px 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .feature-wrap .text p {
    font-size: 16px;
  }
}





/*   <!--   ──┤ [ABOUT CONTENT] ├───────────────────────────────────────────   -->  */
.about-content-2 {
  padding-left: 85px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-content-2 {
    padding-left: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-content-2 {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content-2 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-content-2 {
    padding-left: 0;
  }
}

.about-content-2 p {
  font-size: 17px;
}

.about-content-2 .sub-title {
  margin-bottom: 15px;
}

.about-content-2 .sub-title p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #505050;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content-2 .sub-title p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-content-2 .sub-title p {
    font-size: 16px;
  }
}

.about-content-2 .title h2 {
  color: #a2ca35;
  margin-bottom: 20px;
  
}

.about-content-2 .check-list {
  margin-bottom: 50px;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-conten0-2t .check-list {
      margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-content-2 .check-list {
      margin-bottom: 30px;
  }
}

.about-content-2 .check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 28px;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  color: #262626;
}

.about-content-2 .check-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content-2 .check-list li {
      font-size: 16px;
      margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .about-content-2 .check-list li {
      font-size: 16px;
      margin-bottom: 10px;
      margin-left: 0px;
  }
}

.about-content-2 .check-list li i {
  color: #1757a3;
  margin-right: 10px;
}

.about-box-wrap {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767.98px) {
  .about-box-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.about-box-wrap .about-box {
  background: rgba(36, 93, 81, 0.1);
  border-radius: 6px;
  padding: 20px;
}

.about-box-wrap .about-box .icon a i {
  color: #a2ca35;
  margin-bottom: 20px;
}

.about-box-wrap .about-box .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #161b2d;
  margin-bottom: 0;
}

.about-box-wrap .about-box .text {
  margin-top: 10px;
}

.about-box-wrap .about-box .text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #505050;
  max-width: 177px;
}

@media only screen and (max-width: 767.98px) {
  .about-box-wrap .about-box {
    width: 100%;
  }
}

.about-img-wrapper-2 {
  position: relative;
  display: inline-block;
}

.about-img-wrapper-2 .about-main-img {
  position: relative;
  z-index: 1;
}

.about-img-wrapper-2 .about-main-img img {
  border-radius: 0 0 100px 100px;
}

.about-img-wrapper-2 .experience-box {
  background: #ffffff;
  width: 205px;
  position: absolute;
  bottom: 278px;
  left: -82px;
  border-radius: 6px;
  z-index: 2;
  padding: 30px 30px 10px 30px;
  box-shadow: 5px 15px 45px rgba(1, 83, 159, 0.1);
  animation: float-bob-y infinite linear 4s;
}

.about-img-wrapper-2 .experience-box .text-content {
  display: flex;
  align-items: center;
}

.about-img-wrapper-2 .experience-box .text-content h4 {
  color: #a2ca35;
  font-size: 27px;
  margin-bottom: 0;
  margin-left: 6px;
}

.about-img-wrapper-2 .experience-box .text-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

@media only screen and (max-width: 1600px) {
  .about-img-wrapper-2 .experience-box {
    left: 0;
  }
}

@media (max-width: 767px) {
  .about-img-wrapper-2 .experience-box {
    bottom: 20px;
    left: 0;
    width: 173px;
  }
}





/*   <!--   ──┤ [VIDEO ] ├───────────────────────────────────────────   -->  */

.video-section-3 .sub-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #505050;
}

.video-section-3 .title h2{
    color: #a2ca35;
}


.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-wrapper .thumb {
    width: 70%;
}

.video-wrapper .thumb a {
    display: block;
    width: 100%;
    position: relative;
}

.video-wrapper img {
    border-radius: 25px;
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
  .video-wrapper .thumb {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .video-section-3 .title h2{
    color: #a2ca35;
    font-size: 28px;
  }

  .video-section-3 .sub-title{
    font-size: 20px;
}
}




/*   <!--   ──┤ [COUNTER] ├───────────────────────────────────────────   -->  */

.counter-section-3 .counter-wrap-3 img {
  margin-bottom: 40px;
}

.counter-section-3 .counter-wrap-3 .counter-info h3 {
  margin: 0px;
}







/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------    PAGINA DE CONTACTO   --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

/*   <!--   ──┤ [DATOS GENERALES CONTACTO ] ├───────────────────────────────────────────   -->  */

.contact-area {
    background: #fff;
  }

.contact-info-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1199px) {
  .contact-info-layout {
    margin-top: 60px;
    }
}

.contact-info-layout .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 415px;
}

.contact-info-layout .info-item .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #a2ca35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

@media (max-width: 767px) {
  .contact-info-layout .info-item .icon {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

.contact-info-layout .info-item .text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.contact-info-layout .info-item .text p {
  color: #161b2d;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-info-layout .info-item .text p {
    font-size: 16px;
    width: 100%;
    line-height: 1.2;
  }
}

.contact-info-layout .info-item .text a {
  color: #161b2d;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-info-layout .info-item .text a {
    font-size: 16px;
    width: 100%;
    line-height: 1.2;
  }
}






/*   <!--   ──┤ [FORMULARIO SECTION] ├───────────────────────────────────────────   -->  */

.contact-wrapper {
  padding: 48px 35px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 25px;
}

@media only screen and (max-width: 991.98px) {
  .contact-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main-contact-form .input-wrap,
.input-wrap {
  margin-bottom: 30px;
}

.main-contact-form .input-wrap label,
.input-wrap label {
  color: #505050;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}

.main-contact-form .input-wrap input,
.input-wrap input {
  width: 100%;
  border-radius: 6px;
  background: #f8fafa;
  border: 0;
  padding: 18px 20px;
  color: #505050;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-contact-form .input-wrap input:focus::-webkit-input-placeholder,
.input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap input:focus:-moz-placeholder,
.input-wrap input:focus:-moz-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap input:focus::-moz-placeholder,
.input-wrap input:focus::-moz-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap input:focus:-ms-input-placeholder,
.input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap textarea,
.input-wrap textarea {
  width: 100%;
  height: 169px;
  border-radius: 6px;
  background: #f8fafa;
  border: 0;
  padding: 20px 20px;
  color: #505050;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-contact-form .input-wrap textarea:focus::-webkit-input-placeholder,
.input-wrap textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap textarea:focus:-moz-placeholder,
.input-wrap textarea:focus:-moz-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap textarea:focus::-moz-placeholder,
.input-wrap textarea:focus::-moz-placeholder {
  color: transparent;
}

.main-contact-form .input-wrap textarea:focus:-ms-input-placeholder,
.input-wrap textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.submit-btn button {
  padding: 15px 75px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  background: #a2ca35;
  border-radius: 15px;
  border: 0;
}

.submit-btn i {
  font-size: 1.1em;
  padding-right: 5px;
}

.submit-btn button:hover {
  background: #1f77b6;
}  










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------    PAGINA - SIGN IN    --------- */      
/*------------------------------------------ */
/*------------------------------------------ */
  
.signin-container {
  display: flex;
  max-width: 900px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 214px auto 100px;
}
  
.signin-container .image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a2ca35;
  border-radius: 10px 0 0 10px;
}

.signin-container .image-section img {
  max-width: 80%;
  height: auto;
}

.signin-container .signin-form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 503px;
}

.signin-container .signin-form-section h1 {
  margin-bottom: 20px;
  font-size: 25px;
  color: #333;
  text-align: center;
}

.signin-container .signin-form-section .input-group {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 24px ;
  min-width: 320px;
}

.signin-container .signin-form-section .input-group i {
  color: #a2ca35;
  margin-right: 10px;
}

.signin-container .signin-form-section .input-group input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
}

.signin-container .signin-form-section .login-btn {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 0;
  background-color: #a2ca35;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.signin-container .signin-form-section .login-btn:hover {
  background-color: #1b74b4;
}

.signin-container .signin-form-section .create-account {
  margin-top: 15px;
  text-decoration: none;
  color: #4285F4;
}

.signin-container .signin-form-section .create-account:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .image-section {
    display: none;
  }

  .form-section {
    padding: 20px;
  }

  .form-section h1 {
    font-size: 1.5rem;
  }

  .input-group {
    padding: 8px;
  }

  .login-btn {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .create-account {
    font-size: 0.8rem;
  }

}

@media (max-width: 480px) {
  .form-section h1 {
    font-size: 1.2rem;
  }

  .login-btn {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .create-account {
    font-size: 0.7rem;
  }

}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------  INSCRIPCIONES GENERAL  --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

/*   <!--   ──┤ [BARRA DE PROGRESO] ├───────────────────────────────────────────   -->  */

.progress-bar {
  width: 100%;
  background-color: #ebebeb;
  height: 8px;
  border-radius: 15px;
  margin: 0;
  position: absolute; 
  top: 116px;
}

.progress {
  width: 0%; 
  height: 100%;
  background-color: #5aca63; 
  transition: width 0.5s ease; 
}






/*   <!--   ──┤ [BARRA DE PASOS] ├───────────────────────────────────────────   -->  */

.step-bar {
  margin: 180px auto 60px;
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.step-bar .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    flex: 1;
}

.step-bar .circle {
    width: 50px;
    height: 50px;
    border: 3px solid #d3d3d3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    background-color: white;
    color: #d3d3d3;
    z-index: 1;
}


.step-bar p {
  margin-top: 10px;
  font-size: 14px;
  color: #8d8d8d;
  line-height: normal;

}

.step-bar .step.completed .circle {
    border-color: #3675a0;
    background-color: #5a9dca;
    color: white;
}

.step-bar .line {
    height: 3px;
    flex: 1;
    background-color: #d3d3d3;
    position: relative;
    top: -23px;
    z-index: 0;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------      INCRIPCIONES       --------- */      
/*------------------------------------------ */
/*------------------------------------------ */

/* General Styles */
.general-form {
text-align: center;
}

.general-form h1 {
color: #a2ca35;
font-size: 32px;
letter-spacing: 6px;
margin: 30px 0px 60px;
}

/* Section: Part Form */
.part-form {
background-color: #d9edf7;
border-radius: 12px;
padding: 22px;
margin-bottom: 10px;
}

.part-form p {
color: #666;
font-size: 14px;
margin: 0;
line-height: normal;
}

.instruction {
background: #f9f9c8;
padding: 18px 20px;
font-size: 13px;
border-left: 4px solid #ffd700;
margin-bottom: 12px;
font-weight: 500;
border-radius: 5px;
}

.instruction h4{
margin-left: 14px;
margin-bottom: 0px;
font-size: 14px;
font-weight: 600;
color: #262626;
}

@media (min-width: 200px) and (max-width: 1399px) {
  .instruction h4 {
    margin-bottom: 20px;
  }
}

.instruction ul{
margin: 0px;
}

.instruction ul li{
height: 20px;
}

@media (min-width: 200px) and (max-width: 1399px) {
  .instruction ul li {
    height: auto;
    line-height: normal;
    margin-bottom: 10px;
  }
}

.medio-contacto {
  margin-top: 40px;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* ------- INCRIPCIONES BIENVENIDA  -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.wide-container {
  max-width: 1460px;
}

.welcome {
  margin: 20px auto;
  padding: 50px 60px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.welcome  .welcome-content {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 20px;
}

.welcome  .welcome-content  .welcome-text {
  flex: 1;
  padding-right: 20px;
}

.welcome  .welcome-content  .welcome-text  h1 {
  color: #323232;
  font-size: 24px;
}

.welcome  .welcome-content  .welcome-text p {
  line-height: 1.5;
}

.welcome  .welcome-content  .welcome-text .highlight {
  font-weight: 700;
  color: #1757a3;
}

.welcome  .welcome-content  .welcome-text ul {
  margin: 10px 0px 40px;
  padding-left: 20px;
  list-style: disc;
}

.welcome  .welcome-content  .welcome-text ul li {
  line-height: 1.2;
}

.welcome  .welcome-content  .welcome-text .theme-btn {
  text-align: center;
  margin-top: 60px;
}

.img-container {
  flex: 1; 
  text-align: center; 
}

.img-container img {
  max-width: 100%; 
  height: auto;
  max-height: 320px;
}

@media (max-width: 768px) {
  .welcome-content {
    flex-direction: column; 
  }

  .welcome-text {
    padding-right: 0; 
    margin-bottom: 20px;
  }

  .img-container img {
    max-height: 200px; 
  }
}

@media (max-width: 480px) {
  .welcome {
    padding: 20px 30px;
  }

  .welcome h1 {
    font-size: 24px; 
    text-align: center;
  }

  .welcome p {
    font-size: 14px; 
  }

  .img-container img {
    max-height: 150px;
  }
}
  
  








/* ----------------------------------------- */
/* ----------------------------------------- */
/* ------- INCRIPCIONES DATOS PERSONALES  -------- */      
/*------------------------------------------ */
/*------------------------------------------ */


/*   <!--   ──┤ [DATOS PERSONALES] ├───────────────────────────────────────────   -->  */

.personal-information {
  margin: 20px auto;
  padding: 50px 60px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

@media (max-width: 992px) {
  .personal-information {
    padding: 40px 38px;
  }
}

@media (max-width: 576px) {
  .personal-information {
    padding: 32px 22px;
  }
}

.personal-information h2 {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

.personal-information p i {
  margin: 0px 5px 0px 15px;
}

.form-group {
  margin-bottom: 42px;
}

.form-group .text-label {
  display: block;
  font-weight: 500;
  color: #414141;
  font-size: 16px;
}

.form-group .form-control-data {
  width: 100%;
  padding: 14px 24px;
  color: #505050b8;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  background-clip: padding-box;
  border: solid 1px #dee2e6;
  border-radius: 6px;
}

.form-group select.form-control-data {
  height: 50px;        
}

.form-group .form-control-data::placeholder {
  color: #505050b8;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.form-group .form-control-data:focus {
  border-color: #a2ca35; 
}

.form-group.foreigner {
  display: flex;
  align-items: center;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #414141;
  font-size: 16px;
}

.toggle input {
  display: none;
}

.toggle .toggle-btn {
  display: inline-block;
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}

.toggle .toggle-btn::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle input:checked + .toggle-btn {
  background: #5cb85c;
}

.toggle input:checked + .toggle-btn::before {
  transform: translateX(20px);
}

.personal-information .theme-btn {
  text-align: center;
}

.no-arrow {
  appearance: none; 
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  padding-right: 10px; 
}


/*   <!--   ──┤ [DATOS TUTOR] ├───────────────────────────────────────────   -->  */
.datos-tutor {
  display: none;
  margin-top: 60px;
}






/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------  INCRIPCIONES DOMICILIO  -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

/* .info-box {
  border: 1px solid #dee2e6; 
  border-radius: 5px; 
  overflow: hidden; 
  padding: 0px; 
}

.info-header {
  background-color: #5a85d6; 
  color: white; 
  font-size: 13px;
  font-weight: bold; 
  padding: 0px 15px;
  margin: 0; 
  box-sizing: border-box;
}


.info-content {
  font-size: 14px; 
  padding: 20px;
  color: #333; 
}

.info-content ul {
  padding-left: 20px; 
  margin: 0; 
}

.info-content ul li {
  line-height: 22px;
}


.comprobanteDomicilio {
  justify-content: space-between;
} */










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------  INCRIPCIONES ESTUDIOS   -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.datos-estudios {
  margin-top: 60px;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------    INCRIPCIONES PAGO     -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.pay-information {
  margin: 20px auto;
  padding: 50px 60px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.pay-information .info-pay-text {
  font-size: 16px;
}

.info-pay-text .illustrations {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0px 0px 10px;
}

.info-pay-text .illustrations img {
  width: 36%;
  border-radius: 20px;
  border: solid 1px #dee2e6;
  border: solid 4px #6c757d;
}

@media (max-width: 1199px) {
  .info-pay-text .illustrations img {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .info-pay-text .illustrations img {
    width: 100%;
  }
}

.info-pay-text .phrase {
  font-weight: 600;
  font-size: 14px;
  margin: 0px 360px;
  line-height: normal;
}

@media (max-width: 1199px) {
  .info-pay-text .phrase {
    margin: 0px 244px;
  }
}

@media (max-width: 992px) {
  .info-pay-text .phrase {
    margin: 0px 134px;
  }
}

@media (max-width: 768px) {
  .info-pay-text .phrase {
    margin: 0px 40px;
  }
}

@media (max-width: 480px) {
  .info-pay-text .phrase {
    margin: 0px;
  }
}

.container-pay {
  margin: 20px auto;
  padding: 0px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.container-pay .title {
  background-color: #a2ca35;
  color: white;
  padding: 10px 15px;
  border-radius: 5px 5px 0px 0px;
  margin-bottom: 20px;
}

.container-pay-text {
padding: 0px 40px 40px;
}

.button-group {
  text-align: center;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.btn.green {
  background-color: #28a745;
}

.btn.blue {
  background-color: #007bff;
}

.btn.red {
  background-color: #dc3545;
  
}

.bank-info {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  margin: 20px 0;
  gap: 20px; 
}

.bank-info .bank-card {
  width: 58%; 
  background: #f5f5f5;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.bank-info .bank-card h3 {
  background: #007bff;
  color: white;
  padding: 10px 0;
  margin-bottom: 10px;
  border-radius: 5px;
}

.bank-info .comprobantePago{
  max-width: 38%;
  padding: 16px 32px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left; 
}

@media (max-width: 768px) {
  .bank-info .comprobantePago {
    max-width: 100%;
  }
}

.bank-info .comprobantePago .text-label{
  display: block;
  font-weight: 500;
  color: #414141;
  font-size: 16px;
}

.bank-info .comprobantePago .form-control-data{
  width: 100%;
  padding: 14px 24px;
  color: #505050b8;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  background-clip: padding-box;
  border: solid 1px #dee2e6;
  border-radius: 6px;
}

.bank-info .comprobantePago .cargaComprobante {
  margin-bottom: 20px;
}

.bank-info .comprobantePago .cargaComprobante .info-box {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left;
}

.bank-info .comprobantePago .info-box .info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bank-info .comprobantePago .info-box ul {
  font-size: 14px;
  list-style: none;
}

.bank-info .comprobantePago .info-box ul li {
  margin-bottom: 10px;
  line-height: normal;
}

.bank-info .theme-btn {
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bank-info .bank-card, .cargaComprobante, .info-box {
    width: 100%;
  }
}

.important-section {
  background: #f9f9c8;
  padding:18px 10px;
  font-size: 13px;
  border-left: 4px solid #ffd700;
  font-weight: 500;
}

.important-section h4 {
  font-size: 18px;
  padding-left: 16px;
  margin-bottom: 4px;
}

.important-section ul {
  margin: 0px;
  line-height: 26px;
}

.important-section li {
  margin: 0px;
  line-height: 26px;
  line-height: 18px;
  margin-bottom: 6px;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------INCRIPCIONES FELICITACIONES------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.congrat {
    text-align: center;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    line-height: normal;
}

.congrat .container-congrat {
  margin: auto;
  max-width: 680px;
}

.congrat .container-congrat .message h1 {
    font-size: 2.5rem;
    color: #a2ca35;
    letter-spacing: 6px;
}

.congrat .container-congrat .message p {
    font-size: 1rem;
    color: #333;
    margin: 24px 0;
    line-height: 24px;
}

.congrat .container-congrat .message .highlight {
  font-weight: 700;
  color: #1757a3;
}

.congrat .container-congrat .illustrations {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

.congrat .container-congrat .illustrations img {
    width: 60%;
    margin: 42px;
}

.congrat .container-congrat .theme-btn {
  margin-top: 80px;
}










/* ----------------------------------------- */
/* ----------------------------------------- */
/* -------      RACAPTCHA           -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.grecaptcha-badge {
  visibility: hidden !important;
}








/* ----------------------------------------- */
/* ----------------------------------------- */
/* ------- INDCUCCION HABILIDADES   -------- */      
/*------------------------------------------ */
/*------------------------------------------ */

.testHabilidad {
  border-radius: 8px;
}

.levels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.level-box {
  width: 24%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4e3cd;
  color: #555;
  border: 1px solid #d99b55;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.level-box:hover {
  background-color: #d99b55;
  color: #fff;
}

input[type="radio"] {
  display: none; /* Oculta los botones de radio */
}

input[type="radio"]:checked + .level-box {
  background-color: #d99b55;
  color: #fff;
  font-weight: bold;
  border: 2px solid #aa7740;
}

