@charset "UTF-8";
/*****************************************/
/*****************************************/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  font-size: 1.8em;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  line-height: 1.2em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 3.2em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 1.872em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.328em;
}

h6 {
  font-size: 1.072em;
}

.text-justify {
  text-align: justify;
  text-justify: inter-character;
}

/*----------------------------------*/
/* Colors */
/*----------------------------------*/
.site-color-white {
  color: #fff !important;
}

.site-color-black {
  color: #000 !important;
}

.site-color-muted-clear {
  color: #f6f5f4 !important;
}

.site-color-muted {
  color: #95999c !important;
}

.site-color-muted-contrast {
  color: #6c757d !important;
}

.site-color-principal {
  color: #076B70 !important;
}

.site-color-secundario {
  color: #BEFCFF !important;
}

.site-color-contraste {
  color: #FF8A44 !important;
}

.site-color-yellow {
  color: #fff200 !important;
}

/*----------------------------------*/
/* backgrounds */
/*----------------------------------*/
.back-box-white {
  background-color: #fff !important;
  padding: 5px;
}

.back-box-black {
  background-color: #000 !important;
  padding: 5px;
}

.back-box-muted-clear {
  background-color: #f6f5f4 !important;
  padding: 5px;
}

.back-box-muted {
  background-color: #6c757d !important;
  padding: 5px;
}

.back-box-muted-contrast {
  background-color: #6c757d !important;
  padding: 5px;
}

.back-box-principal {
  background-color: #076B70 !important;
  padding: 5px;
}

.back-box-secundario {
  background-color: #BEFCFF !important;
  padding: 5px;
}

.back-box-contraste {
  background-color: #FF8A44 !important;
  padding: 5px;
}

.text-responsive {
  margin-top: 1.5em;
}
@media (min-width: 1025px) {
  .text-responsive {
    margin-top: 0;
  }
}

.row-spacer {
  content: "";
  height: 6em !important;
}

.row-spacer-mini {
  content: "";
  height: 1em !important;
}

.row-spacer-sm {
  content: "";
  height: 1em !important;
}

.row-spacer-md {
  content: "";
  height: 2em !important;
}

.row-spacer-lg {
  content: "";
  height: 3em !important;
}

.row-spacer-xl {
  content: "";
  height: 4em !important;
}

.row-spacer-xxl {
  content: "";
  height: 6em !important;
}

strong {
  color: #FF8A44;
  font-weight: bold;
  text-decoration-color: #076B70;
  text-decoration-style: dashed;
}

.underlined-text {
  padding-bottom: 2px;
  border-bottom: 2px dotted #076B70;
  display: inline-block;
}

