/* ==========================================================
TRYL S.A.C.
STYLE.CSS
========================================================== */


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #9fa1a4;
  line-height: 1.5;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s all ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Poppins", sans-serif;
  color: #000000;
}

.container {
  z-index: 2;
  position: relative;
}

.text-black {
  color: #000000 !important;
}

.text-primary {
  color: #0265c3 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #f2f2f2 !important;
}

figure figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.8rem;
}

section {
  overflow: hidden;
}

.section {
  padding: 7rem 0;
}


/*--------------------------------------------------------------
# Títulos principales
--------------------------------------------------------------*/

.section-heading {
  font-size: 3rem;
  font-weight: 700;

  background: linear-gradient(
    to right,
    #f98700 0%,
    #0265c3 50%,
    #6bba03 100%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}


/*--------------------------------------------------------------
# Ajustes espacios TRYL
--------------------------------------------------------------*/

#nosotros.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

#nosotros .nosotros-titulo {
  margin-bottom: 2.5rem !important;
}

#nosotros .feature-1 {
  margin-bottom: 0;
}

#servicios.section {
  padding-top: 0;
  padding-bottom: 4rem;
}

#servicios .proceso-servicios {
  margin-top: 3rem;
}


/*--------------------------------------------------------------
# Imagen panorámica Servicios
--------------------------------------------------------------*/

.services-image-wrapper {
  position: relative;

  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background: transparent;
}

.services-image-full {
  position: relative;

  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  line-height: 0;
  font-size: 0;

  background: transparent;
}

.services-image-full .services-image-hd {
  display: block;

  width: 100%;
  max-width: 100%;

  height: auto;

  aspect-ratio: 4060 / 1951;

  margin: 0;
  padding: 0;

  border: 0;
  outline: 0;
  box-shadow: none;

  vertical-align: middle;

  image-rendering: auto;

  transform: none !important;
  -webkit-transform: none !important;

  filter: none !important;

  opacity: 1 !important;
}


/*--------------------------------------------------------------
# TEXTOS INTERNOS DE SERVICIOS
--------------------------------------------------------------*/

.servicio-texto {
  position: relative;
}

.servicio-texto h2 {
  text-transform: none;

  font-family: "Poppins", sans-serif;

  color: #000000;

  line-height: 1.2;
}

.servicio-subseccion {
  margin-top: 23px;
  margin-bottom: 24px;
}

.servicio-subtitulo {
  color: #0265c3;

  font-family: "Poppins", sans-serif;

  font-size: 18px;
  font-weight: 600;

  line-height: 1.35;

  margin-top: 0;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Párrafos de servicios
--------------------------------------------------------------*/

.servicio-parrafo {
  color: #777777;

  font-family: "Roboto", sans-serif;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.75;

  text-align: justify;
  text-justify: inter-word;

  margin-top: 0;
  margin-bottom: 18px;
}


/*--------------------------------------------------------------
# Lista del proceso de servicios
--------------------------------------------------------------*/

.servicio-lista {
  margin: 0;

  padding: 0 0 0 21px;

  color: #777777;

  font-family: "Roboto", sans-serif;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.65;

  text-align: justify;
  text-justify: inter-word;
}

.servicio-lista li {
  margin-bottom: 8px;
  padding-left: 3px;
}

.servicio-lista li:last-child {
  margin-bottom: 0;
}

.servicio-lista li::marker {
  color: #0265c3;
}

.servicio-lista strong {
  color: #333333;
  font-weight: 500;
}


/*--------------------------------------------------------------
# Botón después de textos de servicio
--------------------------------------------------------------*/

.servicio-boton {
  margin-top: 27px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Mudanzas
--------------------------------------------------------------*/

#mudanzas .servicio-texto {
  min-width: 0;
}

#mudanzas .servicio-parrafo {
  width: 100%;
}

#mudanzas .servicio-lista {
  width: 100%;
}

#mudanzas .img-fluid {
  display: block;

  width: 100%;
  max-width: 100%;

  height: auto;

  margin: 0 auto;
}


/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;

  visibility: hidden;
  opacity: 0;

  right: 15px;
  bottom: 15px;

  z-index: 996;

  background: #0265c3;

  width: 40px;
  height: 40px;

  border-radius: 50px;

  color: #ffffff;

  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;

  color: #ffffff;

  line-height: 0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
  border: none;
  padding: 15px 30px !important;
}

