@font-face {
  font-family: m_r;
  src: url(../../recursos/fonts/Montserrat-Regular.otf);
}
@font-face {
  font-family: m_b;
  src: url(../../recursos/ffonts/Montserrat-Bold.otf);
}
@font-face {
  font-family: m_e;
  src: url(../../recursos/ffonts/Montserrat-ExtraBold.otf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: m_r;
  line-height: 1.6;
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  display: none;
}

.sitioweb {
  display: flex;
  flex-direction: column;
  max-width: 1480px;
  margin: auto;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

/* MENU MÓVIL */
.menu-movil {
  display: none;
}

.menu-checkbox {
  display: none;
}

/* FUNCIONALIDAD DEL MENÚ MÓVIL */
.menu-checkbox:checked ~ .menu-bg {
  transform: scale(80);
}

.menu-checkbox:checked ~ .menu-nav {
  opacity: 1;
  width: 100%;
  pointer-events: visible;
}

.menu-btn {
  background-color: #fff;
  height: 70px;
  width: 70px;
  position: fixed;
  top: 60px;
  right: 60px;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.menu-btn:hover .menu-icon::before {
  top: -10px;
}

.menu-btn:hover .menu-icon::after {
  top: 10px;
}

.menu-checkbox:checked + .menu-btn .menu-icon {
  background-color: transparent;
}

.menu-checkbox:checked + .menu-btn .menu-icon::before {
  top: 0;
  transform: rotate(135deg);
}

.menu-checkbox:checked + .menu-btn .menu-icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.menu-icon {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  position: relative;
  margin-top: 35px;
}

.menu-icon::before {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  transition: 0.2s;
  top: -8px;
}

.menu-icon::after {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.2s;
}

.menu-bg {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  top: 65px;
  right: 65px;
  background-color: #22a7dd;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.menu-item {
  margin: 10px;
  display: flex;
}

.menu-link:link,
.menu-link:visited {
  font-size: 30px;
  font-weight: 300;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    110deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  );
  background-size: 220%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  width: 300px;
  gap: 14px;
  margin: auto;
}

.menu-link:hover,
.menu-link:active {
  background-position: 100%;
  color: #22a7dd;
  transform: translateX(10px);
}

.menu-item:first-child .menu-link:hover img {
  content: url("../../recursos/ficons/inicio.svg");
}

.menu-item:nth-child(2) .menu-link:hover img {
  content: url("../../recursos/ficons/nosotros.svg");
}

.menu-item:nth-child(3) .menu-link:hover img {
  content: url("../../recursos/ficons/servicios.svg");
}

.menu-item:last-child .menu-link:hover img {
  content: url("../../recursos/ficons/contacto.svg");
}

/* SECCIÓN ENCABEZADO */
.encabezado {
  display: flex;
  width: 100%;
  padding: 40px 0 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.m-espacio-1 {
  width: 10%;
  height: 80px;
  background-color: #30afdf;
}

.m-espacio-2 {
  width: 10%;
  height: 80px;
  background-color: #3283b0;
}

.m-espacio-3 {
  width: 10%;
  height: 80px;
  background-color: #2578aa;
}

.m-espacio-4 {
  width: 10%;
  height: 80px;
  background-color: #196e9e;
}

.logo a {
  display: block;
}

.logo img {
  display: block;
  width: 500px;
}

.menu {
  display: flex;
  width: 100%;
  justify-content: center;
}

.menu nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-transform: uppercase;
  font-family: m_r;
}

.menu nav a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  gap: 8px;
  padding: 0 20px;
}

.menu nav a:first-child {
  background-color: #1a6d9f;
  height: 100%;
}

.menu nav a:first-child img {
  content: url("../../recursos/icons/inicio_blanco.svg");
}

.menu nav a:first-child h3 {
  color: #fff;
}

.menu nav a:hover {
  background-color: #1a6d9f;
}

.menu nav a:hover h3 {
  color: #fff;
}

.menu nav a:nth-child(2):hover img {
  content: url("../../recursos/icons/nosotros_blanco.svg");
}

.menu nav a:nth-child(3):hover img {
  content: url("../../recursos/icons/servicios_blanco.svg");
}

.menu nav a:last-child:hover img {
  content: url("../../recursos/icons/contacto_blanco.svg");
}

.menu img {
  transition: all 0.2s;
  width: 80px;
}

.menu h3 {
  margin: -5px 0 0 0;
  font-size: 20px;
  color: #1a6d9f;
  transition: all 0.2s;
}

/* SECCIÓN PORTADA */
.portada {
  position: relative;
  display: flex;
  margin-bottom: 100px;
  width: 100%;
  height: calc(100vh - 395px);
}

.bg {
  width: 100%;
}

.bg img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.titulo_bg {
  position: absolute;
  top: 24%;
  left: 76%;
  transform: translate(-50%, -50%);
  width: 39%;
}

.titulo_bg h3 {
  width: 100%;
  font-size: 40px;
  font-family: m_e;
  color: #fff;
  text-align: right;
  text-shadow: -4px 2px 6px rgba(0, 0, 0, 0.69);
  text-transform: uppercase;
}

.boton_bg {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* SECCIÓN NOSOTROS */
.nosotros {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  color: #1a6d9f;
  margin-bottom: 100px;
}

.info_nosotros {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  align-items: center;
  gap: 20px;
  text-align: center;
  justify-content: space-between;
}
.titulo_nosotros {
  display: flex;
  align-items: center;
  justify-content: center;
}
.titulo_nosotros img {
  width: 60px;
}
.titulo_nosotros h2 {
  margin: 0;
  font-family: m_e;
  font-size: 40px;
  width: 80%;
}
.info_nosotros p {
  padding-left: 20px;
  text-align: justify;
  font-size: 20px;
  font-family: m_r;
  line-height: 30px;
}

.info_nosotros a {
  display: flex;
  background: #1a6d9f;
  border-radius: 10px 0 10px 0;
  justify-content: center;
  align-items: center;
  align-self: end;
  text-decoration: none;
  color: #fff;
  font-family: m_r;
  font-size: 20px;
  padding: 8px 32px;
}

.bg_nosotros {
  width: 100%;
}

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

/* SECCIÓN SERVICIOS */
.servicios {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 100px;
}

.ser-text {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.ser-t-img {
  width: 100px;
}

.ser-t-ti {
  font-size: 40px;
  text-transform: uppercase;
  font-family: m_b;
  color: #1a6d9f;
}

.ser-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  line-height: 1.4;
}

.ser-item {
  overflow: hidden;
  position: relative;
}

.ser-i-btn-izq {
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 5%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background-color: #1a6d9f;
  border-radius: 100%;
  padding: 0.4rem;
}

.ser-i-btn-der {
  position: absolute;
  top: 50%;
  z-index: 10;
  right: 5%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background-color: #1a6d9f;
  border-radius: 100%;
  padding: 0.4rem;
}

.ser-i-btn-izq--2 {
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 5%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background-color: #1a6d9f;
  border-radius: 100%;
  padding: 0.4rem;
}

.ser-i-btn-der--2 {
  position: absolute;
  top: 50%;
  z-index: 10;
  right: 5%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background-color: #1a6d9f;
  border-radius: 100%;
  padding: 0.4rem;
}

.ser-i-btn-icon {
  width: 2rem;
  height: 2rem;
}

.slider {
  width: 100%;
  display: flex;
}

.slider-img {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ser-i-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primero {
  display: block;
}

.slider--2 {
  width: 100%;
  display: flex;
}

.slider-img--2 {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primero--2 {
  display: block;
}

.ser-i-ti {
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-image: linear-gradient(
    rgba(26, 108, 159, 0.6),
    rgba(26, 108, 159, 0.6)
  );
  padding: 12px 0;
  font-family: m_e;
  width: 70%;
  text-align: center;
  font-size: 30px;
  border-radius: 20px 0 20px 0;
}

.ser-item:nth-child(4) .ser-i-ti {
  top: 70%;
  padding: 12px 10px;
}

.ser-item:nth-child(5) .ser-i-ti {
  top: 70%;
}

.ser-item:nth-child(6) .ser-i-ti {
  top: 70%;
}

.ser-item:nth-child(7) .ser-i-ti {
  top: 70%;
}

/* SECCIÓN PIE DE PÁGINA */
.pie-pagina {
  display: flex;
  width: 100%;
}

.pp-con-bg {
  flex: 0 0 60%;
  background-image: url("../../recursos/bg/bg11.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 40px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-con-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: auto;
}

.pp-c-t-ti {
  width: 42%;
  font-family: m_b;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 4px solid #fff;
}

.pp-c-t-des {
  font-size: 18px;
  width: 66%;
}

.pp-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 6px 45px;
  border-radius: 12px 0 12px 0;
  background-color: #22a7dd;
  margin-left: 30px;
}

.pp-red-soc-list {
  display: flex;
  gap: 10px;
}

.pp-rs-link {
  text-decoration: none;
  color: white;
}

.pp-rs-item {
  display: block;
  width: 35px;
}

.pp-info {
  background-color: #22a7dd;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px;
  margin: auto 0;
}

.pp-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-ti {
  font-size: 26px;
  color: black;
  font-family: m_b;
}

.pp-ubi {
  display: flex;
  gap: 10px;
}

.pp-ubi-img {
  display: block;
  width: 30px;
}

.pp-ubi-text {
  display: flex;
  flex-direction: column;
}

.pp-ubi-ti {
  font-family: m_b;
}

.pp-ubi-dir {
  color: black;
  font-size: 16px;
}

.pp-ubi-ofi-dir {
  color: black;
}

.pp-list-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-tel {
  display: flex;
  gap: 10px;
}

.pp-tel p:first-child {
  text-transform: uppercase;
  font-family: m_b;
}

.pp-tel p:last-child {
  color: black;
}

/* SLIDERS FALTANTES */
.container_f1, .container_f2, .container_f3, .container_f4, .container_f5 {
  width: 100%;
  height: 100%;
  position: relative;
}

.container_f1 .swiper-wrapper img, .container_f2 .swiper-wrapper img, .container_f3 .swiper-wrapper img, .container_f4 .swiper-wrapper img, .container_f5 .swiper-wrapper img {
  width: 100% !important;
  height: auto;
  object-fit: cover;
}

.ser-i-ti_f1, .ser-i-ti_f2, .ser-i-ti_f3, .ser-i-ti_f4, .ser-i-ti_f5 {
  position: absolute;
  z-index: 10;
}

.boton_antes_f1, .boton_antes_f2, .boton_antes_f3, .boton_antes_f4, .boton_antes_f5 {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 40px;
  z-index: 10;
  background-color: #196e9e;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #196e9e;
  &:hover {
    cursor: pointer;
  }
}

.boton_next_f1, .boton_next_f2, .boton_next_f3, .boton_next_f4, .boton_next_f5 {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 40px;
  z-index: 10;
  background-color: #196e9e;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #196e9e;
  &:hover {
    cursor: pointer;
  }
}

/* MEDIA QUERIES */
@media (min-width: 1281px) and (max-width: 1600px) {
  .logo img {
    display: block;
    width: 300px;
}
  .sitioweb {
    width: 100%;
    padding: 0;
  }
  .container {
    padding: 0 30px;
  }
  .portada {
    position: relative;
    height: 80vh;
  }
  .portada .bg {
    padding-top: 5%;
    position: relative;
  }
  .bg img {
    position: absolute;
    top: 0;
    object-fit: cover;
  }
  .titulo_bg {
    top: auto;
    right: 5%;
    left: auto;
    transform: none;
    width: 39%;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  /* SECCIÓN ENCABEZADO */
  .logo img {
    width: 400px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
    height: calc(100vh - 350px);
  }

  .bg {
    padding-right: 0;
    align-items: center;
  }

  .boton_bg a {
    font-size: 20px;
  }

  .bg img {
    width: 100%;
  }

  .titulo_bg {
    top: 28%;
    left: 70%;
    width: 50%;
  }

  /* SECCIÓN NOSOTROS */
  .nosotros {
    width: 100%;
  }

  .info_nosotros {
    width: auto;
    flex: 0 0 50%;
    padding: 0;
  }

  .titulo_nosotros {
    align-items: center;
  }

  .titulo_nosotros h2 {
    font-size: 26px;
  }

  .info_nosotros p {
    padding-left: 20px;
    font-size: 16px;
  }

  .bg_nosotros {
    width: auto;
  }

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

  .info_nosotros a {
    font-size: 20px;
  }

  /* SECCIÓN SERVICIOS */
  .ser-list {
    gap: 40px;
  }

  .ser-i-ti {
    top: 75%;
    padding: 10px 0;
    width: 80%;
    font-size: 26px;
  }

  .ser-item:nth-child(4) .ser-i-ti {
    top: 62%;
    padding: 12px 10px;
  }

  .ser-item:nth-child(5) .ser-i-ti {
    top: 62%;
  }

  .ser-item:nth-child(6) .ser-i-ti {
    top: 62%;
  }

  .ser-item:nth-child(7) .ser-i-ti {
    top: 62%;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* SECCIÓN ENCABEZADO */
  .encabezado {
    gap: 30px;
  }

  .logo img {
    width: 300px;
  }

  .m-espacio-1 {
    display: none;
  }

  .m-espacio-2 {
    display: none;
  }

  .m-espacio-3 {
    display: none;
  }

  .m-espacio-4 {
    display: none;
  }

  .menu nav {
    width: 100%;
  }

  .menu nav a {
    flex-direction: column;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
    height: auto;
  }

  .bg {
    padding-right: 0;
    align-items: center;
    height: 370px;
    width: 100%;
  }

  .titulo_bg {
    width: 66%;
    top: 28%;
    left: 61%;
  }

  .titulo_bg h3 {
    width: 100%;
    font-size: 30px;
    margin: auto;
  }

  .boton_bg {
    top: 74%;
  }

  .boton_bg a {
    font-size: 20px;
  }

  .bg img {
    width: 100%;
  }

  /* SECCIÓN NOSOTROS */
  .nosotros {
    width: 100%;
    margin: auto;
    gap: 40px;
    flex-direction: column;
  }

  .info_nosotros {
    width: auto;
    flex: 0 0 50%;
    padding: 0;
    gap: 20px;
  }

  .titulo_nosotros {
    align-items: center;
  }

  .titulo_nosotros h2 {
    font-size: 34px;
  }

  .info_nosotros p {
    width: 80%;
    font-size: 16px;
  }

  .bg_nosotros {
    width: auto;
  }

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

  .info_nosotros a {
    font-size: 20px;
    align-self: center;
  }

  /* SECCIÓN SERVICIOS */
  .ser-list {
    padding: 0;
    gap: 20px;
  }

  .ser-i-ti {
    top: 70%;
    padding: 10px;
    width: 90%;
    font-size: 22px;
  }

  .ser-i-icon {
    width: 40px;
    left: 81%;
  }

  .ser-item:nth-child(4) .ser-i-ti {
    top: 56%;
    padding: 12px 10px;
  }

  .ser-item:nth-child(5) .ser-i-ti {
    top: 56%;
  }

  .ser-item:nth-child(6) .ser-i-ti {
    top: 56%;
  }

  .ser-item:nth-child(7) .ser-i-ti {
    top: 56%;
  }

  .ser-t-ti {
    font-size: 34px;
  }

  .ser-t-img {
    width: 80px;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 40px;
    justify-content: space-around;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* SECCIÓN MENÚ MÓVIL */
  .menu-movil {
    display: block;
  }

  .menu-btn {
    top: 3%;
    right: 7%;
  }

  .menu-bg {
    top: 4%;
    right: 8%;
  }

  /* SECCIÓN ENCABEZADO */
  .encabezado {
    padding: 20px 0;
    align-items: start;
  }

  .menu {
    display: none;
  }

  .logo img {
    width: 200px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
    height: auto;
  }

  .bg {
    padding-right: 0;
    align-items: center;
  }

  .titulo_bg {
    width: 100%;
    top: 81%;
    left: 50%;
  }

  .titulo_bg h3 {
    font-size: 20px;
    text-align: center;
  }

  .boton_bg {
    top: 74%;
  }

  .boton_bg a {
    font-size: 16px;
  }

  .bg img {
    width: 100%;
  }

  /* SECCIÓN NOSOTROS */
  .nosotros {
    width: 100%;
    gap: 40px;
    flex-direction: column;
  }

  .info_nosotros {
    width: auto;
    flex: 0 0 50%;
    padding: 0;
    gap: 20px;
  }

  .titulo_nosotros {
    align-items: center;
  }

  .titulo_nosotros h2 {
    font-size: 26px;
  }

  .info_nosotros p {
    width: 80%;
    font-size: 16px;
  }

  .bg_nosotros {
    width: auto;
  }

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

  .info_nosotros a {
    align-self: center;
    font-size: 20px;
  }

  /* SECCIÓN SERVICIOS */
  .ser-list {
    padding: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .ser-item {
    display: flex;
    flex-direction: column;
  }

  .ser-i-ti {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0);
    padding: 10px;
    width: 100%;
    font-size: 20px;
    background-image: none;
    background-color: #1a6d9f;
  }

  .ser-i-img {
    height: auto;
  }

  .ser-i-icon {
    width: 40px;
    left: 81%;
  }

  .ser-i-ti {
    border-radius: 0 0 15px 15px;
  }

  .ser-item:nth-child(4) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(5) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(6) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(7) .ser-i-ti {
    top: 0;
  }

  .ser-t-ti {
    font-size: 26px;
    position: relative;
    display: block;
  }

  .ser-t-img {
    width: 60px;
  }

  .slider-img {
    position: relative;
  }

  .slider-img--2 {
    position: relative;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 40px;
    justify-content: space-around;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  /* SECCIÓN MENÚ MÓVIL */
  .menu-movil {
    display: block;
  }

  .menu-list {
    top: 55%;
    left: 48%;
  }

  .menu-btn {
    top: 2%;
    right: 7%;
  }

  .menu-bg {
    top: 3%;
    right: 8%;
  }

  /* SECCIÓN ENCABEZADO */
  .encabezado {
    padding: 20px 0;
    align-items: start;
  }

  .menu {
    display: none;
  }

  .logo img {
    width: 150px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
    height: auto;
  }

  .bg {
    padding-right: 0;
    align-items: center;
  }

  .titulo_bg {
    width: 100%;
    top: 70%;
    left: 50%;
  }

  .titulo_bg h3 {
    width: 100%;
    font-size: 15px;
    margin: auto;
    text-align: center;
  }

  .boton_bg {
    top: 83%;
  }

  .boton_bg a {
    font-size: 16px;
  }

  .bg img {
    width: 100%;
  }

  /* SECCIÓN NOSOTROS */
  .nosotros {
    width: 100%;
    gap: 40px;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .info_nosotros {
    width: auto;
    flex: 0 0 50%;
    padding: 0;
    gap: 20px;
  }

  .titulo_nosotros {
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .titulo_nosotros h2 {
    text-align: center;
    font-size: 18px;
  }

  .info_nosotros p {
    width: 100%;
    font-size: 14px;
    padding-left: 0;
  }

  .bg_nosotros {
    width: auto;
  }

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

  .info_nosotros a {
    font-size: 16px;
    align-self: center;
  }

  .titulo_nosotros img {
    width: 40px;
    margin-right: 0;
  }

  /* SECCIÓN SERVICIOS */
  .ser-list {
    padding: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .ser-text {
    padding: 0;
    text-align: center;
  }

  .ser-t-img {
    flex: 0 0 25%;
    width: 60px;
  }

  .ser-item {
    display: flex;
    flex-direction: column;
  }

  .slider-img {
    position: relative;
  }

  .slider-img--2 {
    position: relative;
  }

  .ser-i-ti {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0);
    padding: 10px;
    width: 100%;
    font-size: 20px;
    background-image: none;
    background-color: #1a6d9f;
    border-radius: 0 0 15px 15px;
  }

  .ser-i-img {
    height: auto;
  }

  .ser-i-icon {
    width: 40px;
    left: 81%;
  }

  .ser-item:nth-child(4) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(5) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(6) .ser-i-ti {
    top: 0;
  }

  .ser-item:nth-child(7) .ser-i-ti {
    top: 0;
  }

  .ser-t-ti {
    font-size: 28px;
    position: relative;
    display: block;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 20px;
    justify-content: space-around;
  }

  .pp-c-t-ti {
    width: 80%;
    font-size: 28px;
  }

  .pp-c-t-des {
    width: 100%;
  }

  .pp-links {
    flex-direction: column;
    gap: 20px;
  }

  .pp-tel p:first-child {
    width: 50%;
  }

  .pp-info {
    padding: 30px 20px;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}

