html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", serif;
  color: #25282a;
}

.base {
  position: relative;
  float: left;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.gap-40 {
  gap: 40px !important;
}

.title {
  font-family: "Inter", serif;
  color: #384975;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 0px;
  line-height: 1;
}

.subtitle {
  color: #c0c9d1;
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 1.6px;
  margin-bottom: 0px;
}

.paragraph {
  color: #727982;
  font-family: "Inter", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

.bg-header {
  background-image: url("../img/bg/bg4.jpg");
  background-position: center center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-razones {
  background-image: url("../img/bg/bg2.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-testimonios {
  background-image: url("../img/bg/bg3.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-faqs {
  background-image: url("../img/bg/bg1.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-img1 {
  background-image: url("../img/bg/bg-1.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-img2 {
  background-image: url("../img/bg/bg-2.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-img3 {
  background-image: url("../img/bg/bg-3.jpg");
  background-position: bottom center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-color-gold {
  background: rgba(140, 109, 24, 0.9);
}

.bg-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.bg-custom-black {
  background-color: rgba(20, 21, 22, 0.9);
}

.bg-custom-white {
  background-color: rgba(246, 246, 246, 0.9);
}

.bg-gradient-blue {
  background-image: linear-gradient(180deg,
      rgba(32, 76, 154, 0.7) 0%,
      #000000 100%);
}

.bg-custom-blue {
  background-color: rgb(13 49 85 / 85%);
}

.btn-custom {
  border-style: none;
  border-radius: 15px 15px 15px 15px;
  font-size: 18px;
  padding: 20px 40px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;

  background-image: linear-gradient(to right,
      #00c6ff 0%,
      #0072ff 40%,
      #00c6ff 100%);

  transition: 0.5s all ease;
  background-size: 200% auto;

  -webkit-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
}

.btn-custom2 {
  border-style: none;
  border-radius: 15px 15px 15px 15px;
  font-size: 18px;
  padding: 20px 40px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;

  background-image: linear-gradient(to right,
      #25D366 0%,
      /* Verde de WhatsApp */
      #128C7E 70%,
      /* Verde más oscuro */
      #25D366 100%
      /* Verde de WhatsApp */
    );
  transition: 0.5s all ease;
  background-size: 200% auto;

  -webkit-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
}

.btn-custom:hover {
  color: #fff;
  transition: 0.5s all ease;
  -webkit-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
  background-image: linear-gradient(to right,
      #00c6ff 0%,
      #0072ff 70%,
      #00c6ff 100%);
}

.btn-custom2:hover {
  color: #fff;
  transition: 0.5s all ease;
  -webkit-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
  background-image: linear-gradient(to right,
      #25D366 0%,
      /* Verde de WhatsApp */
      #128C7E 70%,
      /* Verde más oscuro */
      #25D366 100%
      /* Verde de WhatsApp */
    );
}

@media (max-width: 768px) {

  .btn-custom,
  .btn-custom:hover {
    flex-direction: column;
  }
}

#loader {
  background-color: #fff;
  top: 0px;
  left: 0px;
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/LoadingGif.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35px 35px;
  z-index: 1050;
}

.btn-custom.blue {
  background: #000b75;
  color: #fff !important;
}

.btn-custom.blue:hover {
  background: #dbdeed;
  color: #000b75 !important;
}

.btn-custom.green {
  background: #91b208;
  color: #fff;
}

.btn-custom.green:hover {
  background: #e0e8d6;
  color: #91b208;
}

.font-18 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .font-xs-16 {
    font-size: 16px !important;
  }
}

/****************************************/

.color-white {
  color: #fff;
}

.color-black {
  color: #25282a;
}

.color-blue {
  color: #000b75;
}

.color-blue-2 {
  color: #03062d;
}

.color-blue-3 {
  color: #0a0b52;
}

.color-blue-4 {
  color: #19158d;
}

.color-blue-5 {
  color: #221cb1;
}

.color-green {
  color: #9ec412;
}

.color-green-2 {
  color: #91b208;
}

.color-green-3 {
  color: #6b8800;
}

.color-green-4 {
  color: #acd625;
}

.color-green-5 {
  color: #4cb432;
}

.color-green-6 {
  color: #379024;
}

.bg-light-blue {
  background: #f2f4f8;
}

.bg-1 {
  background: #eef1f7;
}

.bg-2 {
  background: #dbdeed;
}

.bg-3 {
  background: #e0e8d6;
}

.bg-4 {
  background: #f2f5ee;
}

/**************estilos menu mobile****************************/
.hamburger-menu {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 19px;
  cursor: pointer;
  justify-content: center;
  display: flex;
  align-items: center;
  display: none;
}

.bar {
  position: absolute;
  background: #fff;
  border-radius: 30px;
  height: 4px;
  right: 0px;
  width: 24px;
  transition: all 1s ease;
}

.bar.animate {
  animation: animationBar3 1s ease 0s 1 normal none;
  right: 12px;
  width: 0px;
}

.bar1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 12px;
  height: 4px;
  border-radius: 30px;
  transition: all 1s ease;
}

.bar1.animate {
  animation: animationBar 1s ease 0s 1 normal none;
  left: 0px;
  width: 24px;
  transform: rotate(135deg);
  top: 7px;
}

.bar2 {
  position: absolute;
  border-radius: 30px;
  height: 4px;
  right: 0;
  bottom: 1px;
  width: 12px;
  transition: all 1s ease;
}

.bar2.animate {
  animation: animationBar2 1s ease 0s 1 normal none;
  transform: rotate(45deg);
  right: 0;
  bottom: 8px;
  width: 24px;
}

@keyframes animationBar {
  0% {
    top: 0px;
    left: 0;
    width: 12px;
    transform: rotate(0deg);
  }

  50% {
    left: 12px;
    width: 3px;
    transform: rotate(0deg);
    top: 0px;
  }

  100% {
    left: 0px;
    width: 24px;
    transform: rotate(135deg);
    top: 7px;
  }
}

@keyframes animationBar2 {
  0% {
    transform: rotate(0deg);
    right: 0;
    bottom: 0px;
    width: 12px;
  }

  50% {
    transform: rotate(0deg);
    right: 0;
    bottom: 0px;
    width: 3px;
  }

  100% {
    transform: rotate(45deg);
    right: 0;
    bottom: 8px;
    width: 24px;
  }
}

@keyframes animationBar3 {
  0% {
    right: 0;
    width: 24px;
  }

  50% {
    right: 0;
    width: 0px;
  }

  100% {
    right: 12px;
    width: 0px;
  }
}

nav.bg-white>div>div>.hamburger-menu>.bar,
nav.open>div>div>.hamburger-menu>.bar {
  background: #000b75;
}

nav.bg-secondary-blue.open>div>div>.hamburger-menu>.bar {
  background: #fff;
}

/****************Menu*************************/

nav {
  background: rgba(0, 11, 117, 0.25);
  width: 100%;
  position: fixed;
  float: left;
  top: 0;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in;
  z-index: 1050;
}

nav>div>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bg-white {
  /*background: #fff;*/
  background: rgba(238, 241, 247, 0.9) !important;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.bg-secondary-blue {
  /* background: #000b75;*/
  background: rgba(0, 11, 117, 0.9) !important;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#logo {
  position: relative;
  float: left;
  width: 130px;
  height: 49px;
  margin: 0px 30px;
  background: url("../img/logo-menu-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

/*nav.bg-white {
  background: rgba(238, 241, 247, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}*/

nav.bg-white>div>div>#logo {
  background: url("../img/logo-menu.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

#menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  position: relative;
  float: left;
  width: auto;
}

#menu>a,
.submenu>a,
.submenu>p {
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

#menu>a.activo,
#menu>p.activo,
.submenu>p.activo {
  border-bottom: 5px solid #91b208;
  margin-bottom: -7px !important;
}

.submenu>a>i,
.submenu>a>i {
  fill: #fff;
  transition: all 0.1s ease-in;
  margin-left: 5px;
  line-height: 0px;
}

nav.bg-white>div>div>#menu>a,
nav.bg-white>div>div>#menu>.submenu>a,
nav.bg-white>div>div>#menu>.submenu>p {
  color: #000b75;
  transition: all 0.5s ease-in;
}

nav.bg-secondary-blue>div>div>#menu>a,
nav.bg-secondary-blue>div>div>#menu>.submenu>a,
nav.bg-secondary-blue>div>div>#menu>.submenu>p {
  color: #fff;
  transition: all 0.1s ease-in;
}

nav>div>div>#menu>a.contacto {
  min-width: 133px;
  min-height: 48px;
}

nav.bg-secondary-blue>div>div>#menu>a.contacto {
  background: #91b208 !important;
}

.submenu>div {
  position: absolute;
  left: 0px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  width: 200px;
  margin-top: 5px;
  display: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.submenu>div.open {
  display: flex;
}

.rotate180deg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.1s ease-in;
}

.submenu>div>a {
  font-size: 15px;
  padding: 6px 24px;
  width: 100%;
  position: relative;
  float: left;
  color: #25282a;
  text-decoration: none;
  font-weight: 400;
}

.submenu>div>a.activo {
  background: #000b75;
  color: #fff;
  font-weight: 500;
}

.submenu>div>a:hover {
  background: #000b75;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1150px) {

  #menu>a,
  .submenu>a,
  .submenu>p {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  #menu {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {

  #menu>a,
  .submenu>a,
  .submenu>p {
    font-size: 17px;
  }

  .title {
    font-size: 40px;
    line-height: 1em;
  }

  nav {
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    align-items: flex-start;
    backdrop-filter: none !important;
  }

  nav div>div {
    align-items: flex-start;
  }

  .hamburger-menu {
    position: absolute;
    top: 30px;
    right: 24px;
    bottom: auto;
    z-index: 1050;
    display: flex;
  }

  #menu {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1050;
    top: 0px;
    right: -100%;
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-start;
    padding: 30px 16px;
    gap: 0px;
    justify-content: flex-start;
    transition: all 0.5s ease-in;
    margin-top: 0px;
  }

  #menu>a,
  .submenu>a,
  .submenu>p {
    padding: 16px 8px;
    width: 100%;
    text-align: left;
  }

  #menu>a.activo,
  #menu>p.activo,
  .submenu>p.activo {
    margin-bottom: 0px !important;
  }

  #menu>a.contacto {
    position: absolute;
    bottom: 30px;
    left: 0px;
    border-radius: 0px;
    width: 92%;
    margin: 0px 4%;
  }

  nav>div>div>#menu {
    background: #fff;
  }

  nav.bg-white>div>div>#menu>a,
  nav.open>div>div>#menu.open>a,
  .submenu>a,
  .submenu>p {
    color: #000b75;
  }

  nav.bg-secondary-blue>div>div>#menu {
    background: #000b75;
  }

  nav.bg-secondary-blue>div>div>#menu>a,
  nav.bg-secondary-blue.open>div>div>#menu.open>a {
    color: #fff;
  }

  nav.open {
    transition: all 0.5s ease-in;
  }

  #menu.open {
    right: 0px;
    transition: all 0.5s ease-in;
  }

  .submenu>div,
  .submenu,
  .submenu>a,
  .submenu>p {
    position: relative;
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 0px;
  }

  .submenu>div {
    box-shadow: none;
  }
}

/*******breadcrumbs****** */
.breadcrumbs {
  margin-top: 90px;
  margin-bottom: 40px;
  color: #697077;
  font-size: 16px;
  padding-left: 7%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 1400px) {
  .breadcrumbs {
    margin-top: 145px;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    margin-top: 90px;
    padding-left: 20px;
  }
}

/************************footer******************************/
footer {
  background: #1b1f23;
  padding: 48px 20px;
  position: relative;
  float: left;
  width: 100%;
  color: #fff;
}

#logo-footer {
  max-width: 160px;
  width: 100%;
}

.divider-line-footer {
  height: 1px;
  position: relative;
  float: left;
  background: #9ec412;
}

.submenu-footer {
  position: relative;
  float: left;
  width: 100%;
  max-width: 170px;
}

.submenu-title-footer {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  float: left;
  width: 100%;
  padding-bottom: 28px;
}

.link-footer,
.link-footer:hover {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  float: left;
  width: 100%;
  text-decoration: none;
  font-size: 18px;
}

.submenu-title-footer>i {
  fill: #fff;
  display: none;
}

#footer-option-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px;
}

.footer-icon-social,
.footer-icon-social:hover {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 768px) {
  .divider-line-footer {
    display: none;
  }

  #footer-option-menu>div:nth-child(1)>div>div.submenu-title-footer {
    border-top: 1px solid #fff;
  }

  .submenu-title-footer {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    padding-top: 20px;
    cursor: pointer;
  }

  .submenu-title-footer>i {
    display: block;
  }

  .submenu-footer {
    max-width: 100%;
  }

  #footer-option-menu {
    display: block;
  }

  .submenu-footer>.options {
    display: none;
  }

  .submenu-footer>.options.open {
    display: block;
  }

  .submenu-title-footer.open {
    color: #9ec412;
  }

  .submenu-title-footer.open>i {
    fill: #9ec412;
  }

  .rotate-90deg {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-900deg);
    transform: rotate(-90deg);
    transition: all 0.1s ease-in;
  }
}