.btn.btn-outline-white {
  border: 2px solid #ffffff;

  background: #ffffff;

  color: #0265c3;
}

.btn.btn-primary {
  background: linear-gradient(
    to right,
    #f98700 0%,
    #0265c3 50%,
    #6bba03 100%
  );

  color: #ffffff;

  box-shadow:
    0 10px 30px 0 rgba(0, 0, 0, 0.15);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn.btn-primary:hover {
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 13px 32px rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Feature 1
--------------------------------------------------------------*/

.feature-1 .wrap-icon {
  margin: 0 auto;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  position: relative;

  margin-bottom: 30px;

  box-shadow:
    0 15px 30px 0 rgba(0, 0, 0, 0.2);

  display: inline-flex;

  align-items: center;
  justify-content: center;
}

.feature-1 .wrap-icon.icon-1 {
  background: #0265c3;
}

.feature-1 .wrap-icon i {
  font-size: 40px;

  line-height: 0;

  color: #ffffff;
}

.feature-1 h3 {
  font-size: 20px;
}

.feature-1 p {
  color: #b1b1b1;
}


/*--------------------------------------------------------------
# Cajas Planificamos / Transportamos / Entregamos
--------------------------------------------------------------*/

.step {
  background: #0265c3;

  padding: 40px;

  min-height: 205px;

  transform: translateY(-4px);

  box-shadow:
    0 16px 38px -8px rgba(2, 101, 195, 0.38);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step .step-icon {
  display: block;

  color: #f98700;

  margin-bottom: 14px;

  line-height: 1;

  height: 38px;
}

.step .step-icon i {
  display: inline-block;

  color: #f98700;

  font-size: 34px;

  line-height: 1;
}

.step h3 {
  color: #ffffff;

  font-size: 27px;

  margin-bottom: 10px;
}

.step p {
  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 0;
}


/*--------------------------------------------------------------
# SECCIÓN CLIENTES
--------------------------------------------------------------*/

#clientes,
#clientes.section {
  position: relative;

  background-color: #f4f5f6;

  background-image:
    linear-gradient(
      rgba(244, 245, 246, 0.88),
      rgba(244, 245, 246, 0.88)
    ),
    url("../img/fondo.svg");

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;
}


/*--------------------------------------------------------------
# Review
--------------------------------------------------------------*/

.review h3 {
  font-size: 20px;
}

.review p {
  line-height: 1.8;

  font-style: italic;

  color: #333333;
}

.review .stars {
  margin-bottom: 22px;

  line-height: 1;
}

.review .stars span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: #f98700;

  font-size: 46px;

  width: 70px;
  height: 70px;

  line-height: 1;

  margin: 0 auto;
}

.review .stars .muted {
  color: #cccccc;
}

.review .review-user img {
  width: 70px;

  margin: 0 auto;
}


/*--------------------------------------------------------------
# Iconos Review - Tablet
--------------------------------------------------------------*/

@media screen and (max-width: 991px) {

  .review .stars span {
    font-size: 43px;

    width: 66px;
    height: 66px;
  }

}


/*--------------------------------------------------------------
# Iconos Review - Smartphone
--------------------------------------------------------------*/

@media screen and (max-width: 576px) {

  .review .stars {
    margin-bottom: 18px;
  }

  .review .stars span {
    font-size: 40px;

    width: 62px;
    height: 62px;
  }

}


/*--------------------------------------------------------------
# Carrusel
--------------------------------------------------------------*/

.testimonials-slider .swiper-pagination {
  margin-top: 20px;

  position: relative;
}

.testimonials-slider
.swiper-pagination
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;

  background-color: #ffffff;

  opacity: 1;

  border: 1px solid #0265c3;
}

