@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

  .logos {
    position: relative;
    left: 60px;
    width: 80%;
    height: auto;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }








  .nav-menu {
    display: flex;
    align-items: center;
  }

  .align-right {
    margin-left: auto;
  }




 

  .whatsapp-icon {
    position: fixed;
    bottom: 35px;
    right: 25px;
    z-index: 999;
    width: 80px;
    height: auto;

  }

  .facebook-icon {
    position: fixed;
    bottom: 130px;
    right: 25px;
    z-index: 999;
    width: 80px;
    height: auto;

  }




  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .datos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    color: black;
  }

  .datos img {
    width: 30px;
  }

  .telefono-info {
    color: black;
    font-size: 22px;
    text-decoration: none;
    text-align: center;
    margin-left: 200px;
  }

  .direccion-info {
    color: black;
    font-size: 18px;
    text-decoration: none;
  }

  .correo-info {
    color: black;
    font-size: 22px;
    text-decoration: none;
    margin: auto;
  }

 

  .texto-dataxpagos{
    font-size: 25px; 
    line-height: 1;
    color: gray;
  }


 






  .left-section {
display: flex;
align-items: center;
padding-top: 11;
 padding-bottom: 12;
   border-radius: 5px;
}

.right-section {
display: flex;
align-items: center;
margin-left: auto;
padding-top: 11;
 padding-bottom: 12;
   border-radius: 5px;
}


.navbar {
padding-top: 14px !important;
padding-bottom: 25px !important;
}


.button1{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  color: #FFF;
  text-decoration: none;
  background-color: #006DD6;
  text-align: center;
  padding: 12px;
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  height: auto;
  width: auto;
  border: thin solid #006DD6;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in 0ms;
  -moz-transition: all 300ms ease-in 0ms;
  -ms-transition: all 300ms ease-in 0ms;
  -o-transition: all 300ms ease-in 0ms;
  transition: all 300ms ease-in 0ms;
  box-sizing: border-box;
  display:inline-block;
  border-radius: 8px;
}

.button1:hover{
  background-color: #00489F;
  border: thin solid #00489F;
  -webkit-transition: all 300ms ease-in 0ms;
  -moz-transition: all 300ms ease-in 0ms;
  -ms-transition: all 300ms ease-in 0ms;
  -o-transition: all 300ms ease-in 0ms;
  transition: all 300ms ease-in 0ms;
}





.buto{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  color: black;
  text-decoration: none;
  text-align: center;
  padding: 12px;
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
background-color: white;
  height: auto;
  width: auto;
  border: thin solid transparent;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in 0ms;
  -moz-transition: all 300ms ease-in 0ms;
  -ms-transition: all 300ms ease-in 0ms;
  -o-transition: all 300ms ease-in 0ms;
  transition: all 300ms ease-in 0ms;
  box-sizing: border-box;
  display:inline-block;
  border-radius: 8px;
}

.buto:hover{
  color: #0c1c5c;
  border: thin solid #00489F;
  -webkit-transition: all 300ms ease-in 0ms;
  -moz-transition: all 300ms ease-in 0ms;
  -ms-transition: all 300ms ease-in 0ms;
  -o-transition: all 300ms ease-in 0ms;
  transition: all 300ms ease-in 0ms;
}

.telefono-inicio{
text-decoration: none;
 margin-left: auto; 
  color:gray;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
}









/* Home */
.home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("images/lapflor.PNG");
  background-size: cover;
  background-position: center;
}
.home::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-out;
}
.home.show::before {
  opacity: 1;
  pointer-events: auto;
}