a {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
}
a:link {
  color: #000;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 400000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  overflow: scroll;
}
.popup__close:link, .popup__close:visited {
  color: #6c757d;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
  line-height: 1;
}
.popup__close:hover {
  color: #076B70;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 100%;
  z-index: 500000;
  background-color: #fff;
  box-shadow: 0 2rem 4rem, rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: scroll;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s 0.2s;
}
@media (min-width: 900px) {
  .popup__content {
    display: block;
    width: 95%;
    border-radius: 2px;
    height: initial;
    overflow: hidden;
  }
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
@media (min-width: 900px) {
  .popup__left {
    width: 100%;
    height: 25rem;
    display: block;
    overflow: hidden;
  }
}
.popup__right {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
@media (min-width: 900px) {
  .popup__right {
    width: 100%;
    padding: 4rem;
    display: block;
  }
}
.popup__img {
  display: block;
  width: 100%;
}
@media (min-width: 900px) {
  .popup__img {
    width: 50%;
    float: left;
    height: 100%;
  }
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #f6f5f4;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #f6f5f4;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.responsive-brand {
  position: absolute;
  font-size: 1.6em;
}

.responsive-brand::after {
  content: "RAMÍREZ PEÑA";
  display: block;
  position: relative;
  top: 5px;
  left: 5px;
}
@media (min-width: 900px) {
  .responsive-brand::after {
    content: "RAMÍREZ PEÑA CLÍNICA OFTALMOLÓGICA";
  }
}

/*+++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++*/
.carousel-item {
  height: 75vh;
  background-size: cover;
  background-position: center;
}
.carousel-item-image--1 {
  background-image: linear-gradient(360deg, rgba(0, 160, 169, 0.8), rgba(15, 102, 116, 0.1)), url(/images/doctores/large-head-carousel-01-v1.jpg);
}
.carousel-item-image--2 {
  background-image: linear-gradient(360deg, rgba(0, 160, 169, 0.8), rgba(15, 102, 116, 0.1)), url(/images/doctores/large-head-carousel-02-v1.jpg);
}
.carousel-item-image--3 {
  background-image: linear-gradient(360deg, rgba(0, 160, 169, 0.8), rgba(15, 102, 116, 0.1)), url(/images/doctores/large-head-carousel-03-v1.jpg);
  background-position: right;
}
.carousel-item-image--4 {
  background-image: linear-gradient(360deg, rgba(255, 138, 68, 0.4), rgba(15, 102, 116, 0.1)), url(/images/doctores/serv-carousel-01.jpg);
  background-position: right;
}
.carousel-item-image--5 {
  background-image: linear-gradient(360deg, rgba(255, 138, 68, 0.4), rgba(15, 102, 116, 0.1)), url(/images/doctores/serv-carousel-02.jpg);
  background-position: right;
}
.carousel-item-image--6 {
  background-image: linear-gradient(360deg, rgba(255, 138, 68, 0.4), rgba(15, 102, 116, 0.1)), url(/images/doctores/serv-carousel-03.jpg);
  background-position: right;
}
.carousel-item-image--7 {
  background-image: linear-gradient(360deg, rgba(255, 138, 68, 0.4), rgba(15, 102, 116, 0.1)), url(/images/doctores/serv-carousel-04.jpg);
  background-position: right;
}
.carousel-item-image--8 {
  background-image: linear-gradient(360deg, rgba(255, 138, 68, 0.4), rgba(15, 102, 116, 0.1)), url(/images/doctores/serv-carousel-05.jpg);
  background-position: right;
}

.nav-item > .active {
  color: #FF8A44 !important;
  font-weight: bold;
}

.navbar {
  border-bottom: 1px solid rgba(7, 107, 112, 0.5);
}

/*****************************************/
/*****************************************/
.servicio-box {
  height: 240px;
  width: 100%;
  display: inline-block;
  position: relative;
  top: -5%;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-bottom: 1em;
  transition: all 100ms ease;
  background-color: #f6f5f4;
}
@media (min-width: 600px) {
  .servicio-box {
    margin-bottom: 0;
  }
}
.servicio-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 240px;
  width: 0;
  background-color: transparent;
  border-bottom: 4px solid #FF8A44;
  transition: all 300ms ease;
  text-align: center;
  margin-bottom: 1em;
  border-radius: 16px;
}
.servicio-box:hover {
  transform: translateY(-5px);
}
.servicio-box:hover:after {
  width: 100%;
}
.servicio-box--image {
  clip-path: circle(50% at 50% 50%);
  border-radius: 50%;
}
.servicio-box--image:hover {
  background-color: #4BB543;
  border: 3px solid #FF8A44;
}
.servicio-box--title {
  padding-top: 1em;
  text-align: center;
}
@media (min-width: 900px) {
  .servicio-box--title {
    padding-top: 0;
    text-align: inherit;
  }
}
.servicio-box--button {
  width: 100%;
}
@media (min-width: 600px) {
  .servicio-box--button {
    width: auto;
  }
}

/*****************************************/
/*****************************************/
.doctores {
  height: 400px !important;
  background-image: url(/images/doctores/doctores-ramirez-pena.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-left-radius: 20px;
}
.doctores-content--text {
  transform: skewX(0) translateX(0);
}
@media (min-width: 1025px) {
  .doctores-content--text {
    transform: skewX(-7deg) translateX(-20px);
  }
}
@media (min-width: 900px) {
  .doctores {
    height: 600px !important;
  }
}
@media (min-width: 1025px) {
  .doctores {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topright: 20px;
    border-top-right-radius: 20px;
    height: 600px !important;
    background-position: unset;
  }
}

/*****************************************/
/*****************************************/
.content-box-menu {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 4000000;
  border-radius: 15px;
}

.content-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content-box:target {
  right: 300px;
}
.content-box__close:link, .content-box__close:visited {
  color: #6c757d;
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
  line-height: 1;
}
.content-box__close:hover {
  color: #076B70;
}

.content-box-sucursales {
  z-index: -40000;
  width: 300px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  margin-right: 0.5em;
  padding-left: 0.5em;
}
.content-box-sucursales-title {
  padding-top: 3em;
}
.content-box-sucursales-text {
  font-size: 0.8em;
}

/*****************************************/
/*****************************************/
.footer {
  background-color: #FF8A44;
  color: #fff;
  height: 450px;
}
@media (min-width: 900px) {
  .footer {
    height: 300px;
  }
}
.footer-closing {
  background-color: #076B70;
  height: 80px;
}

/*# sourceMappingURL=main.css.map */