.testimonials-slider
.swiper-pagination
.swiper-pagination-bullet-active {
  background-color: #0265c3;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  padding: 50px;

  padding-bottom: 12rem !important;

  position: relative;

  border-radius: 4px;

  color: #000000;

  background: #ffffff;

  box-shadow:
    0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

.pricing h3 {
  color: #0265c3;
}

.pricing .price-cta {
  text-decoration: none;

  position: absolute;

  bottom: 50px;

  width: 100%;

  text-align: center;

  left: 0;
}

.pricing .price-cta .price {
  display: block;

  margin-bottom: 20px;

  font-size: 2rem;

  font-weight: 300;
}

.pricing .popularity {
  text-transform: uppercase;

  font-size: 12px;

  letter-spacing: 0.2rem;

  display: block;

  margin-bottom: 20px;
}

.pricing ul {
  margin-bottom: 50px;
}

.pricing ul li {
  margin-bottom: 10px;
}

.pricing .btn-white {
  background: #ffffff;

  border: 2px solid #f1f1f1;

  border-radius: 4px;

  box-shadow:
    0 5px 20px 0 rgba(0, 0, 0, 0.1);

  color: #0265c3;
}

.pricing.popular {
  background: linear-gradient(
    to right,
    #f98700 0%,
    #0265c3 50%,
    #6bba03 100%
  );

  color: #ffffff;

  box-shadow: none;
}

.pricing.popular .popularity {
  color: #b3b3b3;
}

.pricing.popular h3 {
  color: #ffffff;

  background: none;
}

.pricing.popular .btn-white {
  border: 2px solid #0265c3;
}


/*--------------------------------------------------------------
# CTA / CONTACTO
--------------------------------------------------------------*/

.cta-section {
  position: relative;

  background: linear-gradient(
    to right,
    #f98700 0%,
    #0265c3 50%,
    #6bba03 100%
  );

  color: #ffffff;

  padding-top: 30px;
  padding-bottom: 0;

  overflow: hidden;
}

.cta-section::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 58px;

  background: #55575a;

  z-index: 1;
}

.cta-section .container {
  position: relative;

  z-index: 2;
}

.cta-section .contacto-row {
  position: relative;

  min-height: 260px;

  align-items: center;

  z-index: 2;
}

.cta-section .contacto-gente {
  position: relative;

  display: flex;

  align-items: flex-end;
  justify-content: flex-end;

  align-self: stretch;

  z-index: 3;

  padding-right: 4px;
}

.cta-section .img-gente {
  display: block;

  width: 100%;

  max-width: 530px;

  height: auto;

  margin: auto 0 0 auto;

  padding: 0;

  object-fit: contain;

  object-position: right bottom;

  border: 0;
  outline: none;
  box-shadow: none;

  position: relative;

  z-index: 3;
}

.cta-section .contacto-texto {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: flex-start;

  z-index: 3;

  padding-left: 55px;
  padding-right: 10px;
}

.cta-section .contacto-texto h2 {
  color: #ffffff;

  font-size: 2.7rem;

  font-weight: 700;

  line-height: 1.15;

  margin: 0;

  max-width: 310px;
}

.cta-section .contacto-botones {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: flex-end;

  z-index: 3;
}

.cta-section .contacto-buttons {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap: 12px;

  width: 100%;
}

.cta-section .contacto-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-width: 150px;

  padding: 14px 20px !important;

  margin: 0;

  background: #ffffff;

  color: #0265c3;

  border: 2px solid #ffffff;

  border-radius: 4px;

  font-weight: 500;

  white-space: nowrap;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.12);

  transform: translateY(-2px);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.cta-section .contacto-btn i {
  margin: 0;

  color: #0265c3;

  font-size: 24px;

  line-height: 1;
}

.cta-section .contacto-btn span {
  color: #0265c3;
}


/*--------------------------------------------------------------
# CONTACTO - PANTALLAS MEDIANAS
--------------------------------------------------------------*/

@media screen and (min-width: 992px) and (max-width: 1199px) {

  .cta-section {
    padding-top: 26px;
  }

  .cta-section .contacto-row {
    min-height: 245px;
  }

  .cta-section .contacto-gente {
    padding-right: 0;
  }

  .cta-section .img-gente {
    width: 100%;
    max-width: 455px;
  }

  .cta-section .contacto-texto {
    padding-left: 22px;
    padding-right: 12px;
  }

  .cta-section .contacto-texto h2 {
    font-size: 2rem;

    line-height: 1.12;

    max-width: 235px;
  }

  .cta-section .contacto-botones {
    padding-left: 0;
  }

  .cta-section .contacto-buttons {
    gap: 7px;

    justify-content: flex-end;

    flex-wrap: nowrap;
  }

  .cta-section .contacto-btn {
    min-width: 125px;

    padding: 11px 12px !important;

    font-size: 13px;

    gap: 6px;
  }

  .cta-section .contacto-btn i {
    font-size: 20px;
  }

}


