.content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  animation: fadein 1500ms;
}
.content .logo-consultorio {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  display: none;
}
@media only screen and (max-width: 720px) {
  .content .logo-consultorio {
    display: block;
  }
}
.content .logo-consultorio img.logo-mobile {
  width: 8rem;
  height: 3.41rem;
  display: block;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes notefadeaway {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  background: rgba(255, 255, 255, 0);
}

.content .carrousel {
  height: 80vh;
  width: 100%;
  margin: 2rem auto;
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .content .carrousel {
    height: 90vh;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel {
    height: 85vh;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel {
    height: 75vh;
  }
}
@media only screen and (max-width: 720px) {
  .content .carrousel {
    margin: 0 auto;
    grid-template-rows: 3rem auto 7rem;
    padding-top: 5rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel {
    grid-template-rows: 3rem auto 6rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel {
    grid-template-columns: 1fr 2.5fr 1fr;
  }
}
@media only screen and (min-width: 1440px) {
  .content .carrousel {
    grid-template-columns: 2fr 3fr 2fr;
  }
}
.content .carrousel .thumbnail-section {
  height: 80%;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section {
    height: 100%;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .thumbnail-section {
    height: 100%;
  }
}
.content .carrousel .thumbnail-section .thumbnail-list {
  display: flex;
  height: 20rem;
  width: 100%;
  padding: 0 0.5rem;
  justify-content: space-evenly;
  align-items: center;
  grid-column-gap: 1rem;
}
.content .carrousel .thumbnail-section .thumbnail-list.left {
  background: rgba(0, 179, 214, 0.8);
}
.content .carrousel .thumbnail-section .thumbnail-list.right {
  background: rgba(94, 92, 157, 0.7);
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section .thumbnail-list {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .thumbnail-section .thumbnail-list {
    display: none;
  }
}
.content .carrousel .thumbnail-section .thumbnail-list .thumbnail {
  padding: 0.2rem 0.5rem;
  background: rgba(36, 26, 25, 0.25);
  border-radius: 5px;
  height: auto;
  max-height: 80%;
  min-width: 0;
}
.content .carrousel .thumbnail-section .thumbnail-list .thumbnail img.thumbnail {
  display: grid;
  margin: 0.5rem auto;
}
.content .carrousel .thumbnail-section .thumbnail-list .thumbnail.hidden-on-laptop {
  display: block;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .thumbnail-section .thumbnail-list .thumbnail.hidden-on-laptop {
    display: none;
  }
}
.content .carrousel .thumbnail-section.left {
  background: rgba(0, 179, 214, 0.7);
}
.content .carrousel .thumbnail-section.left .photo__title {
  display: none;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section.left .photo__title {
    display: block;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .thumbnail-section.left .photo__title {
    display: block;
  }
}
.content .carrousel .thumbnail-section.left .photo__title span {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section.left .photo__title span {
    font-size: 1.25rem;
  }
}
.content .carrousel .thumbnail-section.right {
  background: rgba(94, 92, 158, 0.7);
}
.content .carrousel .thumbnail-section.right .photo__description {
  display: none;
  margin: 0 auto;
  border-radius: 10px;
  padding: 1rem;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section.right .photo__description {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .thumbnail-section.right .photo__description {
    display: block;
  }
}
.content .carrousel .thumbnail-section.right .photo__description p {
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .thumbnail-section.right .photo__description p {
    font-size: 1.125rem;
  }
}
.content .carrousel .photo-section {
  background: #3088BA;
  box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section {
    border-radius: 0;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section {
    border-radius: 0;
  }
}
.content .carrousel .photo-section .note {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translate(-50%, 0);
  animation: notefadeaway 7000ms;
  opacity: 0;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .note {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .note {
    display: none;
  }
}
.content .carrousel .photo-section .overlay {
  position: absolute;
  background: rgba(0, 31, 70, 0.3);
  width: 100%;
  height: 10rem;
  bottom: 50%;
  transform: translate(0, 50%);
  left: 0;
  right: 0;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .overlay {
    height: 6rem;
  }
}
.content .carrousel .photo-section .arrow {
  position: absolute;
  bottom: 50%;
  transform: translate(0, 50%);
}
.content .carrousel .photo-section .arrow svg.arrow {
  stroke: #FFF;
  filter: drop-shadow(0px 0px 8px black);
  margin: 0 1rem;
  transition: stroke 200ms ease-in-out;
  width: 30px;
  height: 100px;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .arrow svg.arrow {
    width: 15px;
    height: 50px;
  }
}
.content .carrousel .photo-section .arrow:hover svg.arrow {
  stroke: #2C3E50;
  stroke-width: 4;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
  cursor: pointer;
  transition: stroke 200ms ease-in-out;
}
.content .carrousel .photo-section .arrow.left {
  left: -5px;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .arrow.left {
    left: -2.5px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .arrow.left {
    left: 0px;
  }
}
.content .carrousel .photo-section .arrow.right {
  right: -5px;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .arrow.right {
    right: -2.5px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .arrow.right {
    right: 2.5px;
  }
}
.content .carrousel .photo-section .photo-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 37.5vw;
  max-height: 30vh;
  margin: 0 auto;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .photo-container {
    max-width: 82vw;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .photo-container {
    max-width: 82vw;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .photo-section .photo-container {
    max-width: 48vw;
  }
}
.content .carrousel .photo-section .photo-container .photo {
  display: block;
  width: auto;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-rows: auto;
  align-items: center;
  height: 100%;
}
.content .carrousel .photo-section .photo-container .photo div.expand {
  position: absolute;
  background: rgba(36, 26, 25, 0.25);
  padding: 0.5rem;
  top: 0;
  right: 0.5rem;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .photo-container .photo div.expand {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .photo-container .photo div.expand {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .photo-section .photo-container .photo div.expand {
    display: none;
  }
}
.content .carrousel .photo-section .photo-container .photo div.expand svg.expand {
  stroke: #DBD8D8;
  display: block;
  stroke-width: 4px;
  stroke-linecap: round;
}
.content .carrousel .photo-section .photo-container .photo div.expand:hover svg.expand {
  transform: scale(1.1);
}
.content .carrousel .photo-section .photo-container .photo:hover div.expand {
  opacity: 1;
}
.content .carrousel .photo-section .photo-container .photo .photo__title {
  position: absolute;
  left: 50%;
  top: -2.5rem;
  transform: translate(-50%, 0);
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .photo-container .photo .photo__title {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .photo-container .photo .photo__title {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .photo-section .photo-container .photo .photo__title {
    top: -1.8rem;
  }
}
.content .carrousel .photo-section .photo-container .photo .photo__title span.photo-title {
  color: #FFF;
  -webkit-text-fill-color: #FFF;
  text-transform: uppercase;
  font-family: "Raleway";
  font-size: 1.5rem;
  white-space: nowrap;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .photo-container .photo .photo__title span.photo-title {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .photo-section .photo-container .photo .photo__title span.photo-title {
    font-size: 1.125rem;
  }
}
.content .carrousel .photo-section .photo-container .photo img.main,
.content .carrousel .photo-section .photo-container .photo video.main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  max-height: 70vh;
}
@media only screen and (max-width: 720px) {
  .content .carrousel .photo-section .photo-container .photo img.main,
.content .carrousel .photo-section .photo-container .photo video.main {
    max-height: 65vh;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .carrousel .photo-section .photo-container .photo img.main,
.content .carrousel .photo-section .photo-container .photo video.main {
    max-height: 68vh;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .carrousel .photo-section .photo-container .photo img.main,
.content .carrousel .photo-section .photo-container .photo video.main {
    max-height: 65vh;
  }
}

.photo-modal {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(36, 26, 25, 0.85);
  z-index: 10;
  transition: all 1s;
}
@media only screen and (max-width: 720px) {
  .photo-modal {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .photo-modal {
    display: none;
  }
}
.photo-modal:target {
  opacity: 1;
  visibility: visible;
  transition: all 1s;
}
.photo-modal .modal-photo-container {
  top: 50%;
  right: 50%;
  height: 90%;
  transform: translate(50%, -50%);
  background: #FFF;
  position: absolute;
  display: grid;
  grid-auto-columns: 25rem 70rem;
  align-items: center;
  font-family: "Raleway";
  padding: 1rem;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .photo-modal .modal-photo-container {
    grid-auto-columns: 20rem 50rem;
  }
}
.photo-modal .modal-photo-container .photo-title {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  padding: 1rem;
  align-self: end;
  margin-bottom: 0.5rem;
}
.photo-modal .modal-photo-container .photo-title span {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.photo-modal .modal-photo-container .photo-description {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 0.5rem;
  min-width: 20rem;
}
.photo-modal .modal-photo-container .photo-description p {
  padding: 0 1rem 0 0;
  font-size: 20px;
  text-align: justify;
}
.photo-modal .modal-photo-container .full-size-photo {
  background: rgba(0, 31, 70, 0.3);
  grid-column: 2;
  grid-row: 1/span 2;
  max-height: 80vh;
  max-width: 75vw;
  border-radius: 10px;
}
.photo-modal .modal-photo-container .full-size-photo img.full-size {
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-height: 80vh;
}
.photo-modal .modal-photo-container .full-size-photo a.close {
  top: 1.5rem;
  left: 1rem;
  opacity: 0;
}
.photo-modal .modal-photo-container .full-size-photo a.close svg.close {
  stroke: #2C3E50;
  width: 1.875rem;
  height: 1.875rem;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.6));
  stroke-linecap: round;
  stroke-width: 4;
  transition: scale 300ms ease-out;
}
.photo-modal .modal-photo-container .full-size-photo a.close:link, .photo-modal .modal-photo-container .full-size-photo a.close:visited {
  text-decoration: none;
  position: absolute;
}
.photo-modal .modal-photo-container .full-size-photo a.close:hover svg.close {
  transform: scale(1.1);
}
.photo-modal .modal-photo-container:hover a.close {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}

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