.mobile {
  padding: 0;
}

.container.mobile-menu {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  margin-left: -100%;
  transition: all 1s linear;
  z-index: 100;
  top: 0;
}

.container.mobile-menu.open {
  margin-left: 0;
  opacity: 1;
  transition: all 1s ease;
  display: block;
  padding: 0;
}

.mobile-menu .container {
  padding: 0;
}

.mobile-menu .mobile-menu-header {
  padding: 0.9735rem 1.25rem 0;
  background-color: white;
  border-bottom: 1px solid rgba(1, 46, 94, 0.2);
}

.mobile-menu .mobile-menu-header .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
}

.mobile-menu .container .content-first .badge-content .badge2 {
  left: 2rem;
}

.mobile-menu .mobile-menu-header .menu-header .intro {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-menu-header .imagen {
  margin-right: 0.625rem;
  background-color: var(--vsf-secondary-color);
  border-radius: 50%;
}

.mobile-menu .mobile-menu-header .imagen img {
  width: 54px;
  height: 54px;
  border: 3px solid var(--vsf-secondary-color);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.mobile-menu .mobile-menu-header .title {
  color: var(--vsf-primary-color);
  font-weight: 600;
  font-size: 1rem;
}

.mobile-menu .mobile-menu-header button {
  background-color: white;
  border: none;
  font-size: 1.5rem;
  color: #979797;
}

.mobile-menu .mobile-menu-header .fa-times::before {
  color: #979797;
}

.mobile-menu .mobile-menu-header button:focus {
  box-shadow: none;
}

.mobile-menu .logo-menu {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 2.3125rem;
  background-color: white;
}

.mobile-menu .logo-menu img {
  width: 192px;
  height: auto;
}

.mobile-menu  .btn-close-login {
  text-align: center;
  padding-top: 2.125rem;
  background-color: white;
}

.mobile-menu  .btn-close-login .btn {
  padding: 0.62rem 4.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .container .content-first {
    margin: 0;
    border-radius: 0;
  }
}