/*--------------------------------------------------------------
# Contacto - Tablet
--------------------------------------------------------------*/

@media screen and (max-width: 991px) {

  .cta-section {
    padding-top: 30px;

    padding-bottom: 0;
  }

  .cta-section::after {
    height: 52px;
  }

  .cta-section .contacto-row {
    min-height: auto;
  }

  .cta-section .contacto-gente {
    justify-content: center;

    margin-bottom: 20px;

    padding-right: 0;
  }

  .cta-section .img-gente {
    width: 74%;

    max-width: 560px;

    margin: 0 auto;
  }

  .cta-section .contacto-texto {
    justify-content: center;

    padding-left: 15px;
    padding-right: 15px;

    padding-bottom: 72px;
  }

  .cta-section .contacto-texto h2 {
    font-size: 2.3rem;

    max-width: 330px;

    text-align: center;
  }

  .cta-section .contacto-botones {
    justify-content: center;

    padding-bottom: 72px;
  }

  .cta-section .contacto-buttons {
    justify-content: center;

    flex-wrap: wrap;
  }

}


/*--------------------------------------------------------------
# Contacto - Smartphone
--------------------------------------------------------------*/

@media screen and (max-width: 767px) {

  .cta-section {
    padding-top: 25px;

    padding-bottom: 0;
  }

  .cta-section::after {
    height: 48px;
  }

  .cta-section .contacto-row {
    display: flex;

    flex-direction: column;

    min-height: auto;
  }

  .cta-section .contacto-gente {
    order: 1;

    width: 100%;

    justify-content: center;

    margin-bottom: 22px;

    padding: 0;
  }

  .cta-section .img-gente {
    width: 94%;

    max-width: 500px;

    margin: 0 auto;
  }

  .cta-section .contacto-texto {
    order: 2;

    width: 100%;

    justify-content: center;

    padding: 0 15px;

    margin-bottom: 24px;
  }

  .cta-section .contacto-texto h2 {
    width: 100%;

    max-width: 370px;

    font-size: 2.1rem;

    line-height: 1.15;

    text-align: center;
  }

  .cta-section .contacto-botones {
    order: 3;

    width: 100%;

    justify-content: center;

    padding-bottom: 72px;
  }

  .cta-section .contacto-buttons {
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
  }

  .cta-section .contacto-btn {
    min-width: 145px;

    padding: 13px 18px !important;
  }

}


/*--------------------------------------------------------------
# Contacto - Smartphone pequeño
--------------------------------------------------------------*/

@media screen and (max-width: 480px) {

  .cta-section {
    padding-top: 22px;
  }

  .cta-section::after {
    height: 44px;
  }

  .cta-section .img-gente {
    width: 100%;
  }

  .cta-section .contacto-texto h2 {
    font-size: 1.9rem;

    max-width: 300px;
  }

  .cta-section .contacto-buttons {
    flex-direction: column;

    width: 100%;

    gap: 10px;
  }

  .cta-section .contacto-btn {
    width: 210px;

    min-width: 210px;
  }

  .cta-section .contacto-botones {
    padding-bottom: 66px;
  }

}


/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/

.form-control {
  height: 48px;

  border-radius: 0;

  outline: none;

  box-shadow: none;

  border: 1px solid #0265c3;
}

.php-email-form .validate {
  display: none;

  color: red;

  margin: 0 0 15px 0;

  font-weight: 400;

  font-size: 13px;
}

.php-email-form .error-message {
  display: none;

  color: #ffffff;

  background: #ed3c0d;

  text-align: left;

  padding: 15px;

  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;

  color: #ffffff;

  background: #18d26e;

  text-align: center;

  padding: 15px;

  font-weight: 600;
}

.php-email-form .loading {
  display: none;

  background: #ffffff;

  text-align: center;

  padding: 15px;
}

