/* Importar fuentes Montserrat y Source Sans Pro */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --secundaryColor: #00b3ba;
  --colorStrong2: #00a5ac;
  --colorStrong3: #4e388c;
  --colorWhite: rgb(255, 255, 255); /* Mantener blanco */
  --colorWhite2: rgb(215, 215, 215); /* Mantener blanco */
  --colorGray: #bf9bde;
  --variantFont: 'Pacifico', cursive;
  --borderBtns: 25px;
  --spaceSect: 30px;
}

/* Aplicar Montserrat a todos los títulos */
h1,
h2,
h3,
h4,
h5,
h6,
.titleSect h1,
.titleSect h2,
.textAbout h3,
.backTitleUs h2,
.titleServ h2,
.cardServ h3,
.textImgVisual h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800;
}

h2 {
  font-size: 55pt !important;
}

/* Aplicar Source Sans Pro a todos los párrafos */
p,
.textSect p,
.textAbout p,
.textImgVisual p,
.cardServ ul li {
  font-family: 'Source Sans Pro', sans-serif !important;
  font-size: 15pt !important;
  font-weight: 500 !important; /* Peso normal para párrafos */
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* StartPage */
.contBack {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.svgPath {
  width: 60%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
  fill: var(--colorStrong2);
}

.svgPath2 {
  width: 60%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
  fill: var(--colorStrong2);
  display: none;
}

.svgPath3 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  fill: var(--colorStrong2);
  display: none;
}

.svgPath,
.svgPath2,
.svgPath3 {
  pointer-events: none;
}

.guiaBack {
  width: 28%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  right: 18%;
  margin-top: 100px;
  animation: flotar2 3s ease-in-out infinite;
}

@keyframes flotar2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-35px);
  }
  100% {
    transform: translateY(0);
  }
}

.guiaBack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contTextSect {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 3%;
  position: relative;
  z-index: 4;
}

.textSect {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 4;
}

.titleSect {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.titleSect h1 {
  font-size: 60px;
  color: var(--colorWhite);
}

.titleSect h2 {
  font-size: 120px;
  color: var(--colorWhite);
}

.textSect p {
  font-size: 40px;
  margin-bottom: 35px;
  font-weight: 350;
  color: var(--colorWhite);
}

.textSect a {
  text-decoration: none;
  z-index: 4;
}

.textSect a button {
  width: 500px;
  height: 60px;
  cursor: pointer;
  border-radius: var(--borderBtns);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  background-color: var(--colorWhite);
  border: none;
  color: var(--colorStrong2);
  transition: 0.6s;
}

.textSect a button:hover {
  margin-left: 20px;
}

.textSect a button i {
  font-size: 30px;
  color: var(--colorStrong2);
  margin-left: 10px;
  transition: 0.6s;
}

.textSect a button:hover i {
  transform: rotate(360deg);
}

.contImgSect {
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.filterImgSect {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.filterImgSect .filterStart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #053e4749;
  z-index: 1;
}

.filterImgSect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -1;
}

.filterImgSect {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.filterImgSect.visible {
  opacity: 1;
}

@media (max-width: 1728px) {
  .titleSect h1 {
    font-size: 100px;
  }
  .titleSect h2 {
    font-size: 100px;
  }
  .textSect p {
    font-size: 35px;
  }
  .textSect a button {
    width: 420px;
    font-size: 28px;
  }
  .textSect a button i {
    font-size: 28px;
  }
  .guiaBack {
    width: 30%;
    right: 25%;
  }
}

@media (max-width: 1504px) {
  .titleSect h1 {
    font-size: 90px;
  }
  .titleSect h2 {
    font-size: 90px;
  }
  .textSect p {
    font-size: 33px;
  }
  .textSect a button {
    width: 380px;
    font-size: 27px;
  }
  .textSect a button i {
    font-size: 27px;
  }
  .guiaBack {
    right: 23%;
  }
}

@media (max-width: 1400px) {
  .guiaBack {
    width: 35%;
    right: 20%;
  }
  .titleSect h1 {
    font-size: 85px;
  }
  .titleSect h2 {
    font-size: 85px;
  }
  .textSect p {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .textSect a button {
    width: 350px;
  }
}

@media (max-width: 1300px) {
  .titleSect h1 {
    font-size: 82px;
  }
  .titleSect h2 {
    font-size: 82px;
  }
  .textSect p {
    font-size: 30px;
  }
}

@media (max-width: 1150px) {
  .svgPath {
    display: none;
  }
  .svgPath2 {
    width: 80%;
    display: flex;
  }
  .guiaBack {
    width: 40%;
    right: 15%;
    bottom: 0%;
  }
  .titleSect h1 {
    font-size: 80px;
  }
  .titleSect h2 {
    font-size: 80px;
  }
  .textSect p {
    font-size: 27px;
  }
  .contTextSect {
    width: 60%;
    justify-content: start;
    left: 0;
    margin-left: 2%;
    margin-top: 30%;
    position: absolute;
  }
  .contImgSect {
    width: 100%;
    position: absolute;
  }
}

@media (max-width: 1000px) {
  .guiaBack {
    width: 43%;
    right: 20%;
  }
}

@media (max-width: 950px) {
  .contTextSect {
    margin-top: 35%;
  }
  .guiaBack {
    width: 50%;
    right: 20%;
  }
}

@media (max-width: 850px) {
  .svgPath2 {
    display: none;
  }
  .svgPath3 {
    width: 100%;
    height: 65%;
    display: flex;
    top: 0;
  }
  .contImgSect {
    height: 100%;
  }
  .guiaBack {
    width: 40%;
    left: 0%;
    bottom: 15%;
  }
  .contTextSect {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-left: 0;
    margin-top: 40%;
  }
  .textSect {
    align-items: center;
    justify-content: center;
  }
  .titleSect h1 {
    font-size: 70px;
  }
  .titleSect h2 {
    font-size: 70px;
  }
  .textSect p {
    width: 85%;
    font-size: 25px;
  }
  .textSect a button {
    width: 300px;
    height: 50px;
    font-size: 24px;
  }
  .textSect a button i {
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  .svgPath3 {
    height: 60%;
  }
  .contTextSect {
    margin-top: 50%;
  }
  .guiaBack {
    bottom: 30%;
  }
  .titleSect h1 {
    font-size: 70px;
  }
  .titleSect h2 {
    font-size: 70px;
  }
  .textSect p {
    width: 80%;
    font-size: 24px;
  }
  .textSect a button {
    height: 47px;
    font-size: 22px;
  }
  .textSect a button i {
    font-size: 22px;
  }
}

@media (max-width: 700px) {
  .contTextSect {
    margin-top: 45%;
  }
  .svgPath3 {
    height: 55%;
  }
  .guiaBack {
    width: 45%;
    bottom: 30%;
  }
  .titleSect h1 {
    font-size: 65px;
  }
  .titleSect h2 {
    font-size: 65px;
  }
  .textSect p {
    width: 80%;
    font-size: 21.5px;
  }
  .textSect a button {
    height: 45px;
    font-size: 21px;
  }
  .textSect a button i {
    font-size: 21px;
  }
}

@media (max-width: 650px) {
  .svgPath3 {
    height: 65%;
  }
  .guiaBack {
    width: 45%;
    bottom: 10%;
  }
  .titleSect h1 {
    font-size: 60px;
  }
  .titleSect h2 {
    font-size: 60px;
  }
  .textSect p {
    width: 90%;
    font-size: 21px;
  }
  .textSect a button {
    width: 270px;
    height: 40px;
    font-size: 20px;
  }
  .textSect a button i {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .contTextSect {
    margin-top: 40%;
  }
  .svgPath3 {
    height: 65%;
  }
  .titleSect h1 {
    font-size: 60px;
  }
  .titleSect h2 {
    font-size: 60px;
  }
  .textSect p {
    width: 85%;
    font-size: 20px;
  }
  .textSect a button {
    width: 270px;
    height: 40px;
    font-size: 20px;
    margin-top: -5px;
  }
  .textSect a button i {
    font-size: 20px;
  }
}

@media (max-width: 550px) {
  .contTextSect {
    margin-top: 47%;
  }
  .titleSect h1 {
    font-size: 55px;
  }
  .titleSect h2 {
    font-size: 55px;
  }
  .textSect p {
    width: 85%;
    font-size: 18px;
  }
  .textSect a button {
    width: 230px;
    height: 40px;
    font-size: 17px;
    margin-top: -10px;
  }
  .textSect a button i {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .contTextSect {
    margin-top: 65%;
  }
  .svgPath3 {
    height: 55%;
  }
  .guiaBack {
    width: 45%;
    bottom: 30%;
  }
  .titleSect h1 {
    font-size: 53px;
  }
  .titleSect h2 {
    font-size: 53px;
  }
  .textSect p {
    width: 85%;
    font-size: 17px;
  }
  .textSect a button {
    width: 220px;
    height: 38px;
    font-size: 16.5px;
  }
  .textSect a button i {
    font-size: 16.5px;
  }
}

@media (max-width: 470px) {
  .svgPath3 {
    height: 60%;
  }
  .guiaBack {
    width: 50%;
    bottom: 25%;
  }
}

@media (max-width: 414px) {
  .contTextSect {
    margin-top: 70%;
  }
  .svgPath3 {
    height: 60%;
  }
  .guiaBack {
    width: 55%;
    bottom: 25%;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* About Us */
.contAboutUs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.square {
  width: 50%;
  height: 250px;
  position: absolute;
  top: -100px;
  left: -300px;
  transform: rotate(-30deg);
  background-color: var(--colorStrong2);
}

.square2 {
  width: 50%;
  height: 250px;
  position: absolute;
  bottom: -100px;
  right: -300px;
  transform: rotate(-30deg);
  background-color: var(--colorStrong2);
}

.backTitleUs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  top: 5%;
  padding: 0 20px;
  z-index: -1;
}

.backTitleUs h2 {
  font-size: 230px;
  color: #bf9bdef5;
  opacity: 0.2;
}

.elemetsAbout {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  gap: 30px;
  padding: 0 2%;
}

.multiAbout {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 45px 20px 50px;
}

.imgAbout {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: -100px;
  border-radius: var(--borderBtns);
}

.imgAbout::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--colorStrong3);
  z-index: -1;
  border-radius: var(--borderBtns);
}

.imgAbout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--borderBtns);
}

.videoAbout {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 50px;
  margin-top: -50px;
  border-radius: var(--borderBtns);
}

.videoAbout::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--colorStrong3);
  z-index: -1;
  border-radius: var(--borderBtns);
}

.videoAbout video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--borderBtns);
}

