.content {
  z-index: 5;
  animation: fadein 1500ms;
  display: grid;
  grid-template-rows: auto;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .content {
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
#check-menu:checked ~ .content {
  height: 100vh;
  overflow: hidden;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content .main {
  position: relative;
}
.content .main img {
  display: none;
}

.content .main img.background {
  background-position: center;
  object-fit: fill;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 720px) {
  .content .main img.background.phone {
    display: block;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .main img.background.tablet {
    display: block;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .main img.background.laptop {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .content .main img.background.desktop {
    display: block;
  }
}

.content .main .logo-mobile {
  display: none;
  position: absolute;
  top: 0rem;
  right: 0px;
}
@media only screen and (max-width: 720px) {
  .content .main .logo-mobile {
    display: grid;
    grid-template-columns: auto;
  }
}
.content .main .logo-mobile img {
  display: block;
  position: relative;
}
.content .main .logo-mobile img.logo-mobile {
  width: 172px;
  height: 97px;
}
.content .main .logo-mobile img.logo-luren {
  margin-left: auto;
  width: 80px;
  grid-row: 2;
  background: rgba(0, 0, 0, 0.4);
}

.content .main .contact-us {
  all: unset;
  display: none;
  position: absolute;
  bottom: 0px;
  left: 0px;
  grid-template-columns: 1.5rem auto;
  padding: 0.3rem 0.2rem;
  background: rgba(113, 113, 113, 0.5);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 1.5rem;
  align-items: center;
  padding: 0.25rem;
}
@media only screen and (max-width: 720px) {
  .content .main .contact-us {
    display: grid;
  }
}
.content .main .contact-us svg {
  fill: #FFF;
  width: 15px;
  height: 18px;
  margin-top: 0.2rem;
  display: block;
}
.content .main .contact-us a,
.content .main .contact-us a:visited {
  text-decoration: none;
}
.content .main .contact-us span {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-top: 0.2rem;
}

.content .main .android-app {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.125rem 0.25rem;
}
@media only screen and (max-width: 720px) {
  .content .main .android-app {
    display: grid;
  }
}
.content .main .android-app a {
  padding: 0;
}
.content .main .android-app img {
  display: inline;
  width: 100px;
}

.content .main .cta-button.mobile {
  display: none;
  position: absolute;
  bottom: 3rem;
  left: 0;
  text-align: center;
  margin: 0.2rem;
  background: #2C3E50;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}
@media only screen and (max-width: 720px) {
  .content .main .cta-button.mobile {
    display: block;
  }
}
.content .main .cta-button.mobile span {
  all: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 1.125rem;
  font-family: Raleway;
  font-weight: bold;
}
.content .main .cta-button.appointments {
  display: none;
  position: absolute;
  bottom: 3rem;
  right: 0;
  text-align: center;
  margin: 0.2rem;
  background: #2C3E50;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}
@media only screen and (max-width: 720px) {
  .content .main .cta-button.appointments {
    display: block;
  }
}
.content .main .cta-button.appointments span {
  all: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 1.125rem;
  font-family: Raleway;
  font-weight: bold;
}

.content .main .speciality-title {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 2;
  text-align: center;
  height: 5.5rem;
  width: 44rem;
}
@media only screen and (max-width: 720px) {
  .content .main .speciality-title {
    height: 2.5rem;
    width: 19rem;
    top: 0.5rem;
    right: 0.5rem;
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .main .speciality-title {
    height: 3.5rem;
    width: 29rem;
    bottom: 1rem;
    left: 1rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .main .speciality-title {
    height: 3.8rem;
    width: 32rem;
    bottom: 1rem;
    left: 1rem;
  }
}
@media only screen and (min-width: 1440px) {
  .content .main .speciality-title {
    height: 5.5rem;
    width: 44rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.content .main .speciality-title span {
  font-family: "Titillium Web";
  font-weight: 900;
  color: #FFF;
  -webkit-text-fill-color: #FFF;
  font-size: 3.4rem;
}
@media only screen and (max-width: 720px) {
  .content .main .speciality-title span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .main .speciality-title span {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .main .speciality-title span {
    font-size: 2.5rem;
  }
}

.content .section-list {
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .content .section-list {
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list {
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1440px) {
  .content .section-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.content .section-list .section {
  height: 100%;
  background-size: cover;
}
.content .section-list .section .section-overlay {
  height: 100%;
}
.content .section-list .section .section-overlay .dr-niro {
  display: grid;
  grid-template-columns: 11rem auto;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .dr-niro {
    grid-template-columns: 12rem auto;
  }
}
.content .section-list .section .section-overlay .dr-niro img.dr-niro {
  width: 11rem;
  height: 11rem;
  border-radius: 5px;
  margin-left: 0.3rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .dr-niro img.dr-niro {
    width: 160px;
    height: 162px;
    margin-left: 0.5rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .dr-niro img.dr-niro {
    width: 160px;
    height: 162px;
    margin-left: 0.5rem;
  }
}
.content .section-list .section .section-overlay .bio {
  align-self: center;
  display: grid;
  grid-template-rows: 2rem auto 4rem;
  height: 100%;
}
@media only screen and (max-width: 720px) {
  .content .section-list .section .section-overlay .bio {
    grid-template-rows: 2rem auto 2rem;
    padding: 0.5rem 0;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio {
    grid-template-rows: 2rem auto 2.5rem;
    padding: 0.5rem 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio {
    grid-template-rows: 2rem auto 2.5rem;
  }
}
.content .section-list .section .section-overlay .bio .title {
  margin: 0 auto;
}
.content .section-list .section .section-overlay .bio .title h4 {
  margin: 0.3rem;
  line-height: normal;
  font-size: 1.2rem;
  font-family: Raleway;
  font-weight: bold;
  color: #2C3E50;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .title h4 {
    font-size: 1.5rem;
  }
}
.content .section-list .section .section-overlay .bio .title h4.title-1 {
  display: block;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .title h4.title-1 {
    display: none;
  }
}
.content .section-list .section .section-overlay .bio .title h4.title-2 {
  display: none;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .title h4.title-2 {
    display: block;
  }
}
.content .section-list .section .section-overlay .bio p {
  font-size: 1.125rem;
  color: #FFF;
  padding: 0.3rem;
  font-family: Raleway;
  margin: 0 0.5rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio p {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio p {
    font-size: 1rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list {
  display: grid;
  grid-template-columns: auto;
  margin: 0 auto;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list {
    margin: 0.5rem 1rem;
    padding: 0.5rem 0;
  }
}
.content .section-list .section .section-overlay .bio .item-list.contact-us {
  grid-row-gap: 0.5rem;
}
.content .section-list .section .section-overlay .bio .item-list .item {
  display: grid;
  grid-template-columns: 1.2rem auto;
  grid-column-gap: 0.5rem;
  align-items: center;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item {
    grid-template-columns: 1.2rem auto;
  }
}
.content .section-list .section .section-overlay .bio .item-list .item span {
  color: #FFF;
  font-family: Raleway;
  display: block;
  margin: 0 0.2rem;
  font-size: 1rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item span {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .item-list .item span {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list .item.contact-item {
  grid-template-columns: 2.1rem auto;
}
.content .section-list .section .section-overlay .bio .item-list .item.contact-item svg {
  fill: #FFF;
}
.content .section-list .section .section-overlay .bio .item-list .item.contact-item span {
  font-family: Questrial;
}
.content .section-list .section .section-overlay .bio .item-list .item.contact-item a, .content .section-list .section .section-overlay .bio .item-list .item.contact-item a.visited {
  text-decoration: none;
}
.content .section-list .section .section-overlay .bio .item-list .item .contact-info {
  display: block;
  margin: 0 auto;
}
.content .section-list .section .section-overlay .bio .item-list .item .contact-info.facebook {
  width: 1.75rem;
  height: 1.75rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.facebook {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.facebook {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list .item .contact-info.phone {
  width: 2.125rem;
  height: 2.125rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.phone {
    width: 1.375rem;
    height: 1.375rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.phone {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list .item .contact-info.whatsapp {
  width: 2.125rem;
  height: 2.125rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.whatsapp {
    width: 1.375rem;
    height: 1.375rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.whatsapp {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list .item .contact-info.location {
  width: 1.1875rem;
  height: 1.375rem;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.location {
    width: 0.81rem;
    height: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .item-list .item .contact-info.location {
    width: 0.81rem;
    height: 1.25rem;
  }
}
.content .section-list .section .section-overlay .bio .item-list.contact-us {
  width: 90%;
}
.content .section-list .section .section-overlay .bio .cta-section a {
  align-self: end;
}
.content .section-list .section .section-overlay .bio .cta-section a .cta-button {
  all: unset;
  align-self: end;
  text-align: center;
  margin: 0.5rem;
  background: #2C3E50;
  padding: 0.7rem 1.5rem;
  float: right;
  border-radius: 5px;
  transition: background-color 500ms linear;
}
@media only screen and (max-width: 720px) {
  .content .section-list .section .section-overlay .bio .cta-section a .cta-button {
    margin: 0.2rem 0.3rem;
    padding: 0.2rem 0.6rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section .section-overlay .bio .cta-section a .cta-button {
    margin: 0.2rem 0.6rem;
    padding: 0.2rem 0.8rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .cta-section a .cta-button {
    margin: 0.2rem;
    padding: 0.3rem 1rem;
  }
}
.content .section-list .section .section-overlay .bio .cta-section a .cta-button span {
  all: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 20px;
}
@media only screen and (max-width: 720px) {
  .content .section-list .section .section-overlay .bio .cta-section a .cta-button span {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .section-list .section .section-overlay .bio .cta-section a .cta-button span {
    font-size: 0.95rem;
  }
}
.content .section-list .section .section-overlay-1 {
  background: rgba(47, 188, 218, 0.85);
}
.content .section-list .section .section-overlay-2 {
  background: rgba(48, 136, 186, 0.85);
}
.content .section-list .section .section-overlay-3 {
  background: rgba(94, 92, 158, 0.85);
}
.content .section-list .section-1 {
  background-image: url(../assets/images/section-1.jpg);
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .section-list .section-1 {
    grid-row: 1;
  }
}
.content .section-list .section-2 {
  background-image: url(../assets/images/section-2.jpg);
}
.content .section-list .section-3 {
  background-image: url(../assets/images/section-3.jpg);
}

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