.php-email-form textarea {
  min-height: 160px;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.post-entry {
  margin-bottom: 60px;
}

.post-entry .post-text .post-meta {
  text-decoration: none;

  color: #cccccc;

  font-size: 13px;

  display: block;

  margin-bottom: 10px;
}

.post-entry .post-text h3 {
  font-size: 20px;

  color: #000000;
}

.post-entry .post-text h3 a {
  text-decoration: none;

  color: #0265c3;
}

.post-entry .post-text .readmore {
  color: #0265c3;
}

.sidebar-box {
  margin-bottom: 30px;

  padding: 25px;

  font-size: 15px;

  width: 100%;

  float: left;

  background: #ffffff;
}

.sidebar-box h3 {
  font-size: 18px;

  margin-bottom: 15px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;

  transition: all 0.5s;

  z-index: 997;
}

#header.header-scrolled {
  background: rgba(2, 101, 195, 0.8);

  height: 60px;
}

#header .logo {
  display: flex;

  align-items: center;

  height: 80px;

  margin: 0;

  padding: 0;
}

#header .logo a {
  display: flex;

  align-items: center;

  margin: 0;

  padding: 0;
}

#header .logo .logo-tryl {
  display: block;

  width: 205px;

  height: auto;

  max-width: none;

  max-height: 58px;

  margin: 0;

  padding: 0;
}

#header.header-scrolled .logo {
  height: 60px;
}

#header.header-scrolled .logo .logo-tryl {
  width: 185px;

  max-height: 50px;
}


/*--------------------------------------------------------------
# Header Tablet
--------------------------------------------------------------*/

@media screen and (max-width: 991px) {

  #header .logo {
    height: 80px;
  }

  #header .logo .logo-tryl {
    width: 180px;

    max-height: 52px;
  }

  #header.header-scrolled .logo {
    height: 60px;
  }

  #header.header-scrolled .logo .logo-tryl {
    width: 165px;

    max-height: 45px;
  }

}


/*--------------------------------------------------------------
# Header Smartphone
--------------------------------------------------------------*/

@media screen and (max-width: 576px) {

  #header .logo .logo-tryl {
    width: 170px;

    max-height: 50px;
  }

  #header.header-scrolled .logo .logo-tryl {
    width: 155px;

    max-height: 43px;
  }

}


/*--------------------------------------------------------------
# Navegación
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}

.navbar > ul {
  margin: 0;

  padding: 0;

  display: flex;

  list-style: none;

  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 10px 0 10px 30px;

  font-size: 16px;

  font-weight: 400;

  color: rgba(255, 255, 255, 0.65);

  white-space: nowrap;

  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;

  line-height: 0;

  margin-left: 5px;
}

.navbar > ul > li > a,
.navbar > ul > li > a.active {
  color: #ffffff;
}


/*--------------------------------------------------------------
# Eliminar puntos del menú
--------------------------------------------------------------*/

.navbar ul,
.navbar ul li,
.navbar .dropdown ul,
.navbar .dropdown ul li,
.navbar-mobile ul,
.navbar-mobile ul li,
.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown ul li {
  list-style: none !important;
}

.navbar ul li::marker,
.navbar .dropdown ul li::marker,
.navbar-mobile ul li::marker,
.navbar-mobile .dropdown ul li::marker {
  content: "" !important;
  font-size: 0 !important;
}

.navbar .dropdown ul li::before,
.navbar-mobile .dropdown ul li::before {
  content: none !important;

  display: none !important;

  width: 0 !important;
  height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}


/*--------------------------------------------------------------
# Dropdown escritorio
--------------------------------------------------------------*/

.navbar .dropdown > ul {
  display: block;

  position: absolute;

  left: 14px;

  top: calc(100% + 20px);

  margin: 0;

  padding: 10px 0;

  z-index: 99;

  min-width: 220px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  background: #ffffff;

  box-shadow:
    0 5px 30px rgba(127, 137, 161, 0.25);

  border-radius: 4px;

  list-style: none !important;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    top 0.25s ease;
}

@media (min-width: 992px) {

  .navbar .dropdown:hover > ul {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    top: 100%;
  }

}


/*--------------------------------------------------------------
# Elementos Dropdown
--------------------------------------------------------------*/

.navbar .dropdown ul li {
  min-width: 220px;

  position: relative;

  list-style: none !important;
}

.navbar .dropdown ul a {
  padding: 10px 20px;

  font-size: 15px;

  font-weight: 400;

  color: #0265c3;

  background: transparent;
}