.textAbout {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.textAbout h3 {
  font-size: 100px;
  color: var(--colorStrong3);
  margin-bottom: 5px;
}

.textAbout p {
  width: 95%;
  font-size: 25px;
  font-weight: 400;
  color: var(--colorGray);
  margin-bottom: 15px;
}

.textAbout a {
  text-decoration: none;
}

.textAbout a button {
  width: 400px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 25px;
  font-weight: 550;
  color: var(--colorWhite);
  border-radius: var(--borderBtns);
  background-color: var(--colorStrong3);
  transition: 0.6s;
}

.textAbout a button:hover {
  transform: translate(15px);
}

.textAbout a button i {
  font-size: 25px;
  margin-left: 5px;
  color: var(--colorWhite);
  transition: 0.6s;
}

.textAbout a button:hover i {
  transform: rotate(360deg);
}

@media (max-width: 1728px) {
  .backTitleUs h2 {
    font-size: 190px;
  }
  .textAbout h3 {
    font-size: 90px;
  }
  .textAbout p {
    font-size: 23px;
    margin-bottom: 15px;
  }
  .textAbout a button {
    width: 360px;
    height: 55px;
    font-size: 24px;
  }
  .textAbout a button i {
    font-size: 24px;
  }
}

@media (max-width: 1559px) {
  .backTitleUs h2 {
    font-size: 170px;
  }
  .textAbout h3 {
    font-size: 80px;
  }
  .textAbout p {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .textAbout a button {
    width: 360px;
    height: 55px;
    font-size: 24px;
  }
  .textAbout a button i {
    font-size: 24px;
  }
}

@media (max-width: 1400px) {
  .elemetsAbout {
    margin: 2% 0;
  }
  .backTitleUs h2 {
    font-size: 160px;
  }
  .textAbout h3 {
    font-size: 75px;
  }
  .textAbout p {
    font-size: 21px;
  }
  .textAbout a button {
    width: 350px;
    font-size: 23px;
  }
  .textAbout a button i {
    font-size: 23px;
  }
}

@media (max-width: 1350px) {
  .elemetsAbout {
    gap: 25px;
  }
  .backTitleUs h2 {
    font-size: 150px;
  }
  .textAbout h3 {
    font-size: 70px;
  }
  .textAbout p {
    font-size: 20px;
  }
  .textAbout a button {
    width: 330px;
    font-size: 22px;
  }
  .textAbout a button i {
    font-size: 22px;
  }
}

@media (max-width: 1280px) {
  .backTitleUs h2 {
    font-size: 130px;
  }
  .textAbout h3 {
    font-size: 65px;
  }
  .textAbout p {
    font-size: 19px;
  }
  .textAbout a button {
    width: 300px;
    height: 47px;
    font-size: 21px;
  }
  .textAbout a button i {
    font-size: 21px;
  }
}

@media (max-width: 1160px) {
  .elemetsAbout {
    gap: 20px;
  }
  .backTitleUs h2 {
    font-size: 120px;
  }
  .textAbout h3 {
    font-size: 63px;
  }
  .textAbout p {
    font-size: 18px;
  }
  .textAbout a button {
    width: 300px;
    height: 47px;
    font-size: 21px;
  }
  .textAbout a button i {
    font-size: 21px;
  }
}

@media (max-width: 1100px) {
  .square {
    width: 60%;
    top: -150px;
  }
  .square2 {
    width: 60%;
    bottom: -150px;
  }
  .backTitleUs {
    top: 5%;
  }
  .backTitleUs h2 {
    font-size: 130px;
  }
  .textAbout h3 {
    font-size: 60px;
  }
  .textAbout p {
    font-size: 17.5px;
  }
  .textAbout a button {
    width: 300px;
    height: 45px;
    font-size: 21px;
  }
  .textAbout a button i {
    font-size: 21px;
  }
}

@media (max-width: 1000px) {
  .contAboutUs {
    padding: 40px 0;
  }
  .square {
    width: 60%;
    top: -150px;
  }
  .square2 {
    width: 60%;
    bottom: -150px;
  }
  .backTitleUs {
    top: 5%;
  }
  .backTitleUs h2 {
    font-size: 120px;
  }
  .textAbout h3 {
    font-size: 53px;
  }
  .textAbout p {
    font-size: 16.5px;
  }
  .textAbout a button {
    height: 45px;
    font-size: 20px;
  }
  .textAbout a button i {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .backTitleUs h2 {
    font-size: 120px;
  }
  .textAbout h3 {
    font-size: 50px;
  }
  .textAbout p {
    font-size: 16px;
  }
  .textAbout a button {
    height: 43px;
    font-size: 19px;
  }
  .textAbout a button i {
    font-size: 19px;
  }
}

@media (max-width: 940px) {
  .contAboutUs {
    padding: 0;
  }
  .square {
    width: 80%;
    top: -150px;
  }
  .square2 {
    width: 80%;
    bottom: -150px;
  }
  .elemetsAbout {
    margin: 8% 0;
  }
  .multiAbout {
    width: 75%;
  }
  .textAbout {
    width: 85%;
    order: -1;
    align-items: center;
    text-align: center;
  }
  .backTitleUs {
    top: 0%;
  }
  .backTitleUs h2 {
    font-size: 140px;
  }
  .textAbout h3 {
    font-size: 70px;
  }
  .textAbout p {
    width: 100%;
    font-size: 17px;
  }
  .textAbout a button {
    height: 45px;
    font-size: 20px;
  }
  .textAbout a button i {
    font-size: 20px;
  }
  .elemetsAbout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .square {
    width: 90%;
  }
  .square2 {
    width: 90%;
  }
  .multiAbout {
    width: 80%;
  }
  .textAbout {
    width: 90%;
  }
  .backTitleUs h2 {
    font-size: 110px;
  }
  .textAbout h3 {
    font-size: 60px;
  }
  .textAbout p {
    font-size: 16px;
  }
  .textAbout a button {
    height: 45px;
    font-size: 20px;
  }
  .textAbout a button i {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  .multiAbout {
    width: 85%;
  }
  .elemetsAbout {
    margin: 10% 0;
  }
}

@media (max-width: 600px) {
  .square {
    width: 100%;
  }
  .square2 {
    width: 100%;
  }
  .elemetsAbout {
    margin: 13% 0;
  }
  .multiAbout {
    width: 90%;
  }
  .textAbout {
    width: 90%;
  }
  .backTitleUs h2 {
    font-size: 90px;
  }
  .textAbout h3 {
    font-size: 55px;
  }
  .textAbout p {
    font-size: 15.5px;
  }
  .textAbout a button {
    height: 45px;
    font-size: 20px;
  }
  .textAbout a button i {
    font-size: 20px;
  }
}

@media (max-width: 550px) {
  .square {
    width: 100%;
  }
  .square2 {
    width: 100%;
  }
  .multiAbout {
    width: 100%;
  }
  .textAbout {
    width: 100%;
  }
  .backTitleUs h2 {
    font-size: 90px;
  }
  .textAbout h3 {
    font-size: 50px;
  }
  .textAbout p {
    width: 90%;
    font-size: 14px;
  }
  .textAbout a button {
    height: 43px;
    font-size: 19px;
  }
  .textAbout a button i {
    font-size: 19px;
  }
}

@media (max-width: 500px) {
  .square {
    width: 110%;
  }
  .square2 {
    width: 110%;
  }
  .elemetsAbout {
    margin: 15% 0;
  }
  .multiAbout {
    width: 95%;
  }
  .textAbout {
    width: 100%;
  }
  .backTitleUs h2 {
    font-size: 80px;
  }
  .textAbout h3 {
    font-size: 50px;
  }
  .textAbout p {
    width: 95%;
    font-size: 14px;
  }
  .textAbout a button {
    height: 43px;
    font-size: 19px;
  }
  .textAbout a button i {
    font-size: 19px;
  }
}

@media (max-width: 450px) {
  .square {
    width: 115%;
  }
  .square2 {
    width: 115%;
  }
  .elemetsAbout {
    margin: 17% 0;
  }
  .multiAbout {
    width: 100%;
  }
  .textAbout {
    width: 100%;
  }
  .backTitleUs h2 {
    font-size: 80px;
  }
  .textAbout h3 {
    font-size: 45px;
  }
  .textAbout p {
    width: 95%;
    font-size: 13.5px;
  }
  .textAbout a button {
    height: 43px;
    font-size: 19px;
  }
  .textAbout a button i {
    font-size: 19px;
  }
}

@media (max-width: 414px) {
  .square {
    width: 120%;
  }
  .square2 {
    width: 120%;
  }
  .elemetsAbout {
    margin: 18% 0;
  }
  .backTitleUs h2 {
    font-size: 70px;
  }
  .textAbout h3 {
    font-size: 43px;
  }
  .textAbout p {
    width: 95%;
    font-size: 13px;
  }
  .textAbout a button {
    height: 43px;
    font-size: 18px;
  }
  .textAbout a button i {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .square {
    width: 135%;
  }
  .square2 {
    width: 135%;
  }
  .elemetsAbout {
    margin: 20% 0;
  }
  .backTitleUs h2 {
    font-size: 60px;
  }
  .textAbout h3 {
    font-size: 40px;
  }
  .textAbout p {
    width: 95%;
    font-size: 13px;
  }
  .textAbout a button {
    width: 280px;
    height: 40px;
    font-size: 18px;
  }
  .textAbout a button i {
    font-size: 18px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Visual Rest */
.contVisual {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.imgVisual {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/uaq_visual_rest.jpg);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  background-attachment: fixed;
}

.imgVisual::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(5, 62, 71, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.textImgVisual {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.textImgVisual h2 {
  font-size: 110px;
  color: var(--colorWhite);
  margin-bottom: 10px;
}

.textImgVisual p {
  width: 70%;
  font-size: 30px;
  font-weight: 300;
  color: var(--colorWhite);
  margin-bottom: 40px;
}

.textImgVisual a {
  text-decoration: none;
}

.textImgVisual a button {
  width: 550px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  border-radius: var(--borderBtns);
  font-size: 27px;
  font-weight: 550;
  color: var(--colorWhite);
  background-color: transparent;
  border: 3px solid var(--colorWhite);
  transition: 0.6s;
}

.textImgVisual a button:hover {
  transform: translate(15px);
}

.textImgVisual a button i {
  font-size: 27px;
  color: var(--colorWhite);
  margin-left: 5px;
  transition: 0.6s;
}

.textImgVisual a button:hover i {
  transform: rotate(360deg);
}

@media (max-width: 1504px) {
  .textImgVisual h2 {
    font-size: 90px;
  }
  .textImgVisual p {
    width: 75%;
    font-size: 26px;
    margin-bottom: 35px;
  }
  .textImgVisual a button {
    width: 550px;
    height: 65px;
    font-size: 27px;
  }
  .textImgVisual a button i {
    font-size: 27px;
  }
}

@media (max-width: 1280px) {
  .textImgVisual h2 {
    font-size: 80px;
  }
  .textImgVisual p {
    width: 80%;
    font-size: 25px;
    margin-bottom: 20px;
  }
  .textImgVisual a button {
    width: 500px;
    height: 65px;
    font-size: 27px;
  }
  .textImgVisual a button i {
    font-size: 27px;
  }
}

@media (max-width: 1150px) {
  .textImgVisual h2 {
    font-size: 75px;
  }
  .textImgVisual p {
    width: 80%;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .textImgVisual a button {
    width: 480px;
    height: 60px;
    font-size: 26px;
  }
  .textImgVisual a button i {
    font-size: 26px;
  }
}

@media (max-width: 950px) {
  .contVisual {
    height: 85vh;
  }
  .textImgVisual h2 {
    font-size: 70px;
  }
  .textImgVisual p {
    width: 80%;
    font-size: 21px;
  }
  .textImgVisual a button {
    width: 450px;
    height: 60px;
    font-size: 25px;
  }
  .textImgVisual a button i {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .contVisual {
    height: 80vh;
  }
  .textImgVisual h2 {
    font-size: 65px;
  }
  .textImgVisual p {
    width: 80%;
    font-size: 19px;
  }
  .textImgVisual a button {
    width: 400px;
    height: 55px;
    font-size: 24px;
  }
  .textImgVisual a button i {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .textImgVisual h2 {
    font-size: 58px;
  }
  .textImgVisual p {
    width: 85%;
    font-size: 18px;
  }
  .textImgVisual a button {
    width: 370px;
    font-size: 23px;
  }
  .textImgVisual a button i {
    font-size: 23px;
  }
}

@media (max-width: 650px) {
  .textImgVisual h2 {
    font-size: 53px;
  }
  .textImgVisual p {
    font-size: 17px;
  }
  .textImgVisual a button {
    width: 350px;
    font-size: 22px;
  }
  .textImgVisual a button i {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .textImgVisual h2 {
    font-size: 48px;
  }
  .textImgVisual p {
    font-size: 16px;
  }
  .textImgVisual a button {
    width: 350px;
    height: 50px;
    font-size: 20px;
  }
  .textImgVisual a button i {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .textImgVisual h2 {
    font-size: 43px;
  }
  .textImgVisual p {
    font-size: 15.5px;
    font-weight: 350;
  }
  .textImgVisual a button {
    width: 350px;
    height: 45px;
    font-size: 20px;
  }
  .textImgVisual a button i {
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  .textImgVisual h2 {
    font-size: 38px;
  }
  .textImgVisual p {
    font-size: 14.5px;
  }
  .textImgVisual a button {
    width: 300px;
    font-size: 18px;
    border: 2.5px solid var(--colorWhite);
  }
  .textImgVisual a button i {
    font-size: 18px;
  }
}

@media (max-width: 414px) {
  .textImgVisual h2 {
    font-size: 35px;
  }
  .textImgVisual p {
    font-size: 14.5px;
  }
  .textImgVisual a button {
    width: 300px;
    height: 43px;
    font-size: 17px;
    border: 2.5px solid var(--colorWhite);
  }
  .textImgVisual a button i {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .textImgVisual h2 {
    font-size: 32px;
  }
  .textImgVisual p {
    font-size: 13px;
  }
  .textImgVisual a button {
    width: 250px;
    height: 40px;
    font-size: 16px;
  }
  .textImgVisual a button i {
    font-size: 16px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Services */
.contServices {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.rectServ {
  width: 80%;
  height: 250px;
  position: absolute;
  top: -100px;
  left: -500px;
  transform: rotate(-35deg);
  background-color: var(--colorStrong2);
}

.barServ {
  width: 95%;
  height: 130px;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  background-color: var(--colorStrong2);
}

.rectServ2 {
  width: 80%;
  height: 250px;
  position: absolute;
  bottom: -100px;
  right: -500px;
  transform: rotate(-35deg);
  background-color: var(--colorStrong2);
}

.barServ2 {
  width: 95%;
  height: 130px;
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--colorStrong2);
}

.titleServ {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 180px;
}

.titleServ h2 {
  font-size: 160px;
  color: var(--colorStrong3);
}

.services {
  width: 95%;
  height: auto;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 820px;
  gap: 180px 25px;
  margin-top: 180px;
  margin-bottom: 180px;
  /* Centrar tarjetas */
}
.cardServ {
  width: 80%;
  height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 20px;
  transition: 0.6s;
  justify-self: center; /* Centra cada tarjeta en su celda */
}

.cardServ:hover {
  transform: scale(1.03);
}

.cardServ::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--colorStrong3);
  clip-path: url('#customClip');
  z-index: 0;
}

.buhoIcon {
  width: 70%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -120px;
  z-index: 1;
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.buhoIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.textBuho {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 45px;
  z-index: 2;
}

.textBuho h3 {
  font-size: 60px;
  color: var(--colorWhite);
  margin-bottom: 15px;
  text-align: center;
}

.cardServ h3 {
  font-size: 56px;
  color: var(--colorWhite);
  margin-bottom: 15px;
}

.cardServ ul {
  list-style: none;
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cardServ ul li {
  font-size: 21px;
  color: var(--colorWhite);
}

.cardServ ul li i {
  font-size: 18px;
  color: var(--colorWhite);
  margin-right: 13px;
}

.cardServ a {
  text-decoration: none;
  margin-top: 25px;
}

.cardServ a button {
  width: 350px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 800;
  color: var(--colorStrong3);
  border: none;
  cursor: pointer;
  background-color: var(--colorWhite);
  border-radius: var(--borderBtns);
  transition: 0.6s;
}

.cardServ a button:hover {
  transform: translate(10px);
}

.cardServ a button i {
  font-size: 23px;
  color: var(--colorStrong3);
  margin-left: 5px;
  transition: 0.6s;
}

.cardServ a button:hover i {
  transform: rotate(360deg);
}

@media (max-width: 1559px) {
  .titleServ h2 {
    font-size: 145px;
  }
}

@media (max-width: 1504px) {
  .titleServ h2 {
    font-size: 145px;
  }
  .barServ {
    height: 110px;
  }
  .barServ2 {
    height: 110px;
  }
  .titleServ {
    margin-top: 160px;
  }
  .services {
    width: 95%;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 820px;
    gap: 180px 25px;
    margin-top: 170px;
    margin-bottom: 170px;
  }
}

@media (max-width: 1280px) {
  .barServ {
    height: 100px;
  }
  .barServ2 {
    height: 100px;
  }
  .titleServ h2 {
    font-size: 130px;
  }
  .titleServ {
    margin-top: 140px;
  }
  .services {
    width: 97%;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 820px;
    gap: 180px 25px;
    margin-top: 150px;
    margin-bottom: 160px;
  }
}

@media (max-width: 1200px) {
  .rectServ {
    width: 85%;
    height: 265px;
  }
  .rectServ2 {
    width: 85%;
    height: 265px;
  }
  .barServ {
    height: 90px;
  }
  .barServ2 {
    height: 90px;
  }
  .titleServ h2 {
    font-size: 120px;
  }
  .titleServ {
    margin-top: 120px;
  }
  .services {
    width: 95%;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 820px;
    gap: 150px 25px;
    margin-top: 125px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 50px;
    margin-bottom: 15px;
  }
  .cardServ ul {
    gap: 16px;
  }
  .cardServ ul li {
    font-size: 20px;
  }
  .cardServ ul li i {
    font-size: 17px;
    margin-right: 13px;
  }
  .buhoIcon {
    width: 65%;
    height: 40%;
  }
}

@media (max-width: 1080px) {
  .rectServ {
    width: 95%;
    height: 270px;
  }
  .rectServ2 {
    width: 95%;
    height: 270px;
  }
  .barServ {
    height: 90px;
  }
  .barServ2 {
    height: 90px;
  }
  .titleServ h2 {
    font-size: 100px;
  }
  .titleServ {
    margin-top: 125px;
  }
  .services {
    width: 98%;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 780px;
    gap: 150px 15px;
    margin-top: 90px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .cardServ ul {
    gap: 15px;
  }
  .cardServ ul li {
    font-size: 19px;
  }
  .cardServ ul li i {
    font-size: 15px;
    margin-right: 10px;
  }
  .buhoIcon {
    width: 68%;
    height: 40%;
    margin-top: -90px;
  }
  .textBuho {
    margin-top: 20px;
  }
  .cardServ a button {
    width: 330px;
    height: 45px;
    font-size: 21px;
  }
  .cardServ a button i {
    font-size: 21px;
  }
}

@media (max-width: 930px) {
  .rectServ {
    width: 100%;
  }
  .rectServ2 {
    width: 100%;
  }
  .barServ {
    height: 85px;
  }
  .barServ2 {
    height: 85px;
  }
  .titleServ h2 {
    font-size: 93px;
  }
  .titleServ {
    margin-top: 120px;
  }
  .services {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 780px;
    gap: 150px 0px;
    margin-top: 125px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .cardServ ul {
    gap: 15px;
  }
  .cardServ ul li {
    font-size: 19px;
  }
  .cardServ ul li i {
    font-size: 15px;
    margin-right: 10px;
  }
  .buhoIcon {
    width: 60%;
    height: 40%;
    margin-top: -90px;
  }
  .textBuho {
    margin-top: 20px;
  }
  .cardServ a button {
    width: 330px;
    height: 45px;
    font-size: 21px;
  }
  .cardServ a button i {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .rectServ {
    height: 290px;
  }
  .rectServ2 {
    height: 290px;
  }
  .barServ {
    height: 75px;
  }
  .barServ2 {
    height: 75px;
  }
  .titleServ h2 {
    font-size: 85px;
  }
  .titleServ {
    margin-top: 110px;
  }
  .services {
    width: 80%;
    grid-auto-rows: 780px;
    gap: 150px 0px;
    margin-top: 125px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .cardServ ul {
    gap: 15px;
  }
  .cardServ ul li {
    font-size: 19px;
  }
  .cardServ ul li i {
    font-size: 15px;
    margin-right: 10px;
  }
  .buhoIcon {
    width: 60%;
    height: 40%;
    margin-top: -90px;
  }
  .textBuho {
    margin-top: 20px;
  }
  .cardServ a button {
    width: 330px;
    height: 45px;
    font-size: 21px;
  }
  .cardServ a button i {
    font-size: 21px;
  }
}

@media (max-width: 700px) {
  .rectServ {
    height: 300px;
  }
  .rectServ2 {
    height: 300px;
  }
  .barServ {
    height: 73px;
  }
  .barServ2 {
    height: 73px;
  }
  .titleServ h2 {
    font-size: 78px;
  }
  .titleServ {
    margin-top: 100px;
  }
  .services {
    width: 85%;
    grid-auto-rows: 750px;
    gap: 150px 0px;
    margin-top: 120px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 43px;
    margin-bottom: 15px;
  }
  .cardServ ul {
    gap: 15px;
  }
  .cardServ ul li {
    font-size: 18px;
  }
  .cardServ ul li i {
    font-size: 16px;
  }
  .cardServ a button {
    width: 300px;
    height: 43px;
    font-size: 20px;
  }
  .cardServ a button i {
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .rectServ {
    height: 315px;
  }
  .rectServ2 {
    height: 315px;
  }
  .barServ {
    height: 68px;
  }
  .barServ2 {
    height: 68px;
  }
  .titleServ h2 {
    font-size: 75px;
  }
  .services {
    margin-top: 100px;
  }
}

@media (max-width: 620px) {
  .rectServ {
    height: 320px;
  }
  .rectServ2 {
    height: 320px;
  }
  .barServ {
    height: 65px;
  }
  .barServ2 {
    height: 65px;
  }
  .titleServ h2 {
    width: 98%;
    font-size: 75px;
  }
  .services {
    width: 95%;
    grid-auto-rows: 750px;
    gap: 150px 0px;
    margin-top: 100px;
    margin-bottom: 160px;
  }
  .cardServ h3 {
    font-size: 45px;
  }
  .cardServ ul li {
    font-size: 19px;
  }
  .cardServ ul li i {
    font-size: 17px;
  }
  .cardServ a button {
    width: 320px;
  }
}

@media (max-width: 550px) {
  .rectServ {
    height: 340px;
  }
  .rectServ2 {
    height: 340px;
  }
  .titleServ h2 {
    width: 98%;
    font-size: 80px;
  }
  .titleServ {
    margin-top: 80px;
  }
  .services {
    grid-auto-rows: 750px;
    gap: 150px 0px;
    margin-top: 100px;
    margin-bottom: 150px;
  }
}

@media (max-width: 500px) {
  .rectServ {
    width: 130%;
    height: 310px;
  }
  .rectServ2 {
    width: 130%;
    height: 310px;
  }
  .titleServ h2 {
    width: 98%;
    font-size: 75px;
  }
  .titleServ {
    margin-top: 85px;
  }
  .services {
    width: 98%;
    grid-auto-rows: 750px;
    gap: 120px 0px;
    margin-top: 100px;
    margin-bottom: 140px;
  }
  .buhoIcon {
    width: 65%;
  }
  .cardServ h3 {
    font-size: 43px;
  }
  .cardServ ul li {
    font-size: 18px;
  }
  .cardServ ul li i {
    font-size: 14px;
  }
  .cardServ a button {
    width: 310px;
    font-size: 19px;
  }
  .cardServ a button i {
    font-size: 19px;
  }
}

@media (max-width: 450px) {
  .rectServ {
    width: 140%;
    height: 320px;
  }
  .rectServ2 {
    width: 140%;
    height: 320px;
  }
  .titleServ h2 {
    font-size: 73px;
  }
  .titleServ {
    margin-top: 90px;
  }
  .services {
    grid-auto-rows: 700px;
    gap: 120px 0px;
    margin-top: 100px;
    margin-bottom: 120px;
  }
  .buhoIcon {
    width: 75%;
  }
  .cardServ h3 {
    font-size: 40px;
  }
  .cardServ ul li {
    font-size: 17px;
  }
  .cardServ ul li i {
    font-size: 13px;
  }
  .cardServ a button {
    width: 300px;
    font-size: 18px;
  }
  .cardServ a button i {
    font-size: 18px;
  }
}

@media (max-width: 414px) {
  .rectServ {
    width: 143%;
  }
  .rectServ2 {
    width: 143%;
  }
  .barServ {
    height: 62px;
  }
  .barServ2 {
    height: 62px;
  }
  .titleServ h2 {
    font-size: 69px;
  }
  .titleServ {
    margin-top: 75px;
  }
  .services {
    grid-auto-rows: 670px;
    gap: 120px 0px;
    margin-top: 110px;
    margin-bottom: 120px;
  }
  .cardServ h3 {
    font-size: 38px;
  }
  .cardServ ul li {
    font-size: 16.5px;
  }
  .cardServ ul li i {
    font-size: 12.5px;
  }
  .cardServ a button {
    width: 280px;
    font-size: 17.5px;
  }
  .cardServ a button i {
    font-size: 17.5px;
  }
}

@media (max-width: 412px) {
  .rectServ {
    width: 145%;
  }
  .rectServ2 {
    width: 145%;
  }
  .barServ {
    height: 60px;
  }
  .barServ2 {
    height: 60px;
  }
}

@media (max-width: 393px) {
  .rectServ {
    width: 148%;
  }
  .rectServ2 {
    width: 148%;
  }
  .barServ {
    height: 55px;
  }
  .barServ2 {
    height: 55px;
  }
  .titleServ h2 {
    font-size: 65px;
  }
  .titleServ {
    margin-top: 80px;
  }
  .services {
    grid-auto-rows: 660px;
  }
  .buhoIcon {
    width: 80%;
  }
  .cardServ h3 {
    font-size: 35px;
  }
  .cardServ ul li {
    font-size: 16px;
  }
  .cardServ ul li i {
    font-size: 12px;
  }
  .cardServ a button {
    width: 280px;
    height: 40px;
    font-size: 17px;
  }
  .cardServ a button i {
    font-size: 17px;
  }
}

@media (max-width: 370px) {
  .titleServ h2 {
    font-size: 60px;
  }
  .services {
    width: 100%;
    grid-auto-rows: 630px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Learn with us */
.contLearn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-right: 50px;
  padding-left: 50px;
  margin-top: -2px;
  background-color: var(--colorStrong2);
}

.learnText {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titleLearn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.titleLearn h2 {
  font-size: 120px;
  color: var(--colorWhite);
}

.learnContent {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 45px 0;
}

.containerLearn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 25px;
}

.imgLearn {
  width: 50%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--borderBtns);
  position: relative;
}

.imgLearn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--borderBtns);
}

.descLearn {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  gap: 10px 0;
}

.descLearn img {
  width: 90px;
  height: 90px;
  top: -20px;
  right: 50px;
  object-fit: contain;
  position: absolute;
  opacity: 0.2;
  transform: rotate(20deg);
  z-index: 1;
}

.containerLearn:nth-child(2) .descLearn img {
  transform: rotate(-20deg);
}

.descLearn h3 {
  font-size: 60px;
  color: var(--colorWhite);
  z-index: 2;
}

.descLearn p {
  font-size: 25px;
  font-weight: 350;
  color: var(--colorWhite);
  z-index: 2;
}

@media (max-width: 1559px) {
  .titleLearn h2 {
    font-size: 100px;
  }
  .descLearn h3 {
    font-size: 52px;
  }
  .descLearn p {
    font-size: 21px;
  }
  .descLearn img {
    width: 85px;
    height: 85px;
    top: -40%;
    right: 0;
  }
}

@media (max-width: 1280px) {
  .titleLearn h2 {
    font-size: 100px;
  }
  .descLearn h3 {
    font-size: 49px;
  }
  .descLearn p {
    font-size: 19px;
  }
  .descLearn img {
    width: 80px;
    height: 80px;
    right: 2%;
  }
}

@media (max-width: 1150px) {
  .titleLearn h2 {
    font-size: 85px;
  }
  .descLearn h3 {
    font-size: 46px;
  }
  .descLearn p {
    font-size: 18px;
  }
  .descLearn img {
    width: 80px;
    height: 80px;
    right: 2%;
    top: -35%;
  }
  .imgLearn {
    height: 370px;
  }
}

@media (max-width: 1100px) {
  .titleLearn h2 {
    font-size: 80px;
  }
  .descLearn h3 {
    font-size: 44px;
  }
  .descLearn p {
    font-size: 17px;
  }
  .descLearn img {
    width: 70px;
    height: 70px;
    right: 2%;
    top: -55%;
  }
  .imgLearn {
    height: 350px;
  }
}

@media (max-width: 1000px) {
  .learnContent {
    gap: 30px 0;
  }
  .titleLearn h2 {
    font-size: 77px;
  }
  .descLearn h3 {
    font-size: 42px;
  }
  .descLearn p {
    font-size: 16.5px;
  }
  .descLearn img {
    width: 55px;
    height: 55px;
    right: 0%;
    top: -10%;
  }
  .imgLearn {
    height: 300px;
  }
}

@media (max-width: 850px) {
  .learnContent {
    gap: 30px 0;
  }
  .titleLearn h2 {
    font-size: 70px;
  }
  .descLearn h3 {
    font-size: 36px;
  }
  .descLearn p {
    font-size: 15.5px;
  }
  .descLearn img {
    width: 55px;
    height: 55px;
    right: 2%;
    top: -15%;
  }
  .imgLearn {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .learnContent {
    gap: 40px 0;
  }
  .containerLearn {
    flex-direction: column;
    gap: 20px 0;
  }
  .imgLearn:first-child {
    order: 1;
  }
  .imgLearn {
    width: 90%;
    height: 300px;
  }
  .descLearn {
    width: 90%;
  }
  .titleLearn h2 {
    font-size: 68px;
  }
  .descLearn h3 {
    font-size: 36px;
  }
  .descLearn p {
    font-size: 16px;
  }
  .descLearn img {
    width: 55px;
    height: 55px;
    right: 2%;
    top: -0%;
  }
}

@media (max-width: 730px) {
  .learnContent {
    gap: 40px 0;
  }
  .containerLearn {
    flex-direction: column;
    gap: 20px 0;
  }
  .descLearn {
    gap: 2px 0;
  }
  .titleLearn h2 {
    font-size: 60px;
  }
  .descLearn h3 {
    font-size: 33px;
  }
  .descLearn p {
    font-size: 15.5px;
  }
  .descLearn img {
    width: 50px;
    height: 50px;
    right: 1%;
    top: -0%;
  }
  .imgLearn {
    height: 250px;
  }
}

@media (max-width: 650px) {
  .learnContent {
    gap: 40px 0;
    margin-top: 35px;
  }
  .imgLearn {
    width: 95%;
    height: 250px;
  }
  .descLearn {
    width: 95%;
  }
  .titleLearn h2 {
    font-size: 59px;
  }
  .descLearn h3 {
    font-size: 30px;
  }
  .descLearn p {
    font-size: 15px;
  }
  .descLearn img {
    width: 45px;
    height: 45px;
    right: 1%;
    top: -10%;
  }
}

@media (max-width: 620px) {
  .titleLearn h2 {
    font-size: 55px;
  }
}

@media (max-width: 550px) {
  .titleLearn h2 {
    font-size: 65px;
  }
}

@media (max-width: 450px) {
  .learnContent {
    margin-top: 25px;
  }
  .titleLearn h2 {
    font-size: 57px;
  }
  .descLearn h3 {
    font-size: 27px;
  }
  .descLearn p {
    font-size: 14.5px;
  }
  .descLearn img {
    width: 45px;
    height: 45px;
    right: 1%;
    top: -10%;
  }
  .imgLearn {
    height: 250px;
  }
}

@media (max-width: 414px) {
  .titleLearn h2 {
    font-size: 57px;
  }
  .descLearn p {
    font-size: 14px;
  }
  .imgLearn {
    height: 230px;
  }
}

@media (max-width: 393px) {
  .learnContent {
    margin-top: 20px;
  }
  .titleLearn h2 {
    font-size: 52px;
  }
  .descLearn h3 {
    font-size: 25px;
  }
  .descLearn p {
    font-size: 13.5px;
  }
  .imgLearn {
    height: 210px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Guias */
.contGuias {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.titleGuia {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 150px;
  z-index: 2;
}

.titleGuia h2 {
  font-size: 130px;
  color: var(--colorStrong3);
}

.rectGuias {
  width: 120%;
  height: 280px;
  position: absolute;
  top: -50px;
  left: -950px;
  transform: rotate(-15deg);
  background-color: var(--colorStrong2);
  z-index: 1;
}

.rectGuias2 {
  width: 120%;
  height: 280px;
  position: absolute;
  bottom: -50px;
  right: -950px;
  transform: rotate(-15deg);
  background-color: var(--colorStrong2);
  z-index: 1;
}

.structGuias {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.guias {
  width: 95%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  z-index: 2;
}

.textGuias {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.textGuias h3 {
  font-size: 10px;
  color: var(--colorStrong3);
}

.textGuias ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 15px 0;
  gap: 15px 0;
}

.textGuias ul li {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--colorGray);
}

.textGuias ul li i {
  font-size: 11px;
  color: var(--colorStrong3);
  margin-right: 10px;
}

.textGuias a {
  text-decoration: none;
}

.textGuias a button {
  width: 400px;
  height: 65px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--borderBtns);
  font-size: 25px;
  font-weight: 700;
  background-color: var(--colorStrong3);
  color: var(--colorWhite);
  transition: 0.6s;
}

.textGuias a button:hover {
  margin-right: 10px;
}

.textGuias a button i {
  font-size: 25px;
  color: var(--colorWhite);
  margin-left: 10px;
}

.contGuiasImg {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.guiasImg {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guiasImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.priceGuias {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15%;
  right: 0px;
  background-color: var(--colorStrong3);
}

.priceGuias p {
  font-size: 45px !important;
  font-weight: 800;
  color: var(--colorWhite);
}

@media (max-width: 1504px) {
  .rectGuias {
    width: 130%;
  }
  .rectGuias2 {
    width: 130%;
  }
  .titleGuia h2 {
    font-size: 120px;
  }
  .textGuias h3 {
    font-size: 80px;
  }
  .textGuias ul li {
    font-size: 28px;
  }
  .textGuias ul li i {
    font-size: 10px;
  }
  .textGuias a button {
    width: 380px;
    height: 60px;
    font-size: 24px;
    font-weight: 650;
  }
  .textGuias a button i {
    font-size: 24px;
  }
  .priceGuias {
    width: 155px;
    height: 155px;
  }
  .priceGuias p {
    font-size: 42px;
  }
}

@media (max-width: 1400px) {
  .titleGuia h2 {
    font-size: 110px;
  }
  .textGuias h3 {
    font-size: 75px;
  }
  .textGuias ul li {
    font-size: 26px;
  }
  .textGuias ul li i {
    font-size: 9px;
  }
  .textGuias a button {
    width: 360px;

    height: 60px;
    font-size: 23px;
  }
  .textGuias a button i {
    font-size: 23px;
  }
  .priceGuias {
    width: 153px;
    height: 153px;
  }
  .priceGuias p {
    font-size: 40px;
  }
}

@media (max-width: 1300px) {
  .rectGuias {
    width: 135%;
  }
  .rectGuias2 {
    width: 135%;
  }
}

@media (max-width: 1260px) {
  .rectGuias {
    width: 135%;
    height: 280px;
    top: -70px;
    left: -950px;
  }
  .rectGuias2 {
    width: 135%;
    height: 280px;
    bottom: -70px;
    right: -950px;
  }
  .titleGuia {
    margin-top: 140px;
  }
}

@media (max-width: 1150px) {
  .rectGuias {
    width: 135%;
    height: 300px;
    top: -100px;
    left: -950px;
  }
  .rectGuias2 {
    width: 135%;
    height: 300px;
    bottom: -100px;
    right: -950px;
  }
  .titleGuia {
    margin-top: 110px;
  }
  .titleGuia h2 {
    font-size: 100px;
  }
  .textGuias h3 {
    font-size: 70px;
  }
  .textGuias ul li {
    font-size: 25px;
  }
  .textGuias ul li i {
    font-size: 8px;
  }
  .textGuias a button {
    width: 330px;
    height: 55px;
    font-size: 22px;
  }
  .textGuias a button i {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .rectGuias {
    width: 140%;
    height: 300px;
    top: -100px;
    left: -950px;
  }
  .rectGuias2 {
    width: 140%;
    height: 300px;
    bottom: -100px;
    right: -950px;
  }
  .titleGuia {
    margin-top: 100px;
  }
  .titleGuia h2 {
    font-size: 90px;
  }
  .textGuias h3 {
    font-size: 65px;
  }
  .textGuias ul li {
    font-size: 23px;
  }
  .textGuias ul li i {
    font-size: 8px;
  }
  .textGuias a button {
    width: 300px;
    height: 50px;
    font-size: 21px;
  }
  .textGuias a button i {
    font-size: 21px;
  }
}

@media (max-width: 1050px) {
  .rectGuias {
    width: 140%;
    height: 350px;
    top: -100px;
    left: -950px;
    transform: rotate(-20deg);
  }
  .rectGuias2 {
    width: 140%;
    height: 350px;
    bottom: -100px;
    right: -950px;
    transform: rotate(-20deg);
  }
  .titleGuia {
    margin-top: 100px;
  }
}

@media (max-width: 1000px) {
  .titleGuia h2 {
    font-size: 85px;
  }
  .textGuias h3 {
    font-size: 58px;
  }
  .textGuias ul li {
    font-size: 22px;
  }
  .textGuias ul li i {
    font-size: 7px;
  }
}

@media (max-width: 850px) {
  .rectGuias {
    width: 190%;
    top: -150px;
  }
  .rectGuias2 {
    width: 190%;
    bottom: -150px;
  }
  .textGuias {
    width: 40%;
  }
  .contGuiasImg {
    width: 60%;
  }
  .titleGuia h2 {
    font-size: 75px;
  }
  .textGuias h3 {
    font-size: 50px;
  }
  .textGuias a button {
    width: 280px;
    height: 45px;
    font-size: 19px;
  }
  .textGuias a button i {
    font-size: 19px;
  }
  .priceGuias {
    width: 110px;
    height: 110px;
  }
  .priceGuias p {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .rectGuias {
    width: 210%;
    top: -180px;
    transform: rotate(-15deg);
  }
  .rectGuias2 {
    width: 210%;
    bottom: -180px;
    transform: rotate(-15deg);
  }
  .guias {
    flex-direction: column;
    gap: 30px 0;
    margin-top: 30px;
  }
  .textGuias {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .contGuiasImg {
    width: 80%;
  }
  .textGuias ul {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .rectGuias {
    width: 230%;
    top: -180px;
  }
  .rectGuias2 {
    width: 230%;
    bottom: -180px;
  }
  .textGuias {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .titleGuia h2 {
    font-size: 67px;
  }
  .textGuias h3 {
    font-size: 45px;
  }
  .textGuias ul li {
    font-size: 19px;
  }
  .textGuias a button {
    width: 270px;
    height: 45px;
    font-size: 18px;
  }
  .textGuias a button i {
    font-size: 18px;
  }
  .priceGuias {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 550px) {
  .rectGuias {
    width: 250%;
    height: 360px;
    top: -200px;
  }
  .rectGuias2 {
    width: 250%;
    height: 360px;
    bottom: -200px;
  }
  .titleGuia {
    margin-top: 85px;
  }
  .titleGuia h2 {
    font-size: 60px;
  }
  .textGuias h3 {
    font-size: 45px;
  }
  .textGuias ul li {
    font-size: 18px;
  }
  .priceGuias {
    width: 100px;
    height: 100px;
  }
  .priceGuias p {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .rectGuias {
    width: 270%;
    height: 360px;
  }
  .rectGuias2 {
    width: 270%;
    height: 360px;
  }
  .titleGuia {
    margin-top: 80px;
  }
  .titleGuia h2 {
    font-size: 55px;
  }
  .textGuias h3 {
    font-size: 43px;
  }
  .textGuias ul li {
    font-size: 17px;
  }
  .priceGuias {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 450px) {
  .rectGuias {
    width: 290%;
    height: 360px;
  }
  .rectGuias2 {
    width: 290%;
    height: 360px;
  }
  .titleGuia {
    margin-top: 80px;
  }
  .titleGuia h2 {
    font-size: 53px;
  }
  .textGuias h3 {
    font-size: 40px;
  }
  .textGuias ul li {
    font-size: 16px;
  }
  .priceGuias {
    width: 90px;
    height: 90px;
  }
  .priceGuias p {
    font-size: 26px;
  }
  .textGuias a button {
    width: 250px;
    height: 40px;
    font-size: 16px;
  }
  .textGuias a button i {
    font-size: 16px;
  }
  .contGuiasImg {
    width: 95%;
  }
}

@media (max-width: 414px) {
  .rectGuias {
    width: 310%;
    height: 360px;
  }
  .rectGuias2 {
    width: 310%;
    height: 360px;
  }
  .titleGuia {
    margin-top: 85px;
  }
  .titleGuia h2 {
    font-size: 53px;
  }
  .textGuias h3 {
    font-size: 40px;
  }
  .textGuias ul li {
    font-size: 16px;
  }
  .priceGuias {
    width: 90px;
    height: 90px;
  }
  .priceGuias p {
    font-size: 26px;
  }
  .textGuias a button {
    width: 240px;
    height: 40px;
    font-size: 16px;
  }
  .textGuias a button i {
    font-size: 16px;
  }
}

@media (max-width: 393px) {
  .rectGuias {
    width: 340%;
    height: 360px;
  }
  .rectGuias2 {
    width: 340%;
    height: 360px;
  }
  .titleGuia {
    margin-top: 78px;
  }
  .titleGuia h2 {
    font-size: 50px;
  }
  .textGuias h3 {
    font-size: 37px;
  }
  .textGuias ul li {
    font-size: 15.5px;
  }
  .priceGuias {
    width: 80px;
    height: 80px;
  }
  .priceGuias p {
    font-size: 24px;
  }
  .textGuias a button {
    width: 240px;
    height: 40px;
    font-size: 16px;
  }
  .textGuias a button i {
    font-size: 16px;
  }
}

@media (max-width: 370px) {
  .titleGuia h2 {
    font-size: 60px;
  }
  .services {
    width: 100%;
    grid-auto-rows: 630px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Testimonios */
.contTestimonios {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: var(--spaceSect);
  position: relative;
  overflow: hidden;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.titleTesti {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.titleTesti h2 {
  font-size: 120px;
  color: var(--colorStrong3);
}

.testimonios {
  width: 98%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 300px;
  margin-top: 15px;
  gap: 15px;
}

.targetsTestimonios {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  background-color: var(--colorStrong3);
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.imgTesti {
  width: 35%;
  height: 102%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: -2px;
}

.imgTesti img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.textTesti {
  width: 65%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px 0;
}

.textTesti h3 {
  font-size: 40px;
  color: var(--colorWhite);
}

.starts {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.starts i {
  font-size: 25px;
  color: var(--colorWhite);
}

.textTesti p {
  width: 97%;
  font-size: 18px;
  color: var(--colorWhite);
}

@media (max-width: 1600px) {
  .testimonios {
    grid-auto-rows: 280px;
  }
  .titleTesti h2 {
    font-size: 110px;
  }
  .textTesti {
    gap: 10px 0;
  }
  .textTesti h3 {
    font-size: 35px;
  }
  .starts i {
    font-size: 23px;
  }
  .textTesti p {
    width: 97%;
    font-size: 17px;
  }
}

@media (max-width: 1504px) {
  .testimonios {
    grid-auto-rows: 250px;
  }
  .titleTesti h2 {
    font-size: 100px;
  }
  .textTesti {
    gap: 10px 0;
  }
  .textTesti h3 {
    font-size: 33px;
  }
  .starts i {
    font-size: 21px;
  }
  .textTesti p {
    font-size: 16.5px;
  }
}

@media (max-width: 1400px) {
  .titleTesti h2 {
    font-size: 90px;
  }
  .textTesti {
    gap: 8px 0;
  }
  .textTesti h3 {
    font-size: 30px;
  }
  .starts i {
    font-size: 20px;
  }
  .textTesti p {
    font-size: 16px;
  }
}

@media (max-width: 1300px) {
  .titleTesti h2 {
    font-size: 85px;
  }
  .testimonios {
    width: 99%;
    grid-auto-rows: 220px;
  }
  .textTesti h3 {
    font-size: 29px;
  }
  .starts i {
    font-size: 19px;
  }
  .textTesti p {
    font-size: 15px;
  }
}

@media (max-width: 1265px) {
  .titleTesti h2 {
    font-size: 110px;
  }
  .testimonios {
    width: 65%;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 250px;
  }
  .textTesti h3 {
    font-size: 29px;
  }
  .starts i {
    font-size: 19px;
  }
  .textTesti p {
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .testimonios {
    width: 70%;
  }
}

@media (max-width: 950px) {
  .testimonios {
    width: 75%;
  }
  .titleTesti h2 {
    font-size: 100px;
  }
}

@media (max-width: 850px) {
  .titleTesti h2 {
    font-size: 95px;
  }
  .testimonios {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .testimonios {
    width: 90%;
    grid-auto-rows: 240px;
  }
}

@media (max-width: 735px) {
  .titleTesti h2 {
    font-size: 90px;
  }
  .testimonios {
    width: 95%;
    grid-auto-rows: 240px;
  }
}

@media (max-width: 680px) {
  .titleTesti h2 {
    font-size: 85px;
  }
  .testimonios {
    width: 98%;
    grid-auto-rows: 230px;
  }
  .textTesti h3 {
    font-size: 28px;
  }
  .starts i {
    font-size: 17px;
  }
  .textTesti p {
    font-size: 14.5px;
  }
}

@media (max-width: 600px) {
  .titleTesti h2 {
    font-size: 80px;
  }
  .testimonios {
    width: 99%;
    grid-auto-rows: 215px;
  }
  .textTesti h3 {
    font-size: 27px;
  }
  .textTesti p {
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .contTestimonios {
    overflow: visible;
  }
  .targetsTestimonios {
    flex-direction: column;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    position: relative;
    margin-top: 90px;
  }
  .titleTesti h2 {
    font-size: 75px;
  }
  .testimonios {
    width: 99%;
    grid-auto-rows: 250px;
    gap: 110px 0;
  }
  .starts {
    justify-content: center;
  }
  .imgTesti {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -30%;
  }
  .textTesti {
    width: 95%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .textTesti h3 {
    font-size: 27px;
    margin-top: 50px;
  }
  .textTesti p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .targetsTestimonios {
    flex-direction: column;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    position: relative;
    margin-top: 90px;
  }
  .titleTesti h2 {
    font-size: 70px;
  }
  .testimonios {
    width: 99%;
    grid-auto-rows: 250px;
  }
  .imgTesti {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -30%;
  }
  .textTesti {
    width: 95%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .textTesti h3 {
    font-size: 26px;
    margin-top: 50px;
  }
  .starts i {
    font-size: 16.5px;
  }
  .textTesti p {
    font-size: 13.5px;
  }
}

@media (max-width: 450px) {
  .titleTesti h2 {
    font-size: 65px;
  }
  .testimonios {
    grid-auto-rows: 260px;
  }
  .textTesti h3 {
    margin-top: 60px;
  }
}

@media (max-width: 393px) {
  .titleTesti h2 {
    font-size: 60px;
  }
}

@media (max-width: 370px) {
  .titleTesti h2 {
    font-size: 57px;
  }
  .textTesti h3 {
    font-size: 25px;
  }
  .starts i {
    font-size: 16px;
  }
  .textTesti p {
    font-size: 13px;
  }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Ubicacion */
.contUbicacion {
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorStrong2);
  margin-top: var(--spaceSect);
}

.ubicacion {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}

.ubiCodi {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ubiCodi iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textUbi {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.iconUbi {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

.iconUbi h2 {
  font-size: 90px;
  color: var(--colorWhite);
}

.iconUbi i {
  font-size: 60px;
  color: var(--colorWhite);
}

.textUbi p {
  font-size: 22px;
  color: var(--colorWhite);
  margin-top: 5px;
}

.imgUbi {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgUbi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1559px) {
  .iconUbi h2 {
    font-size: 80px;
  }
  .iconUbi i {
    font-size: 50px;
  }
  .textUbi p {
    font-size: 21px;
  }
}

@media (max-width: 1400px) {
  .iconUbi h2 {
    font-size: 70px;
  }
  .iconUbi i {
    font-size: 40px;
  }
  .textUbi p {
    font-size: 20px;
  }
}

@media (max-width: 1150px) {
  .iconUbi h2 {
    font-size: 67px;
  }
  .iconUbi i {
    font-size: 40px;
  }
  .textUbi p {
    font-size: 18px;
  }
}

@media (max-width: 950px) {
  .contUbicacion {
    height: 80vh;
  }
  .ubicacion {
    flex-direction: column;
  }
  .ubiCodi {
    width: 100%;
    height: 25vh;
  }
  .textUbi {
    width: 100%;
    height: 30vh;
  }
  .imgUbi {
    width: 100%;
    height: 25vh;
  }
  .iconUbi h2 {
    font-size: 80px;
  }
  .iconUbi i {
    font-size: 50px;
  }
  .textUbi p {
    width: 80%;
    font-size: 21px;
  }
}

@media (max-width: 850px) {
  .iconUbi h2 {
    font-size: 75px;
  }
  .iconUbi i {
    font-size: 48px;
  }
  .textUbi p {
    width: 80%;
    font-size: 20px;
  }
}

@media (max-width: 800px) {
  .contUbicacion {
    height: 70vh;
  }
  .ubicacion {
    flex-direction: column;
  }
  .ubiCodi {
    width: 100%;
    height: 20vh;
  }
  .textUbi {
    width: 100%;
    height: 30vh;
  }
  .imgUbi {
    width: 100%;
    height: 20vh;
  }
  .iconUbi h2 {
    font-size: 75px;
  }
  .iconUbi i {
    font-size: 48px;
  }
  .textUbi p {
    width: 80%;
    font-size: 20px;
  }
}

@media (max-width: 740px) {
  .contUbicacion {
    height: 70vh;
  }
  .ubicacion {
    flex-direction: column;
  }
  .ubiCodi {
    width: 100%;
    height: 20vh;
  }
  .textUbi {
    width: 100%;
    height: 30vh;
  }
  .imgUbi {
    width: 100%;
    height: 20vh;
  }
  .iconUbi h2 {
    font-size: 65px;
  }
  .iconUbi i {
    font-size: 43px;
  }
  .textUbi p {
    width: 85%;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .iconUbi h2 {
    font-size: 60px;
  }
  .iconUbi i {
    font-size: 40px;
  }
  .textUbi p {
    width: 85%;
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .iconUbi h2 {
    font-size: 55px;
  }
  .iconUbi i {
    font-size: 37px;
  }
  .textUbi p {
    width: 90%;
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .contUbicacion {
    margin-top: 120px;
  }
}

@media (max-width: 450px) {
  .iconUbi h2 {
    font-size: 50px;
  }
  .iconUbi i {
    font-size: 33px;
  }
  .textUbi p {
    width: 95%;
    font-size: 15.5px;
  }
}

@media (max-width: 414px) {
  .iconUbi h2 {
    font-size: 48px;
  }
  .iconUbi i {
    font-size: 32px;
  }
  .textUbi p {
    width: 95%;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .textUbi p {
    width: 98%;
  }
}

@media (max-width: 360px) {
  .iconUbi h2 {
    font-size: 46px;
  }
  .iconUbi i {
    font-size: 31px;
  }
  .textUbi p {
    width: 98%;
    font-size: 14px;
  }
}
