@import url("https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,600;1,600&display=swap");
body {
  font-size: 18px;
}

.forgot {
  color: #7b7b7b;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Winky", sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  background-color: #a2d5ff;
}

header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  padding: 10px 10px;
  position: fixed;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  z-index: 1000;
}
header .logo img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  header .logo {
    width: 200px;
  }
}
header ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  color: #000;
  display: inline-block;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0 5px;
  padding: 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header ul li a img {
  width: 25px;
}
header ul li a:hover {
  background-color: #fff;
}
header ul li .login,
header ul li .user_menu,
header ul li .logout,
header ul li .topy {
  cursor: pointer;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  width: 50px;
}
header ul li .login:hover,
header ul li .user_menu:hover,
header ul li .logout:hover,
header ul li .topy:hover {
  background-color: none;
}
header ul li .login img,
header ul li .user_menu img,
header ul li .logout img,
header ul li .topy img {
  width: 100%;
}
header ul li .logout {
  position: relative;
  top: 5px;
}
header ul li .topy2 {
  background-color: transparent !important;
}
header ul li .current {
  background-color: rgba(32, 202, 240, 0.3);
}

header.sticky {
  background: #fff;
  padding: 10px 10px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.sticky .logo {
  position: relative;
  top: 5px;
  width: 180px;
}
header.sticky ul li a {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  color: #000;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0 10px;
  padding: 10px 15px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
header.sticky ul li .current {
  background-color: rgba(32, 202, 240, 0.3);
}
header.sticky ul li .login {
  cursor: pointer;
  line-height: 20px;
  padding: 0 10px;
  position: relative;
  width: 50px;
}
header.sticky ul li .login img {
  width: 100%;
}

.scroll-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 50px;
  height: 42px;
  width: 42px;
  line-height: 42px;
  opacity: 0.6;
}
.scroll-top:hover {
  opacity: 1;
}

section {
  padding-top: 100px;
}

.banner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/podologia.jpg);
  background-position: top;
  background-repeat: repeat-y;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
  height: auto;
  position: relative;
}
.banner .textBx {
  outline: 1px solid #6b6b6b;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin: 0 auto;
  max-width: 320px;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.banner .textBx h2 {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
  line-height: 2.25rem;
  text-shadow: 2px 2px 5px #fff;
}
@media screen and (max-width: 901px) {
  .banner .textBx h2 {
    font-size: 1.7rem;
  }
}
.banner .textBx h2 span {
  color: #000 !important;
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 901px) {
  .banner .textBx h2 span {
    font-size: 1.6rem;
  }
}
.banner .textBx h3 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 10px;
  text-shadow: 2px 2px 5px #fff;
  width: 100% !important;
}
@media screen and (max-width: 901px) {
  .banner .textBx h3 {
    font-size: 0.9rem;
  }
}
.banner .textBx h4 {
  font-weight: normal;
  margin-top: 10px;
}
.banner .textBx h4 .suscrito,
.banner .textBx h4 .tu_cita,
.banner .textBx h4 .login {
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 8px 20px;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.banner .textBx h4 .suscrito:hover,
.banner .textBx h4 .tu_cita:hover,
.banner .textBx h4 .login:hover {
  cursor: pointer;
}
.banner .textBx h4 .tu_cita {
  color: #000;
  background-color: green;
  background-color: orange;
}
.banner .textBx h4 .tu_cita:hover {
  background: #00b300;
  color: #fff;
}
.banner .textBx h4 .login {
  background: #2196f3;
}
.banner .textBx h4 .login:hover {
  background: #51adf6;
}
.banner .textBx h4 img {
  cursor: pointer;
  position: relative;
  top: 7px;
  width: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.banner .textBx h4 img:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.banner .textBx .prof {
  color: #000;
  text-transform: uppercase;
}
.banner .textBx .perfil {
  border-radius: 10px;
  margin: 15px 0;
  margin-top: 30px;
  padding: 10px;
}
.banner .textBx .perfil a {
  text-decoration: none;
}
.banner .textBx .perfil .btn_prfl {
  background-color: rgba(255, 165, 0, 0.75);
  background-color: #ffa500;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 5px #595959;
          box-shadow: 0 0 5px #595959;
  color: #000;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 15px;
  padding: 8px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 190px;
}
.banner .textBx .perfil .btn_prfl a {
  color: #000;
  text-decoration: none;
}
.banner .textBx .perfil .btn_prfl:active {
  background-color: #fcbd49;
  -webkit-box-shadow: 0 0 3px #595959;
          box-shadow: 0 0 3px #595959;
}
.banner .textBx .perfil .btn_prfl:hover {
  background-color: #ffd07a;
}
.banner .textBx .perfil .prf-salir {
  border: 1px solid #dc0404;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.banner .textBx .perfil .prf-salir:active {
  -webkit-box-shadow: 0 0 3px #595959;
          box-shadow: 0 0 3px #595959;
}
.banner .textBx .perfil .prf-salir:hover {
  background-color: rgba(240, 32, 32, 0.65) !important;
  color: #fff;
}
.banner .textBx .perfil .arrows {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner .textBx .perfil .arrows .arr-dwn {
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px;
  position: relative;
  width: 30px;
  -webkit-animation: arrow 2s 0.5s infinite;
          animation: arrow 2s 0.5s infinite;
}
.banner .textBx .perfil .arrows .arr-dwn img {
  width: 100%;
}
@-webkit-keyframes arrow {
  0% {
    top: 0;
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  90% {
    top: 20px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    top: 0;
  }
}
@keyframes arrow {
  0% {
    top: 0;
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  90% {
    top: 20px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    top: 0;
  }
}
.banner .btn {
  background: #2196f3;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 20px;
  padding: 10px 30px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.banner .btn:hover {
  background: #51adf6;
}
@media screen and (max-width: 901px) {
  .banner .btn {
    font-size: 0.9rem;
  }
}
.banner .profile {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255, 0.1)), color-stop(40%, rgba(255, 255, 255, 0.42)), color-stop(60%, rgba(255, 255, 255, 0.42)), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.42) 40%, rgba(255, 255, 255, 0.42) 60%, rgba(255, 255, 255, 0.1) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  margin: 0 auto;
  padding: 90px 50px;
  width: 100%;
}
.banner .profile h2 {
  font-size: 1.75rem;
  text-shadow: 0 0 2px #fff;
  text-transform: uppercase;
}
.banner .profile .prof_boxes {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  max-width: 900px;
  padding: 20px;
  padding-bottom: 30px;
  width: 100%;
}
.banner .profile .prof_boxes .pprof_box {
  cursor: pointer;
  margin: 10px;
  text-align: center;
  width: 125px;
}
.banner .profile .prof_boxes .pprof_box h3 {
  font-size: 1.5rem;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.banner .profile .prof_boxes .pprof_box .ball-op img {
  -webkit-box-shadow: 0 0 5px #6b6b6b;
          box-shadow: 0 0 5px #6b6b6b;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.banner .profile .prof_boxes .pprof_box .ball-op img:hover {
  -webkit-box-shadow: 0 0 15px #6b6b6b;
          box-shadow: 0 0 15px #6b6b6b;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.banner .reservas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Roboto", sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  margin: 0 auto;
  padding: 70px 20px;
  width: 100%;
}
.banner .reservas h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
}
.banner .reservas .res-in {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
}
.banner .reservas .res-in label {
  font-weight: 600;
  margin: 0 20px;
}
.banner .reservas .res-in .vox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  width: 200px;
}
.banner .reservas .res-in .vox .q_mes {
  font-size: 1.1rem;
}
.banner .reservas .res-in .vox select {
  font-size: 1.2rem;
  margin: 0 auto;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  width: 130px;
}
.banner .reservas .res-in .vox .conf_img {
  margin-top: -40px;
}
.banner .reservas .res-in .vox .conf_img img {
  width: 60px;
}
.banner .reservas .res-in .vox .prrf {
  font-family: "Roboto Condensed", sans-serif;
}
.banner .reservas .res-in .vox .prrf a {
  background-color: white;
  border-radius: 10px;
  color: #000;
  margin-top: 10px;
  padding: 6px 10px;
  text-decoration: none;
}
.banner .reservas .res-in .vox .btns {
  width: 100%;
}
.banner .reservas .res-in .vox .btns .back_index {
  margin: 0 auto;
  margin-top: 15px;
  text-align: center;
}
.banner .reservas .res-in .errors {
  background-color: white;
  color: #f00;
  padding: 8px 12px;
}
.banner .reservas .res-in .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .reservas .res-in .btns .btn {
  cursor: pointer;
  font-size: 0.9em;
  margin: 5px;
  margin-top: 25px;
  padding: 8px 12px;
  letter-spacing: normal;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.banner .reservas .res-in .btns .bachi {
  background-color: #ce0000;
}
.banner .reservas .res-in .btns .bachi:hover {
  background-color: #ff0202;
}
.banner .reservas .res-in .btns .booki {
  background-color: green;
}
.banner .reservas .res-in .btns .booki:hover {
  background-color: #00b300;
}
.banner .my_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
.heading h2 {
  font-weight: 600;
  font-size: 30px;
}

.user_reservas {
  background-color: rgba(255, 255, 255, 0.65);
  color: #000;
  margin: 0 auto;
  outline: 1px solid #6b6b6b;
  padding-top: 30px;
  text-align: center;
}
.user_reservas h2 {
  font-weight: 600;
  font-size: 30px;
}

.heading.white {
  color: #fff;
}

.pshdwn-20 {
  margin-top: 20px;
}

.conetntBx {
  padding-right: 30px;
}
.conetntBx h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.w50 {
  min-width: 50%;
}

img {
  max-width: 100%;
}

.services h2,
.services h3 {
  text-transform: uppercase;
}
.services .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  outline: 1px solid #d9d9d9;
}
.services .content .servicesBx {
  background-color: rgba(255, 255, 255, 0.32);
  -webkit-box-shadow: 5px 5px 10px #717171;
          box-shadow: 5px 5px 10px #717171;
  border-radius: 15px;
  margin: 20px;
  outline: 1px solid #b3b3b3;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 45%;
}
.services .content .servicesBx .img_box {
  height: 188px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0;
  width: 280px;
}
.services .content .servicesBx .img_box img {
  border: 5px solid #fff;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 420) {
  .services .content .servicesBx .img_box {
    width: 95%;
  }
}
@media (min-width: 320px) and (max-width: 870px) {
  .services .content .servicesBx .img_box {
    width: 300px;
  }
}
@media (max-width: 320px) and (max-width: 480px) {
  .services .content .servicesBx .img_box {
    width: 100%;
  }
}
.services .content .servicesBx h2 {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  text-align: center;
  width: 100%;
}
.services .content .servicesBx p {
  padding: 15px;
  text-align: justify;
  word-wrap: break-word;
}
.services .content .servicesBx p span {
  font-weight: 500;
}
.services .content .servicesBx .leer a {
  border-radius: 10px;
  color: blue;
  letter-spacing: 1px;
  position: relative;
  top: -25px;
  text-decoration: none;
}
@media (min-width: 1150px) {
  .services .content .servicesBx {
    width: 300px;
  }
}
@media (min-width: 320px) and (max-width: 870px) {
  .services .content .servicesBx {
    width: 90%;
  }
}
@media (max-width: 320px) and (max-width: 480px) {
  .services .content .servicesBx {
    width: 100%;
  }
}
.services .content .serv_boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  gap: 15px;
  width: 95%;
}
.services .content .serv_boxes .ea_box {
  text-align: center;
  gap: 10px;
  width: 48%;
}
.services .content .serv_boxes .ea_box img {
  max-width: 400px;
  width: 100%;
}
.services .content .serv_boxes .ea_box .tit_prrf {
  font-weight: 700;
  text-align: justify;
  margin-bottom: 5px;
}
.services .content .serv_boxes .ea_box .txt_prrf {
  text-align: justify;
  margin-bottom: 10px;
}
.services .content .serv_boxes .ea_box li {
  margin-bottom: 5px;
  margin-left: 15px;
  text-align: justify;
}
.services .content .serv_boxes .ea_box ol {
  margin-left: 15px;
}
.services .content .serv_boxes .ea_box ol li {
  padding-left: 10px;
}
@media screen and (max-width: 800px) {
  .services .content .serv_boxes .ea_box {
    width: 100%;
  }
}
.services .content .serv_boxes .fin_tra {
  margin-top: 40px;
}

.zoom_prod {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  display: none;
}
.zoom_prod .zoom_box {
  left: 50%;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}
.zoom_prod .zoom_box .prod_one {
  color: #fff;
  position: relative;
  text-align: center;
  width: 90%;
}
.zoom_prod .zoom_box .prod_one .prod_one {
  height: 100vh;
  position: absolute;
}
.zoom_prod .zoom_box .prod_one .prod_one img {
  width: 100%;
}
.zoom_prod .zoom_box .close_zoom {
  background-color: #bc0202;
  outline: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  height: 30px;
  padding: 4px 10px 10px 10px;
  position: relative;
  left: calc(50% - 45px);
  right: 50%;
  width: 40px;
}
.zoom_prod .zoom_box .close_zoom:hover {
  background-color: #ff2929;
}

.work .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.work .content .workBx {
  background-color: #fff;
  padding: 10px;
  width: 250px;
}
.work .content .workBx img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  max-width: 100%;
}
.work .content .workBx .precio {
  font-size: 1.25rem;
  text-align: center;
}
.work .content .workBx .precio .mon {
  font-size: 0.5;
  position: relative;
  top: -5px;
}
.work .content .workBx p {
  border-radius: 15px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1150px) {
  .work .content .workBx {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .work .content .workBx {
    width: 250px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .work .content .workBx {
    width: 400px;
  }
}
@media (min-width: 320px) and (max-width: 479px) {
  .work .content .workBx {
    width: 100%;
  }
}

.testimonial .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.testimonial .content .testimonialBx {
  max-width: calc(50% - 40px);
  padding: 20px;
  margin: 20px;
  background: #2e5ea9;
}
.testimonial .content .testimonialBx p {
  color: #fff;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
}
.testimonial .content .testimonialBx h3 {
  margin-top: 40px;
  text-align: end;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1em;
}
.testimonial .content .testimonialBx h3 span {
  font-size: 14px;
  font-weight: 400;
}

.contact {
  background-color: #2e5ea9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .contact_Inside {
  padding: 10px;
  width: 100%;
}
.contact .contact_Inside .formBx {
  margin: 0 auto;
  margin-bottom: 20px;
}
.contact .contact_Inside .formBx form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .contact_Inside .formBx form h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact .contact_Inside .formBx form input {
  background: #e5e5ff;
  border: none;
  font-size: 16px;
  margin-bottom: 20px;
  outline: 1px solid #e5e5ff;
  outline: none;
  padding: 15px;
  resize: none;
  min-width: 100%;
}
.contact .contact_Inside .formBx form input::-webkit-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form input::-moz-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form input:-ms-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form input::-ms-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form input::placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form textarea {
  background: #e5e5ff;
  border: none;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 20px;
  min-height: 200px;
  outline: none;
  padding: 15px;
  resize: none;
}
.contact .contact_Inside .formBx form textarea::-webkit-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form textarea::-moz-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form textarea:-ms-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form textarea::-ms-input-placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form textarea::placeholder {
  font-style: italic;
  color: #555;
}
.contact .contact_Inside .formBx form .send {
  background: #2196f3;
  cursor: pointer;
  margin: 0 auto;
  max-width: 100px;
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .contact .contact_Inside .formBx {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .contact .contact_Inside .formBx {
    max-width: 860px;
  }
}
.contact .contact_Inside .contactInfo {
  margin: 0 auto;
  width: 100%;
}
.contact .contact_Inside .contactInfo h3 {
  color: #fff !important;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact .contact_Inside .contactInfo .contactInfoBx {
  position: relative;
}
.contact .contact_Inside .contactInfo .contactInfoBx .box {
  position: relative;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .contact_Inside .contactInfo .contactInfoBx .box .icon {
  min-width: 40px;
  padding-top: 4px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 24px;
}
.contact .contact_Inside .contactInfo .contactInfoBx .box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 300;
}
.contact .contact_Inside .contactInfo .contactInfoBx .box .text h3 {
  font-weight: 500;
  color: #00bcd4;
  margin-bottom: 0;
}
.contact .contact_Inside .contactInfo .contactInfoBx .box .text p {
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .contact .contact_Inside .contactInfo {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .contact .contact_Inside .contactInfo {
    max-width: 860px;
  }
}
@media screen and (max-width: 901px) {
  .contact {
    margin: 0;
  }
}

.formBx {
  min-width: 60%;
}
.formBx form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.formBx form h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.formBx form input {
  margin-bottom: 20px;
  padding: 15px;
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
  background: #222;
  resize: none;
  color: #fff;
}
.formBx form input::-webkit-input-placeholder {
  color: #999;
}
.formBx form input::-moz-placeholder {
  color: #999;
}
.formBx form input:-ms-input-placeholder {
  color: #999;
}
.formBx form input::-ms-input-placeholder {
  color: #999;
}
.formBx form input::placeholder {
  color: #999;
}
.formBx form textarea {
  margin-bottom: 20px;
  padding: 15px;
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
  background: #222;
  resize: none;
  color: #fff;
  min-height: 200px;
}
.formBx form textarea::-webkit-input-placeholder {
  color: #999;
}
.formBx form textarea::-moz-placeholder {
  color: #999;
}
.formBx form textarea:-ms-input-placeholder {
  color: #999;
}
.formBx form textarea::-ms-input-placeholder {
  color: #999;
}
.formBx form textarea::placeholder {
  color: #999;
}
.formBx form .send {
  border-color: green;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  max-width: 100px;
  letter-spacing: 2px;
}

.contactInfoBx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.contactInfoBx .box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contactInfoBx .box .icon {
  min-width: 40px;
  padding-top: 4px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 24px;
}
.contactInfoBx .box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 300;
}
.contactInfoBx .box .text h3 {
  font-weight: 500;
  color: #00bcd4;
  margin-bottom: 0;
}
.contactInfoBx .box .text p {
  font-weight: 300;
  color: #fff;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  text-shadow: 2px 2px 2px #ffffff;
  margin-bottom: 120px;
  gap: 30px;
}
.container .month-section {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: -15px;
  padding: 15px;
}
.container .month-section .month-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #125fd3;
  text-align: center;
}
.container .month-section table {
  border-collapse: collapse;
  font-size: 1rem;
}
.container .month-section table th,
.container .month-section table td {
  padding: 8px;
  text-align: center;
}
.container .month-section table th {
  border: 2px solid #2196f3;
  background: #2196f3;
  color: white;
}
@media screen and (max-width: 1100px) {
  .container .month-section table {
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 1100px) {
  .container .month-section {
    width: 90%;
  }
}
.container .confirmacion,
.container .answer {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.container .confirmacion .conf,
.container .answer .conf {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.91);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.91);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px #000;
          box-shadow: 0px 0px 10px #000;
  outline: 1px solid #6b6b6b;
  display: inline-block;
  outline: 1px solid #6b6b6b;
  position: absolute;
  padding: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.container .confirmacion .conf .btn,
.container .answer .conf .btn {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.container .confirmacion .conf .btn_no,
.container .answer .conf .btn_no {
  background-color: #b41d1d;
}
.container .confirmacion .conf .btn_no:hover,
.container .answer .conf .btn_no:hover {
  background-color: #eb2f2f;
}
.container .confirmacion .conf .btn_si,
.container .answer .conf .btn_si {
  background-color: #16a032;
}
.container .confirmacion .conf .btn_si:hover,
.container .answer .conf .btn_si:hover {
  background-color: #1bc03c;
}
@media (max-width: 1100px) {
  .container {
    font-size: 1.25rem;
  }
}
@media (min-width: 1101px) {
  .container {
    padding-top: 60px;
  }
}

.cons_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  margin-bottom: 120px;
  position: relative;
  margin-top: -250px;
}
.cons_body .cons_box {
  background-color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid #6b6b6b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  text-shadow: none;
  width: 95%;
}
.cons_body .cons_box .su_cita {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #6b6b6b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cons_body .cons_box .su_cita .cons_fecha,
.cons_body .cons_box .su_cita .cons_servicio,
.cons_body .cons_box .su_cita .cons_estado {
  padding: 6px 12px;
}
.cons_body .cons_box .su_cita .cons_fecha {
  text-align: center;
  width: 175px;
}
.cons_body .cons_box .su_cita .cons_servicio {
  text-align: left;
  width: calc(100% - 220px);
}
.cons_body .titulos {
  background-color: #2196f3;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 12px;
  text-shadow: none;
}
.cons_body .titulos .cons_fecha {
  padding-left: 0;
  text-align: center;
  width: 150px;
}
.cons_body .titulos .cons_servicio {
  margin-left: 10px;
}
.cons_body .titulos .cons_estado {
  width: 70px;
}
.cons_body .cont {
  color: #333;
}
.cons_body .cont .su_cita:hover {
  background-color: rgba(33, 150, 243, 0.3);
  cursor: pointer;
}
.cons_body .cont .su_cita .cons_servicio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: calc(100% - 200px);
}
.cons_body .cont .su_cita .cons_estado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cons_body .cont .su_cita .cons_estado .stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cons_body .cont .su_cita .cons_estado .stat img {
  width: 30px;
}
.cons_body .cont .el_servicio {
  display: none;
  font-size: 1.1rem;
  text-align: justify;
  padding: 8px 12px;
}
@media (max-width: 1100px) {
  .cons_body {
    margin-top: -220px;
  }
}

.reserve_su,
.tu_consulta {
  margin: 0;
  margin-top: -80px;
  margin-bottom: -145px;
  text-align: center;
  text-shadow: 0 0 5px #fff;
  position: absolute;
  top: 190px;
  width: 100%;
  z-index: 999999;
}
@media (max-width: 1100px) {
  .reserve_su,
  .tu_consulta {
    font-size: 1.25rem;
  }
}

.reserve_su {
  top: 180px;
}
@media (min-width: 1100px) {
  .reserve_su {
    top: 170px;
  }
}

.psh-dwn-100 {
  margin-top: 200px;
}
@media (min-width: 1100px) {
  .psh-dwn-100 {
    margin-top: 230px;
  }
}

tr.fecha {
  line-height: 15px;
  outline: 1px solid #a8a8a8;
  padding: 0;
}
tr.fecha select {
  font-size: 1.1rem;
}
tr.fecha:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
button.confirmar {
  background-color: green;
  color: white;
}
button.confirmar:hover {
  background-color: #004d00;
}
button.cancelar {
  background-color: #ce0000;
  color: white;
}
button.cancelar:hover {
  background-color: #9b0000;
}

.copyright {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
}

@media (max-width: 1100px) {
  header {
    padding: 20px 50px;
    z-index: 1000;
  }
  header .menu {
    background: #fff;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    color: #000;
    display: block;
    height: 100vh;
    left: -100%;
    overflow: hidden;
    padding: 99px 50px;
    position: fixed;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    z-index: 999;
  }
  header .menu a {
    color: #000;
  }
  header .menu.active {
    position: fixed;
    top: 95px;
    left: 0;
    padding: 70px 50px;
    width: 100%;
    height: 100vh;
    background: #fff !important;
  }
  header ul li a {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    margin: 10px 0;
    color: #000;
    text-transform: uppercase;
  }
  header ul li .usuario {
    background-color: rgba(240, 32, 32, 0.3);
  }
  header.sticky {
    z-index: 1000;
  }
  header.sticky ul li a {
    color: #000;
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url(../img/menu.png);
    background-position: center;
    background-repeat: no-repeat;
  }
  .toggle.active {
    background: url(../img/close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
  }
  section {
    padding: 100px 50px;
  }
  .banner {
    padding: 150px 50px 100px;
  }
  .banner h2 {
    font-size: 1.5rem;
  }
  .banner h3 {
    font-size: 1em;
  }
  .btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
  .heading {
    margin-top: 35px;
  }
  .heading h2 {
    font-size: 24px;
  }
  .heading p {
    text-shadow: none;
  }
  .conetntBx h3 {
    font-size: 20px;
  }
  .w50 {
    margin-bottom: 20px;
  }
  .w50:last-child {
    margin-bottom: 0px;
  }
  .services .content .servicesBx {
    margin: 10px;
    margin-bottom: 30px;
  }
  .work .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .work .content .workBx {
    width: 280px;
    padding: 10px;
  }
  .testimonial .content .testimonialBx {
    max-width: calc(100% - 40px);
    padding: 20px;
    margin: 10px;
    background: #125fd3;
  }
  .testimonial .content .testimonialBx h3 {
    margin-top: 20px;
  }
  .contactInfo {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  header {
    padding: 20px 20px;
  }
  header.sticky {
    padding: 20px 20px;
  }
  section {
    padding: 100px 20px;
  }
  .banner {
    padding: 150px 20px 100px;
  }
}
.psh-dwn-20 {
  margin-top: -40px;
}

.bg-white {
  background-color: #fff !important;
}