.navbar .dropdown ul a:hover {
  color: #6bba03;

  background: #f7f9fb;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}


/*--------------------------------------------------------------
# Segundo nivel Dropdown
--------------------------------------------------------------*/

.navbar .dropdown .dropdown > ul {
  top: 0;

  left: calc(100% + 20px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

@media (min-width: 992px) {

  .navbar .dropdown .dropdown:hover > ul {
    top: 0;

    left: 100%;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }

}


/*--------------------------------------------------------------
# Navegación móvil
--------------------------------------------------------------*/

.mobile-nav-toggle {
  color: #ffffff;

  font-size: 28px;

  cursor: pointer;

  display: none;

  line-height: 0;

  transition: 0.5s;
}

@media (max-width: 991px) {

  .mobile-nav-toggle {
    display: block;
  }

  .navbar > ul {
    display: none;
  }

}


/*--------------------------------------------------------------
# Menú móvil abierto
--------------------------------------------------------------*/

.navbar-mobile {
  position: fixed;

  overflow: hidden;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  background: rgba(27, 49, 94, 0.9);

  transition: 0.3s;

  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;

  top: 15px;
  right: 15px;
}

.navbar-mobile > ul {
  display: block;

  position: absolute;

  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;

  padding: 10px 0;

  border-radius: 10px;

  background-color: #ffffff;

  overflow-y: auto;

  list-style: none !important;

  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;

  font-size: 15px;

  color: #101c36;
}

.navbar-mobile a,
.navbar-mobile .active,
.navbar-mobile li > a {
  color: #0265c3;
}


/*--------------------------------------------------------------
# Dropdown móvil
--------------------------------------------------------------*/

.navbar-mobile .dropdown > ul {
  position: static;

  display: none;

  margin: 10px 20px;

  padding: 10px 0;

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  background: #ffffff;

  box-shadow:
    0 0 30px rgba(127, 137, 161, 0.25);

  border-radius: 4px;

  list-style: none !important;

  transition: none;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;

  list-style: none !important;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;

  color: #0265c3;
}

.navbar-mobile .dropdown ul a:hover {
  color: #6bba03;
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero-section {
  background:
    linear-gradient(
      to right,
      rgba(249, 135, 0, 0.8) 0%,
      rgba(2, 101, 195, 0.8) 50%,
      rgba(107, 186, 3, 0.8) 100%
    ),
    url("../img/hero-bg.jpg");

  position: relative;
}

.hero-section .wave {
  width: 100%;

  overflow: hidden;

  position: absolute;

  z-index: 1;

  bottom: -150px;
}

.hero-section .wave svg {
  width: 100%;
}

.hero-section,
.hero-section > .container > .row {
  height: 100vh;

  min-height: 880px;
}

.hero-section.inner-page {
  height: 60vh;

  min-height: 0;
}

.hero-section.inner-page .hero-text {
  transform: translateY(-150px);

  margin-top: -120px;
}

.hero-section h1 {
  font-size: 3.5rem;

  color: #ffffff;

  font-weight: 700;

  margin-bottom: 30px;
}

.hero-section p {
  font-size: 18px;

  color: #ffffff;
}

.hero-section .iphone-wrap {
  position: relative;
}

.hero-section .iphone-wrap .phone-2,
.hero-section .iphone-wrap .phone-1 {
  position: absolute;

  top: -50%;

  overflow: visible;

  left: -120px;

  box-shadow: none;

  border-radius: 0;

  background: transparent;

  height: auto;
}

.hero-section .iphone-wrap .phone-1 {
  width: clamp(270px, 20vw, 320px);
}

.hero-section .iphone-wrap .phone-2 {
  margin-top: 45px;

  margin-left: 205px;

  width: clamp(330px, 25vw, 390px);
}


/*--------------------------------------------------------------
# Tablet Hero
--------------------------------------------------------------*/

@media screen and (max-width: 992px) {

  .hero-section .wave {
    bottom: -180px;
  }

  .hero-section h1 {
    font-size: 2.5rem;

    text-align: center;

    margin-top: 40px;
  }

  .hero-section .hero-text-image {
    margin-top: 4rem;
  }

  .hero-section .iphone-wrap {
    text-align: center;
  }

  .hero-section .iphone-wrap .phone-1,
  .hero-section .iphone-wrap .phone-2 {
    top: 0;

    max-width: 100%;
  }

  .hero-section .iphone-wrap .phone-1 {
    position: relative;

    width: 260px;

    left: 0;

    margin-left: -130px;
  }

  .hero-section .iphone-wrap .phone-2 {
    position: absolute;

    width: 310px;

    left: 0;

    margin-top: 15px;

    margin-left: 90px;
  }

}


/*--------------------------------------------------------------
# Animación smartphone
--------------------------------------------------------------*/

@keyframes phoneSlideMobile {

  0% {
    opacity: 0;

    transform: translateX(-110px);
  }

  100% {
    opacity: 1;

    transform: translateX(0);
  }

}


/*--------------------------------------------------------------
# Smartphone Hero
--------------------------------------------------------------*/

@media screen and (max-width: 576px) {

  .hero-section .iphone-wrap {
    position: relative;

    width: 100%;

    height: 320px;

    margin: 0 auto;

    text-align: initial;
  }

  .hero-section .iphone-wrap .phone-1,
  .hero-section .iphone-wrap .phone-2 {
    position: absolute;

    height: auto;

    max-width: none;

    margin: 0;

    opacity: 0;

    animation-name: phoneSlideMobile;

    animation-duration: 1.6s;

    animation-timing-function: ease-out;

    animation-fill-mode: forwards;
  }

  .hero-section .iphone-wrap .phone-1 {
    width: 49%;

    left: 3%;

    right: auto;

    top: 20px;

    margin-left: 0;

    z-index: 1;

    animation-delay: 0.1s;
  }

  .hero-section .iphone-wrap .phone-2 {
    width: 59%;

    left: auto;

    right: 2%;

    top: 38px;

    margin-left: 0;

    margin-top: 0;

    z-index: 2;

    animation-delay: 0.25s;
  }

}


/*--------------------------------------------------------------
# Responsive espacios
--------------------------------------------------------------*/

@media screen and (max-width: 992px) {

  #nosotros.section {
    padding-top: 3rem;

    padding-bottom: 3rem;
  }

  #nosotros .nosotros-titulo {
    margin-bottom: 2rem !important;
  }

  #servicios.section {
    padding-top: 0;
  }

  .services-image-full .services-image-hd {
    width: 100%;

    max-width: 100%;

    height: auto;

    aspect-ratio: 4060 / 1951;
  }

}


/*--------------------------------------------------------------
# Responsive Smartphone general
--------------------------------------------------------------*/

@media screen and (max-width: 576px) {

  #nosotros.section {
    padding-top: 2.5rem;

    padding-bottom: 2.5rem;
  }

  #nosotros .nosotros-titulo {
    margin-bottom: 1.8rem !important;
  }

  #nosotros .feature-1 {
    margin-bottom: 2rem;
  }

  #nosotros .col-md-4 .feature-1 {
    margin-bottom: 0;
  }

  #servicios .proceso-servicios {
    margin-top: 2.5rem;
  }

  .step {
    min-height: auto;

    margin-bottom: 25px;
  }

  .step .step-icon {
    height: 34px;

    margin-bottom: 12px;
  }

  .step .step-icon i {
    font-size: 31px;
  }

  .servicio-subtitulo {
    font-size: 17px;

    margin-bottom: 8px;
  }

  .servicio-parrafo {
    font-size: 15px;

    line-height: 1.7;

    text-align: left;

    margin-bottom: 16px;
  }

  .servicio-lista {
    font-size: 15px;

    line-height: 1.65;

    text-align: left;

    padding-left: 20px;
  }

  .servicio-lista li {
    margin-bottom: 9px;
  }

  .servicio-subseccion {
    margin-top: 20px;

    margin-bottom: 22px;
  }

  .servicio-boton {
    margin-top: 24px;
  }

}