/* Formulario inicar sesion */
.form_container {
  position: fixed;
  max-width: 320px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 101;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.home.show .form_container {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.signup_form {
  display: none;
}
.form_container.active .signup_form {
  display: block;
}
.form_container.active .login_form {
  display: none;
}
.form_close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #0b0217;
  font-size: 22px;
  opacity: 0.7;
  cursor: pointer;
}
.form_container h2 {
  font-size: 22px;
  color: #0b0217;
  text-align: center;
  font-weight: bold;
}
.input_box {
  position: relative;
  margin-top: 30px;
  width: 100%;
  height: 40px;
}
.input_box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 30px;
  color: #333;
  transition: all 0.2s ease;
  border-bottom: 1.5px solid #aaaaaa;
}
.input_box input:focus {
  border-color: #7d2ae8;
}
.input_box i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #707070;
}
.input_box i.email,
.input_box i.password {
  left: 0;
}
.input_box input:focus ~ i.email,
.input_box input:focus ~ i.password {
  color: #7d2ae8;
}
.input_box i.pw_hide {
  right: 0;
  font-size: 18px;
  cursor: pointer;
}
.option_field {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_container a {
  color: #0C1C5C;
  font-size: 12px;
  text-decoration: none;
}
.form_container a:hover {
  text-decoration: underline;
}
.checkbox {
  display: flex;
  column-gap: 8px;
  white-space: nowrap;
}
.checkbox input {
  accent-color: #7d2ae8;
}
.checkbox label {
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  color: #0b0217;
}
.form_container .button {
  background: #0c1c5c;
  margin-top: 30px;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
  color: white;
}
.login_signup {
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
}


@media only screen and (max-width: 1750px) and (max-height: 1295px) {
  .right-section {
    display: flex;
    align-items: center;
    margin-right: 5%;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 7%;
}
}

@media only screen and (max-width: 1550px) and (max-height: 1295px) {
  .right-section {
    display: flex;
    align-items: center;
    margin-right: 10%;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 11%;
}
}

@media only screen and (max-width: 1476px) and (max-height: 1295px) {
  .nav-menu {
    z-index: 1;
    border-radius: 4px;
    margin-top: -57px;
}
}


@media only screen and (max-width: 1476px) and (max-height: 1295px) {
.nav-menu {
  height: 60px;
   width: 100%;
    right: 3%; 
}
}

@media only screen and (max-width: 1402px) and (max-height: 1295) {
.nav-menu {
  height: 60px !important;
   width: 132% !important;
    margin-right: -250px !important;
}
}

@media only screen and (max-width: 1296px) and (max-height: 1295px) {
.nav-menu {
  height: 60px !important;
   width: 122% !important;
    margin-right: -166px !important;
}
}

@media only screen and (max-width: 1230px) and (max-height: 1295px) {
.nav-menu {
  height: 60px !important;
   width: 111% !important;
    margin-right: -122px !important;
}

.logos{
  left: 23px;
}

.left-section{
  margin-left: 9%;
}

.nav-link.dropdown-toggle.light {
    padding-right: 12px !important;
}
}


@media only screen and (max-width: 1240px) and (max-height: 1295px) {
  .nav-link.light {
    color: #fff;
    margin-right: -23px !important;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}
.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 13%;
}
}

@media only screen and (max-width: 1081px) and (max-height: 1295px) {
  .logos {
    position: relative;
    left: -960px;
    width: 80%;
    height: auto;
}

.nav-menu {
    height: 60px;
    width: 121%;
    margin-right: -87px;
}
}

.nav-menu {
  height: 60px;
   width:160%; 
   margin-right: -400px;
}

@media only screen and (max-width: 1000px) and (max-height: 1400px) {
  .datos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    color: black;
  }

  .datos img {
    width: 30px;
  }
  

  .datos {
      flex-wrap: wrap;
    }

    .datos a {
      flex-basis: 100%;
      margin-bottom: 10px;
    }

    .direccion-info,
    .correo-info {
      margin-right: 0;
    }


    .whatsapp-icon {
    position: fixed;
    bottom: 35px;
    right: 25px;
    z-index: 999;
    width: 50;
    height: 50;
  }


  .facebook-icon {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    width: 50;
    height: 50;
  }
  .telefono-info {
    color: black;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
  }
  .direccion-info {
    color: black;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
  }

  .correo-info {
    color: black;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
  }

  .logos{
    left: 0px;
  }

  .nav-link {
  padding: 1px 16px !important;
}

.right-section {
display: block;
align-items: center;
margin-left: auto;
padding-top: 11;
 padding-bottom: 12;
  background-color: #0c1c5c;
   border-radius: 5px;
}
.left-section {
display: block;
align-items: center;
padding-top: 55px;
 padding-bottom: 12;
  background-color: #0c1c5c;
   border-radius: 5px;
   margin-left: 0%;
}

.telefono-inicio{
  display: none;
}


}