/*--------------------------------------------------------------
# Mudanzas Responsive Tablet
--------------------------------------------------------------*/

@media screen and (max-width: 991px) {

  #mudanzas .servicio-texto {
    padding-right: 24px;
  }

}


/*--------------------------------------------------------------
# Mudanzas Responsive Smartphone
--------------------------------------------------------------*/

@media screen and (max-width: 767px) {

  #mudanzas .servicio-texto {
    padding-right: 12px;

    margin-bottom: 42px;
  }

  #mudanzas .img-fluid {
    width: 100%;

    max-width: 560px;

    margin-left: auto;

    margin-right: auto;
  }

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  padding: 5rem 0 2.5rem 0;

  background: #ffffff;
}

.footer-brand {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;

  margin: 0 0 28px 0;

  padding: 0;
}

.footer-logo {
  display: block;

  width: 210px;

  max-width: 100%;

  height: auto;

  margin: 0;

  padding: 0;

  object-fit: contain;
}

.footer-description {
  max-width: 430px;

  margin-bottom: 20px;

  color: #9fa1a4;

  font-size: 16px;

  line-height: 1.5;
}

.footer h3 {
  font-family: "Poppins", sans-serif;

  font-size: 18px;

  font-weight: 500;

  color: #0265c3;

  margin-bottom: 30px;
}

.footer ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;

  color: #000000;

  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.5;
}

.footer ul li a {
  color: #000000;

  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.5;

  text-decoration: none;

  transition:
    color 0.25s ease;
}

.footer ul li a:hover {
  color: #6bba03;
}

.footer .footer-contact-list li {
  color: #000000;

  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.5;
}

.footer .footer-contact-list li a {
  color: #000000;
}

.footer .footer-contact-list li a:hover {
  color: #6bba03;
}

.footer .copyright {
  margin-bottom: 0;

  margin-top: 25px;

  color: #9fa1a4;
}

.footer .copyright,
.footer .credits {
  font-size: 14px;
}


/*--------------------------------------------------------------
# Redes sociales
--------------------------------------------------------------*/

.social {
  margin-bottom: 0;
}

.social a {
  display: inline-block;

  width: 50px;

  height: 50px;

  margin-right: 5px;

  border-radius: 50%;

  background: #0265c3;

  position: relative;

  text-align: center;

  transition:
    background 0.3s ease,
    transform 0.3s ease;

  color: #ffffff;

  line-height: 0;
}

.social a span {
  display: inline-block;

  left: 50%;

  position: absolute;

  top: 50%;

  transform: translate(-50%, -50%);

  color: #ffffff;
}

.social a:hover {
  background: #6bba03;

  transform: translateY(-2px);

  color: #ffffff;
}

.social a:hover span {
  color: #ffffff;
}


/*--------------------------------------------------------------
# Footer Tablet
--------------------------------------------------------------*/

@media screen and (max-width: 991px) {

  .footer {
    padding: 4rem 0 2.5rem 0;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-logo-link {
    margin-bottom: 24px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer h3 {
    color: #0265c3;
  }

  .footer ul li,
  .footer ul li a,
  .footer .footer-contact-list li {
    color: #000000;
  }

  .footer ul li a:hover {
    color: #6bba03;
  }

}


/*--------------------------------------------------------------
# Footer Smartphone
--------------------------------------------------------------*/

@media screen and (max-width: 767px) {

  .footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer-brand {
    align-items: center;

    text-align: center;

    margin-bottom: 45px;
  }

  .footer-logo-link {
    margin-bottom: 22px;
  }

  .footer-logo {
    width: 180px;

    margin: 0 auto;
  }

  .footer-description {
    max-width: 420px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 22px;
  }

  .footer .site-section > div {
    margin-bottom: 32px !important;

    text-align: center;
  }

  .footer h3 {
    margin-bottom: 18px;

    color: #0265c3;
  }

  .footer ul li,
  .footer ul li a,
  .footer .footer-contact-list li {
    color: #000000;

    font-size: 16px;
  }

  .footer ul li a:hover {
    color: #6bba03;
  }

  .social {
    text-align: center;
  }

  .footer .copyright {
    margin-top: 10px;
  }

}


/*--------------------------------------------------------------
# Footer Smartphone pequeño
--------------------------------------------------------------*/

@media screen and (max-width: 480px) {

  .footer-logo {
    width: 165px;
  }

  .footer-description {
    font-size: 14px;

    line-height: 1.6;
  }

  .footer h3 {
    font-size: 18px;

    color: #0265c3;
  }

  .footer ul li,
  .footer ul li a,
  .footer .footer-contact-list li {
    font-size: 15px;

    color: #000000;
  }

  .footer ul li a:hover {
    color: #6bba03;
  }

  .social a {
    width: 46px;

    height: 46px;
  }

}