:root {
  --primary-color: hsl(187, 94%, 32%);
  --primary-dark: hsl(from var(--primary-color) h s calc(l - 10));
  --primary-lighter: hsl(from var(--primary-color) h s calc(l + 10));
  --txt-color: #4b4b4b;
  --neutral: hsl(0 1 77 / 0.65);
  --txt-light-color: #fff;
  --procedure-mask: hsl(from var(--primary-color) h s calc(l + 0) / 0.35);
  --procedure-mask-darker: hsl( from var(--primary-color) h s calc(l + 0) / 0.75 );
}

.hero {
  position: relative;
  height: auto;
  z-index: auto;
  display: flex;
  justify-content: center;
}

.hero.for-home {
  background: url("../../assets/img/Hero.webp") scroll no-repeat center 0 / cover;
  min-height: auto;
}

@media (min-width: 992px) {
  .hero.for-home {
    background: url("../../assets/img/Hero.webp") fixed no-repeat center 0 / 100%;
    min-height: 100dvh;
  }
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.gofrs {
  background: rgba(255, 255, 255, 0.85);
  min-height: 75px;
  border-radius: 25px;
  z-index: 3;
  padding: 1rem;
  transition: all ease 0.35s;
  position: relative;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0);
}

.gofrs-logo-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem 0.5rem 0;
}

@media (min-width: 992px) {
  .gofrs-logo-holder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.gofrs-logo {
  position: relative;
  max-width: 100px;
  height: auto;
  transition: all ease 0.25s;
}

@media (min-width: 992px) {
  .gofrs-logo {
    position: relative;
    max-width: 160px;
    height: auto;
    transition: all ease 0.25s;
  }
}

.title-holder {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding: 1rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 992px) {
  .title-holder {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-left: 2rem;
    max-width: 70%;
    margin-left: 0;
    margin-right: auto;
  }
}

.triggers-holder {
  display: flex;
  position: relative;
  flex-direction: row;
  column-gap: 1rem;
  order: 0;
  clear: both;
}

@media (min-width: 992px) {
  .triggers-holder {
    display: flex;
    position: relative;
    flex-direction: row;
    column-gap: 1rem;
    order: 1;
  }
}

.search-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.nav-trigger {
  display: none;
}

@media (min-width: 992px) {
  .nav-trigger {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
  }
}

.nav-trigger svg, .search-wrap svg {
  font-size: 22px;
}

body {
  font-family: "Poppins";
}

.hero-title {
  color: var(--txt-light-color);
  font-family: "Cormorant";
  font-size: 24px;
  margin-bottom: 1rem;
  text-align: left;
}

@media (min-width: 992px) {
  .hero-title {
    color: var(--txt-light-color);
    font-family: "Cormorant";
    font-size: clamp(20px, 30px, 35px);
    margin-bottom: 1rem;
    text-align: left;
  }
}

.hero-subtitle {
  color: var(--txt-light-color);
  font-size: clamp(16px, 18px, 20px);
  text-transform: capitalize;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.search-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
}

.search-form {
  position: absolute;
  min-width: 350px;
  right: 40px;
  z-index: 2;
  transition: all 0.2s ease 0.2s;
  display: none;
  opacity: 0;
}

.search-field {
  color: var(--primary-color);
  font-size: 16px;
}

.search-form.triggered {
  display: block;
  opacity: 1;
}

.gofrs-nav {
  display: flex;
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  color: var(--txt-color);
  font-size: 16px;
  position: relative;
  text-transform: capitalize;
  right: 5%;
  transition: all ease 0.2s;
}

/* .gofrs-nav.triggered {
  opacity: 1;
  display: flex;
  z-index: 2;
  pointer-events: auto;
  right: 3%;
} */

.nav-link {
  color: var(--txt-color);
}

.nav-link {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all ease 0.25s;
  font-size: 16px;
}

.nav-link.active {
  background: var(--primary-color);
  color: var(--txt-light-color) !important;
  border-radius: 15px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.gofrs-cta {
  height: 50px;
  border-radius: 26px;
  background: var(--primary-color);
  color: var(--txt-light-color);
  font-size: 16px;
  padding: 1rem;
  border: solid 1px var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  width: 100%;
}

@media (min-width: 992px) {
  .gofrs-cta {
    height: 50px;
    border-radius: 26px;
    background: var(--primary-color);
    color: var(--txt-light-color);
    font-size: 16px;
    padding: 1rem;
    border: solid 1px var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    width: auto;
  }
}

.gofrs-cta.secondary {
  background: transparent;
  border: solid 1px #fff;
  width: auto;
  padding: 1rem 2rem;
}

.gofrs-cta:hover {
  background: #fff;
  color: var(--primary-color);
  border: solid 1px var(--primary-color);
}

.gofrs-cta.secondary:hover {
  background: var(--primary-color);
  border: solid 1px var(--primary-color);
  color: var(--txt-light-color);
}

.cta-holder, .blog-post-social-holder {
  position: relative;
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  row-gap: 1rem;
}

@media (min-width: 992px) {
  .cta-holder, .blog-post-social-holder {
    position: relative;
    display: flex;
    margin-top: 1rem;
    flex-direction: row;
  }
}

.button-ico {
  max-width: 40px;
}

.nav-trigger:hover {
  opacity: 1;
  color: var(--primary-color);
  border: solid 1px var(--primary-color);
}

.search-trigger svg {
  font-size: 25px;
}

.search-trigger:hover {
  color: var(--primary-color);
}

.search-trigger:focus, .search-trigger:active, .search-trigger:focus-within, .search-trigger:focus-visible {
  border: none;
  box-shadow: none;
  color: var(--primary-color);
  outline: none;
}

.lg-buttons-wrap {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  z-index: 1;
  position: relative;
  bottom: auto;
  width: 100%;
  margin: 2rem auto 2rem;
}

@media (min-width: 992px) {
  .lg-buttons-wrap {
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    z-index: 1;
    position: absolute;
    bottom: -15%;
    width: 100%;
  }
}

.lg-button {
  position: relative;
  background: var(--primary-color);
  border-radius: 15px;
  flex-basis: 100%;
  transition: all ease 0.25s;
  width: 100%;
}

@media (min-width: 992px) {
  .lg-button {
    position: relative;
    background: var(--primary-color);
    border-radius: 15px;
    flex-basis: calc(70% / 4);
    transition: all ease 0.25s;
    padding: 1rem;
  }
}

.lg-button a {
  height: auto;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  text-decoration: none;
  color: var(--txt-light-color);
  justify-content: flex-end;
  align-items: center;
  min-height: 65px;
  font-family: "Cormorant";
  font-weight: bold;
  font-size: 16px;
  gap: 1lh;
  padding-left: 5.5rem;
}

@media (min-width: 992px) {
  .lg-button a {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    text-decoration: none;
    color: var(--txt-light-color);
    justify-content: center;
    align-items: center;
    min-height: 100px;
    font-family: "Cormorant";
    font-weight: bold;
    font-size: 16px;
    padding: .5lh;
  }
}

@media (min-width: 1200px) {
  .lg-button a {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    text-decoration: none;
    color: var(--txt-light-color);
    justify-content: center;
    align-items: center;
    min-height: 150px;
    font-family: "Cormorant";
    font-weight: bold;
    font-size: 16px;
  }
}

.lg-button-icon {
  max-width: 40px;
  margin-bottom: 0;
  transition: all 0.15s ease 0.2s;
}

@media (min-width: 992px) {
  .lg-button-icon {
    margin-bottom: 2rem;
  }
}

.cust-height {
  height: calc(100% - 110px);
}

.lg-button:hover {
  background: var(--primary-dark);
}

.lg-button:hover .lg-button-icon {
  margin-bottom: 1rem;
}

.section {
  position: relative;
}

.partners-holder {
  display: flex;
  column-gap: 1rem;
  padding: 2rem 0 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}

@media (min-width: 992px) {
  .partners-holder {
    display: flex;
    column-gap: 1rem;
    padding: 8rem 0 4rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    row-gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .partners-holder {
    display: flex;
    column-gap: 1rem;
    padding: 8rem 0 4rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}

.partner-logo {
  position: relative;
  max-width: 175px;
}

.partner-block > a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.gofrs.scrolled {
  position: fixed;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.15);
}

.gofrs.scrolled .gofrs-logo {
  max-width: 100px;
}

.sec-subtitle, .aftertitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: capitalize;
}

.sec-title, .block-title {
  font-family: "Cormorant";
  font-weight: bold;
  font-size: clamp(20px, 40px, 40px);
  width: fit-content;
  max-width: 90%;
  margin-top: 0.5rem;
  text-transform: capitalize;
  color: var(--txt-color);
}

.sec-p {
  font-size: 16px;
  margin-top: 1rem;
  font-weight: lighter;
  font-family: "Poppins";
  color: var(--txt-color);
  position: relative;
}

.txt-block {
  padding: 1rem;
}

@media (min-width: 992px) {
  .txt-block {
    padding: 1rem;
    padding-left: 2rem;
  }
}

.for-welcome, .for-philosophy, .for-procedures, .for-surgeons, .for-testimonials, .for-social-media {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 992px) {
  .for-welcome, .for-philosophy, .for-procedures, .for-surgeons, .for-testimonials, .for-social-media {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
  }
}

.section:has( .for-welcome, .for-philosophy, .for-procedures, .for-surgeons, .for-testimonials, .for-social-media, .for-locations ):after {
  content: attr(data-content);
  position: absolute;
  left: 10%;
  top: -5%;
  width: auto;
  height: auto;
  font-weight: bold;
  font-size: 128px;
  color: hsl(0 1 49 / 0.085);
  font-family: "Poppins";
  text-transform: uppercase;
  z-index: -1;
  display: none;
}

@media (min-width: 992px) {
  .section:has( .for-welcome, .for-philosophy, .for-procedures, .for-surgeons, .for-testimonials, .for-social-media, .for-locations ):after {
    display: block;
  }
}

.section:has(.for-philosophy):after {
  left: auto;
  right: 10%;
  top: -10%;
}

.section:has(.for-testimonials):after {
  left: auto;
  right: 5%;
}

.section:has(.for-locations):after {
  top: -12%;
  left: 14%;
}

.sec-image {
  max-width: 90%;
  width: 500px;
}

.gofrs-cta.for-sec {
  color: var(--primary-color);
  background: transparent;
  max-width: 100%;
  bottom: 0;
  top: auto;
  margin-top: 2rem;
  width: 100%;
  padding: 1rem 2rem;
}

@media (min-width: 992px) {
  .gofrs-cta.for-sec {
    color: var(--primary-color);
    background: transparent;
    max-width: 250px;
    bottom: 0;
    top: auto;
    margin-top: 2rem;
    width: max-content;
    padding: 1rem 2rem;
  }
}

.gofrs-cta.for-sec:hover {
  color: var(--txt-light-color);
  background: var(--primary-color);
}

.img-block, .video-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.procedure-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  overflow: clip;
  z-index: 0;
  transition: all ease 0.35s;
  flex-shrink: 1;
  max-width: 100%;
}

@media (min-width: 992px) {
  .procedure-holder {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: clip;
    z-index: 0;
    transition: all ease 0.35s;
    flex-shrink: 2;
    max-width: 20%;
  }
}

.procedures-gallery, .before-after-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
  row-gap: 0.5rem;
}

@media (min-width: 992px) {
  .procedures-gallery, .before-after-gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
  }
}

.procedure-wrap {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
  text-decoration: none;
  color: var(--txt-light-color);
  padding: 1rem;
}

.procedure-img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
  height: 100%;
  transition: all ease-out 0.2s;
  transform: scale(1);
}

.procedure-link {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px rgba(255, 255, 255, 1);
  color: var(--txt-light-color);
  font-size: 26px;
  bottom: 1rem;
  right: 1rem;
  transition: all ease-in 0.25s;
}

.procedure-holder:after, .procedures-block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--procedure-mask);
  top: 0;
  z-index: 0;
  transition: all 0.25s ease-in;
}

.procedure-holder:hover {
  flex-grow: 2;
  flex-shrink: 0;
  max-width: 100%;
}

@media (min-width: 992px) {
  .procedure-holder:hover {
    flex-grow: 2;
    flex-shrink: 1;
    max-width: 60%;
  }
}

.procedure-holder:hover:after, .procedures-block:hover:after {
  background: var(--procedure-mask-darker);
}

.procedure-holder:hover .procedure-img, .procedures-block:hover .procedure-img {
  transform: scale(1.2);
}

.procedure-p {
  position: relative;
  transition: all 0.2s ease-out;
  transform: translateY(100%);
  opacity: 0;
  width: fit-content;
  max-width: 75%;
}

.slide-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 65px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.25);
  transition: all ease-in 0.25s;
}

.procedure-title, .location-title {
  font-weight: bold;
  font-family: "Cormorant";
  transition: all ease-in 0.25s;
  position: absolute;
  font-size: 20px;
  bottom: 20%;
  top: auto;
  width: fit-content;
}

.procedure-holder:hover .procedure-title {
  bottom: 45%;
  max-width: 85%;
  transform: translateY(60%);
}

@media (min-width: 992px) {
  .procedure-holder:hover .procedure-title {
    bottom: 35%;
    max-width: 85%;
    transform: translateY(30%);
  }
}

.procedure-holder:hover .slide-number {
  color: rgba(255, 255, 255, 0.65);
  font-size: 75px;
}

.procedure-holder:hover .procedure-p {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.2s ease-out 0.25s;
}

.procedure-holder:hover .procedure-link {
  width: 55px;
  height: 55px;
  border: solid 10px rgba(255, 255, 255, 1);
  background: var(--primary-dark);
}

.for-procedures {
  padding-left: 2rem;
  padding-right: 2rem;
}

.block-title {
  font-size: clamp(20px, 25px, 30px);
}

.aftertitle {
  font-size: 16px;
  width: 80%;
  display: block;
}

.carousel-control-prev, .carousel-control-next {
  height: 45px;
  width: 45px;
  background: var(--txt-light-color);
  position: relative;
  opacity: 1;
  top: auto;
  left: auto;
  border: solid 1px var(--neutral);
  color: var(--neutral);
  border-radius: 50%;
  font-size: 26px;
  text-align: center;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.25s;
}

.carousel-control-next svg, .carousel-control-prev svg {
  padding: 0;
  width: 85%;
  height: 85%;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--primary-dark);
  color: var(--txt-light-color);
  border-color: var(--primary-color);
}

.social-wrap {
  position: relative;
  bottom: 0;
  right: auto;
  display: flex;
  flex-direction: row;
  column-gap: 0.2rem;
  z-index: 1;
  left: auto;
  top: auto;
  margin-top: 2rem;
  justify-content: center;
  display: none;
}

@media (min-width: 992px) {
  .social-wrap {
    position: absolute;
    bottom: 25%;
    right: 15%;
    display: none;
    flex-direction: row;
    column-gap: 0.2rem;
    z-index: 1;
  }
}

.social-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
}

.social-icon {
  width: 17px;
}

.social-link svg {
  width: 100%;
  font-size: 20px;
}

.testimonial-image {
  width: 300px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: 0;
}

.img-block.for-testi {
  padding-right: 0;
  padding-bottom: 2rem;
}

.testimonials-title, .social-acc-name {
  font-family: "Cormorant";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 22px;
}

.testi-txt-block {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  border-radius: 30px;
  width: 100%;
  margin-top: 2rem;
  padding-left: 2rem;
}

.testi-txt-block:before, .for-locations:before {
  content: "";
  position: absolute;
  background: url("../../assets/img/block-bg.webp") no-repeat center center / 100%;
  z-index: -1;
  right: -10%;
  bottom: -5%;
  width: 200px;
  height: 170px;
}

.for-locations:before {
  right: auto;
  left: 4%;
  transform: scaleX(-1);
}

.controls-wrap {
  position: relative;
  width: 100%;
  height: auto;
  right: 0;
  bottom: -1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

@media (min-width: 992px) {
  .controls-wrap {
    position: absolute;
    width: 300px;
    height: auto;
    right: 0;
    bottom: 4%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
  }
}

.controls-wrap.is-testimonial {
  right: auto;
  left: 0%;
  bottom: -5%;
}

#testimonials-carousel .txt-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#testimonials-carousel {
  position: relative;
}

.social-image {
  max-width: 300px;
  border-radius: 20px;
  aspect-ratio: 1/0.85;
  object-fit: cover;
  margin: 0 auto;
}

.social-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 2rem 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.card-content-wrap, .testi-profile-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-auto-rows: auto auto;
  align-items: center;
  width: max-content;
  column-gap: 0.75rem;
}

svg.insta-icon {
  grid-column: 3 / -1;
  align-self: center;
  grid-row: 2 / -2;
  justify-self: center;
  color: #cc2366;
  width: 30px;
  height: 30px;
  position: relative;
}

.insta-profile-pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  grid-column: 1 / 1;
  grid-row: span 2;
  justify-self: center;
  align-self: center;
}

.social-acc-name, .post-author {
  grid-column-start: 2;
  grid-column-end: 2;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.sec-p.for-social, .blog-post-date {
  grid-column-start: 2;
  grid-column-end: 2;
  font-size: 12px;
  font-weight: normal;
  width: fit-content;
  margin: 0;
}

#social-media {
  margin-top: 2rem;
}

.controls-wrap.for-social {
  bottom: 0;
}

.carousel-control-next:focus, .carousel-control-prev:focus {
  color: var(--neutral);
}

.content-block {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--primary-lighter);
  border-radius: 25px;
  flex-direction: column;
  z-index: auto;
  overflow: hidden;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.75);
  min-height: 300px;
  width: 100%;
}

@media (min-width: 992px) {
  .content-block {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--primary-lighter);
    border-radius: 25px;
    flex-direction: column;
    z-index: auto;
    overflow: hidden;
    max-width: 30.5%;
    background: rgba(255, 255, 255, 0.75);
    min-height: 300px;
  }
}

.for-locations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: auto;
}

@media (min-width: 992px) {
  .for-locations {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: auto;
  }
}

.location-title {
  position: relative;
  margin-left: 0;
  margin-right: auto;
  color: var(--primary-color);
  bottom: auto;
  top: auto;
  transition: all ease 0.25s;
  margin-left: 1rem;
}

.social-link-wrap, .location-link-wrap {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--txt-color);
  row-gap: 1rem;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.location-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: all ease 0.25s;
  transform: scale(1);
}

.content-block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--procedure-mask-darker);
  z-index: 0;
  opacity: 0;
  transition: all ease 0.25s;
}

.content-block:first-of-type:after {
  display: none;
}

.location-list {
  list-style: none;
  color: var(--txt-color);
  padding: 0;
  margin: 0;
  position: relative;
  font-size: 16px;
  width: fit-content;
  height: auto;
  font-weight: 100;
  text-align: left;
  transition: all ease 0.25s;
}

.location-link-wrap {
  padding: 3rem;
  width: 100%;
  height: 100%;
  text-align: left;
  row-gap: 0.5rem;
}

.location-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 25px;
  bottom: 1rem;
  right: 1rem;
  z-index: auto;
  transition: all ease 0.25s;
  border: solid 5px rgba(255, 255, 255, 0);
}

.location-list li > a {
  color: var(--txt-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 0.5rem;
  text-decoration: none;
}

.location-list li {
  margin: 0.5rem 0;
}

.content-block:hover > img.location-img {
  opacity: 1;
  transform: scale(1.2);
}

.content-block:hover .location-title, .content-block:hover .location-list, .content-block:hover .location-icon {
  color: var(--txt-light-color);
}

.content-block:hover .location-icon {
  border: solid 5px rgba(255, 255, 255, 1);
  background: var(--primary-color);
  font-size: 20px;
}

.content-block:hover:after {
  opacity: 1;
}

.office-hours {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4rem;
}

.sec-title.for-o-h {
  margin-left: 8rem;
  color: var(--primary-color);
  width: 100%;
  margin: 4rem auto 1rem;
}

@media (min-width: 992px) {
  .sec-title.for-o-h {
    margin-left: 8rem;
    color: var(--primary-color);
  }
}

.sec-subtitle.for-o-h, .for-video {
  margin-left: 8rem;
  color: var(--txt-color);
  font-weight: lighter;
}

.sec-subtitle.for-o-h, .for-video {
  margin-left: 8rem;
  color: var(--txt-color);
  font-weight: lighter;
}

.for-footer .gofrs-logo {
  max-width: 85px;
}

.block-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}

@media (min-width: 992px) {
  .block-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 2rem 1rem;
  }
}

.social-wrap.for-footer {
  position: relative;
  top: auto;
  bottom: auto;
  right: auto;
  left: auto;
  margin: 0;
}

@media (min-width: 992px) {
  .social-wrap.for-footer {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 0;
  }
}

.for-footer .social-link, .for-blog-post .social-link {
  color: var(--primary-color);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  row-gap: 0.75rem;
  margin: 0;
  width: 100%;
  padding: 0;
}

@media (min-width: 992px) {
  .footer-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    column-gap: 0.75rem;
    margin: 0;
    padding: 0;
  }
}

.footer-nav a {
  text-transform: capitalize;
  text-decoration: none;
  font-size: 14px;
  color: var(--txt-color);
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sec-subtitle.for-app-cons {
  color: var(--txt-color);
  font-size: 12px;
  padding-top: 2px;
}

.for-app-cons-block {
  padding: 0;
  column-gap: 0.5rem;
}

@media (min-width: 992px) {
  .for-app-cons-block {
    margin: 1rem auto 0 0;
    column-gap: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
  }
}

.for-app-cons-block a {
  font-weight: normal;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  margin-left: auto;
  margin-right: 0;
}

.copy-rights-block {
  padding: 3rem 0;
}

.copy-rights-row {
  background: #001d31;
}

.sec-p.for-copy-rights {
  margin: 0;
  font-size: 12px;
  color: var(--txt-light-color);
}

.insta-icon:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100% );
}

.hero.for-inner {
  background: url("../../assets/img/sec-img-5.webp") scroll no-repeat center 0 / cover;
  min-height: 45dvh;
  height: auto;
}

@media (min-width: 992px) {
  .hero.for-inner {
    background: url("../../assets/img/sec-img-5.webp") fixed no-repeat center 0 / cover;
    min-height: 75dvh;
    height: auto;
  }
}

.social-wrap.for-inner {
  bottom: 5%;
}

.title-holder.for-inner {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .title-holder.for-inner {
    margin-top: 2rem;
  }
}

.for-practice {
  padding: 2rem 1rem;
}

.block-list li a span, .block-list li span {
  display: inline-block;
  width: 90%;
}

@media (min-width: 992px) {
  .for-practice {
    padding-left: 2rem;
    padding-bottom: 4rem;
  }
}

.breadcrumb.for-gofs {
  padding: 0 1rem;
  text-transform: capitalize;
}

.breadcrumb.for-gofs a {
  text-decoration: none;
  color: var(--txt-color);
  font-size: 14px;
}

.sec-title.inner-page {
  color: var(--primary-color);
  font-size: 26px;
}

footer .container .row:first-of-type {
  border-top: solid 1px var(--neutral);
}

.video-block, .testi-intro-block {
  justify-content: flex-start;
  padding-top: 2rem;
}

.video-holder {
  max-width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: auto;
  flex-direction: column;
}

@media (min-width: 992px) {
  .video-holder {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 8rem;
    flex-direction: column;
  }
}

.sec-subtitle.for-video, .video-title {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
  text-transform: capitalize;
}

.txt-block.surgeon-card {
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: solid 1px var(--neutral);
  row-gap: 1rem;
  max-width: 100%;
}

@media (min-width: 992px) {
  .txt-block.surgeon-card {
    justify-content: space-around;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: solid 1px var(--neutral);
    row-gap: 1rem;
    max-width: 35%;
  }
}

.surgeon-img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
  border-radius: 20px;
  max-height: 400px;
}

.sec-title.colored.for-card {
  font-size: 26px;
}

.sec-p.for-card {
  margin: 0 auto;
  width: 100%;
}

.for-practice .row {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.surgeon-card .gofrs-cta.for-sec {
  width: 100%;
  max-width: 100%;
}

.for-inner .gofrs-cta {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 992px) {
  .for-inner .gofrs-cta {
    max-width: 100%;
    width: 250px;
  }
}

.hero.for-inner.surgeons-hero {
  background: url("../../assets/img/surgeons-hero.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.surgeons-hero {
    background: url("../../assets/img/surgeons-hero.webp") fixed no-repeat center 0 / cover;
  }
}

.multi-media-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  top: auto;
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}

@media (min-width: 992px) {
  .multi-media-wrap, .testi-intro-wrap {
    display: flex;
    flex-direction: row;
    position: relative;
    position: sticky;
    top: 8rem;
    column-gap: 0.5rem;
    margin: 0 auto;
  }
}

.inner-block-list, .block-list {
  list-style: none;
  padding: 1rem 0 0 0;
  font-size: 16px;
  color: var(--txt-color);
}

.inner-block-list strong {
  color: var(--primary-color);
  margin-right: 0.2rem;
}

.hero.for-inner.procedures-hero {
  background: url(../../assets/img/procedures-hero-bg.webp) scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.procedures-hero {
    background: url(../../assets/img/procedures-hero-bg.webp) fixed no-repeat center 0 / 100%;
  }
}

.hero.for-inner.videos-hero {
  background: url(../../assets/img/videos-hero-img.webp) scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.videos-hero {
    background: url(../../assets/img/videos-hero-img.webp) fixed no-repeat center 0 / 100%;
  }
}

.hero.for-inner.patient-referral-hero {
  background: url(../../assets/img/patient-referral-hero.webp) scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.patient-referral-hero {
    background: url(../../assets/img/patient-referral-hero.webp) fixed no-repeat center 0 / 100%;
  }
}

.hero.for-inner.locations-hero {
  background: url(../../assets/img/locations-hero.webp) scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.locations-hero {
    background: url(../../assets/img/locations-hero.webp) fixed no-repeat center 0 / 100%;
  }
}

.hero.for-inner.implants {
  background: url("../../assets/img/Implants-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.implants {
    background: url("../../assets/img/Implants-hero-img.webp") fixed no-repeat center 0% / 100%;
  }
}

.sec-subtitle.video-title {
  font-weight: bold;
  color: var(--txt-color);
  display: block;
}

.procedure-image, .blog-image {
  max-width: 250px;
  min-height: 190px;
  object-fit: cover;
  max-height: 200px;
  border-radius: 15px;
}

.gofrs-cta.for-inner {
  max-width: 400px;
}

.gofrs-cta.for-inner:hover .button-ico {
  filter: brightness(0) saturate(100%) invert(40%) sepia(89%) saturate(3111%) hue-rotate(161deg) brightness(88%) contrast(96%);
}

.navbar-toggler {
  position: relative;
  right: 0;
  left: auto;
}

.footer-nav li {
  width: 100%;
}

@media (min-width: 992px) {
  .footer-nav li {
    width: auto;
  }
}

.hero.for-inner.nerve-injury {
  background: url("../../assets/img/nerve-injury-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.nerve-injury {
    background: url("../../assets/img/nerve-injury-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.hero.for-inner.publications-hero {
  background: url("../../assets/img/publications-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.publications-hero {
    background: url("../../assets/img/publications-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.hero.for-inner.patient-info {
  background: url("../../assets/img/patient-info-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.patient-info {
    background: url("../../assets/img/patient-info-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.hero.for-inner.insurance {
  background: url("../../assets/img/insurance-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.insurance {
    background: url("../../assets/img/insurance-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.hero.for-inner.for-testimonials {
  background: url("../../assets/img/nerve_hero.webp") fixed no-repeat center center / cover;
}

.hero.for-inner.maxillofacial-reconstruction {
  background: url("../../assets/img/facial_trauma_hero.webp") fixed no-repeat center center / cover;
}

.hero.for-inner.maxillofacial-surgery {
  background: url("../../assets/img/maxillofacial-surgery-hero-img.webp") scroll no-repeat 70% center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.maxillofacial-surgery {
    background: url("../../assets/img/maxillofacial-surgery-hero-img.webp") fixed no-repeat center center / cover;
  }
}

.hero.for-inner.wisdom-tooth-extraction {
  background: url("../../assets/img/wisdom-tooth-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.wisdom-tooth-extraction {
    background: url("../../assets/img/wisdom-tooth-hero-img.webp") fixed no-repeat center 0 / 100%;
  }
}

.hero.for-inner.blog-post {
  background: url("../../assets/img/blog-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.blog-post {
    background: url("../../assets/img/blog-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.input-holder {
  position: relative;
}

.form-input {
  position: relative;
  border-radius: 10px;
  border: solid 1px var(--neutral);
}

.consultation-wrap, .referrals-wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
  justify-content: center;
  align-items: center;
}

.form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  background: #ffffff;
}

@media (min-width: 992px) {
  .form {
    position: relative;
    width: 45%;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    background: #ffffff;
  }
}

.form-label {
  text-transform: capitalize;
  font-size: 14px;
  color: var(--txt-color);
}

.gofrs-cta.form-button {
  padding: 1rem;
  width: 100%;
  margin-top: 1rem;
  border-radius: 10px;
}

.consultation-wrap.active, .referrals-wrap.active {
  display: flex;
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 0%;
  right: 5%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 992px) {
  .close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 15%;
    right: 20%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
}

.hero.for-inner.contact {
  background: url("../../assets/img/contact-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.contact {
    background: url("../../assets/img/contact-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

.hero.for-inner.blog {
  background: url("../../assets/img/blog-hero-img.webp") scroll no-repeat center center / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.blog {
    background: url("../../assets/img/blog-hero-img.webp") fixed no-repeat center 0 / cover;
  }
}

#contact.form {
  margin: 1rem 0 0 0;
  width: 100%;
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-list li a {
  color: var(--txt-color);
  text-decoration: none;
  text-transform: capitalize;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 0.5rem;
  text-align: left;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}

.contact-list li a .list-icon {
  color: var(--primary-color);
  position: relative;
}

.contact-list li {
  margin: 1.5rem 0;
}

.sec-subtitle.blog-subtitle {
  color: var(--txt-color);
  font-weight: normal;
  text-transform: capitalize;
  font-size: 16px;
}

.block-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blog-tabs-item, .lang-tabs-item {
  width: stretch;
}

@media (min-width: 992px) {
  .blog-tabs-item, .lang-tabs-item {
    justify-content: right;
    margin: 2rem 0 0 auto;
    background: #f4f4f5;
    border-radius: 4px;
    border: none;
    padding: 0.2rem;
    width: fit-content;
  }
}

.nav-item.tab-item {
  position: relative;
  border: none !important;
  max-width: 50%;
  flex-grow: 1;
}

.tab-item a {
  height: 40px;
  padding: 0.5rem 1rem;
  color: var(--txt-color);
  text-transform: capitalize;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 0.5rem;
}

.tab-item a.nav-link.active {
  color: var(--primary-color) !important;
  border: solid 1px #b3b3b3;
  border-radius: 5px;
  font-weight: bold;
}

.blog-tab-pane, .lang-tab-pane {
  position: relative;
}

.tab-pane-container {
  display: flex;
  flex-direction: column;
  padding: 0rem;
  row-gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .tab-pane-container {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    row-gap: 1rem;
    margin-top: 1rem;
  }
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 20px;
  border: solid 1px var(--neutral);
  padding: 2rem 1rem;
}

@media (min-width: 992px) {
  .blog-card {
    position: relative;
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    border: solid 1px var(--neutral);
    padding: 2rem 1rem;
  }
}

.txt-block.for-blog-card {
  flex-grow: 2;
  max-width: 100%;
}

@media (min-width: 992px) {
  .txt-block.for-blog-card {
    flex-grow: 2;
    max-width: 60%;
  }
}

.img-block.for-blog-card {
  flex-grow: 1;
}

.gofrs-cta.for-blog-card {
  max-width: 250px;
}

.blog-image {
  max-width: 90%;
  max-height: 450px;
}

@media (min-width: 992px) {
  .blog-image {
    max-width: 400px;
    max-height: 450px;
  }
}

.card-content-wrap.for-blog-card {
  margin: 2rem 0;
}

.post-author {
  font-size: 16px;
  text-transform: capitalize;
}

.sec-p.blog-post-date {
  color: var(--text-clr);
  opacity: 0.65;
}

.txt-block.for-blog-post {
  padding-right: 2rem;
}

@media (min-width: 992px) {
  .txt-block.for-blog-post {
    padding-right: 6rem;
  }
}

.social-wrap.for-blog-post {
  right: 1%;
}

.social-txt {
  font-size: 16px;
  font-weight: lighter;
  font-family: "Poppins";
  color: var(--txt-color);
  line-height: 2.5;
}

.blog-post-social-holder {
  margin-bottom: 4rem;
}

.block-list {
  padding: 1rem;
  list-style: inherit;
}

.block-list li {
  margin: 0.5rem 0;
  text-decoration: none;
  text-transform: capitalize;
}

.sec-subtitle.medium {
  font-size: 20px;
  margin-top: 0.5rem;
}

.for-surgery {
  position: relative;
  bottom: 0;
  top: auto;
  width: fit-content;
  transition: all 0.25s ease-out;
  opacity: 0;
  transform: translateY(100%);
  margin-bottom: 1rem;
}

.procedure-holder:hover .card-subtitle.for-surgery {
  max-width: 85%;
  opacity: 1;
  transform: translateY(25%);
  transition: all 0.25s ease-out 0.3s;
}

.procedure-title {
  transform: translateY(100%);
  transition: all 0.25s ease-in;
  margin-bottom: 1rem;
}

.gofrs-nav {
  right: 0;
  transition: opacity ease 0.25s 0.1s, right 0.25s ease 0.15s;
  position: relative;
  margin-right: 1rem;
}

.sec-subtitle.for-surgeons-cards {
  font-size: 14px;
  color: var(--txt-color);
}

.video-holder iframe {
  width: 100%;
  height: auto;
  min-height: 250px;
}

.testi-intro-wrap {
  flex-direction: column;
}

.testimonials-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 992px) {
  .testimonials-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 1rem;
    align-items: start;
  }
}

.testi-holder {
  position: relative;
  background: transparent;
  min-height: 100px;
  border-radius: 15px;
  border: solid 1px var(--neutral);
  padding: 1rem;
  place-items: self-start;
  transition: all ease-out 0.25s;
}

.testi-holder:nth-child(even) {
  align-self: end;
  margin-top: 1rem;
}

.sec-title.inner-page.for-testi {
  color: var(--txt-color);
}

.testi-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  text-transform: capitalize;
  text-align: left;
}

.testi-p {
  font-size: 14px;
  text-transform: capitalize;
}

.testi-profile-wrap {
  margin: 0 auto 1rem 0;
}

.testi-holder:hover {
  background: hsl(from var(--neutral) h s calc(l + 15));
}

.testi-holder:after {
  content: "“";
  position: absolute;
  right: 1rem;
  top: 0;
  font-weight: bold;
  font-size: 50px;
  color: var(--neutral);
  width: auto;
  height: auto;
}

.tab-item a img.lang-icon {
  max-width: 25px;
  justify-self: self-start;
}

.procedures-grid-wrap, .videos-grid-wrap, .publications-grid-wrap {
  position: relative;
  padding: 0rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .procedures-grid-wrap, .videos-grid-wrap, .publications-grid-wrap {
    position: relative;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    gap: 0.5rem;
  }
}

.procedures-block {
  position: relative;
  background: transparent;
  min-height: 200px;
  place-content: center;
  overflow: hidden;
  border-radius: 15px;
  border: solid 1px var(--neutral);
}

.proc-link-block, .publications-link-block {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  row-gap: 0.5rem;
  text-decoration: none;
  z-index: 1;
  flex-direction: column;
  column-gap: 1rem;
}

.publications-link-block .exter-icon {
  color: var(--primary-color);
  transition: all ease-in-out 0.25s;
}

.publications-block:hover .exter-icon {
  color: var(--txt-light-color);
}

.block-title.for-proc {
  color: var(--txt-light-color);
  transition: all 0.2s ease-out 0.2s;
  transform: translateY(100%);
}

@media (min-width: 992px) {
  .block-title.for-proc {
    color: var(--txt-light-color);
    transition: all 0.2s ease-out 0.2s;
    transform: translateY(250%);
  }
}

.procedures-block:nth-of-type(2) .block-title.for-proc, .procedures-block:nth-of-type(5) .block-title.for-proc, .procedures-block:nth-of-type(6) .block-title.for-proc {
  transform: translateY(100px);
}

@media (min-width: 992px) {
  .procedures-block:nth-of-type(2) .block-title.for-proc, .procedures-block:nth-of-type(5) .block-title.for-proc, .procedures-block:nth-of-type(6) .block-title.for-proc {
    transform: translateY(150px);
  }
}

.sec-subtitle.for-proc {
  color: var(--txt-light-color);
  transition: all 0.2s ease-out 0.1s;
  opacity: 0;
  transform: translateY(150%);
}

.proc-p {
  position: relative;
  transition: all 0.2s ease-out 0.2s;
  opacity: 0;
  transform: translateY(150%);
}

.procedures-block:hover .proc-p, .procedures-block:hover .sec-subtitle.for-proc {
  opacity: 1;
  transform: translateY(0);
}

.procedures-block:hover .block-title.for-proc {
  transform: translateY(0%);
  transition-delay: 0s;
}

.hero.for-inner.post-op-instructions {
  background: url("../../assets/img/post-op-instructions-hero-bg.webp") fixed no-repeat center 0 / cover;
}

@media (min-width: 992px) {
  .hero.for-inner.post-op-instructions {
    background: url("../../assets/img/post-op-instructions-hero-bg.webp") scroll no-repeat center center / cover;
  }
}

.post-op-instrucs {
  margin: 2rem auto;
}

.post-op-instrucs .sec-p {
  margin-top: 0;
}

.post-op-instrucs .accordion-buttonm, .post-op-instrucs .accordion-button:not(focus) {
  background: hsl(from var(--primary-color) h s l / 0.1);
  box-shadow: none;
}

.post-op-instrucs .accordion-button[aria-expanded="true"] {
  box-shadow: none;
  background: hsl(from var(--primary-color) h s calc(l + 0) / 0.55);
  color: var(--txt-light-color);
}

.procedure-image.single-fluid {
  max-width: 75%;
  max-height: max-content;
}

a.dropdown-item {
  font-size: 16px;
  /*overflow-wrap: break-word;*/
  /*word-break: break-word;*/
  /*white-space: normal;*/
  max-width: stretch;
  line-height: 1.75lh;
}

.non-sticky {
  position: relative;
}

.videos-grid-wrap {
  margin-bottom: 2rem;
}

.videos-grid-wrap .video-holder {
  top: 0;
  justify-content: space-between;
}

.before-after-gallery {
  gap: 0.5rem;
}

.block-list li a {
  text-decoration: none;
}

.sec-subtitle.video-title a {
  text-decoration: none;
}

.special-title {
  text-decoration: none;
  font-size: 20px;
  text-transform: capitalize;
  display: block;
}

.sec-p span, .sec-subtitle.video-title a span, .sec-subtitle.video-title span, .special-title span {
  background: none !important;
}

.sec-p a {
  text-decoration: none;
}

.publications-link-block {
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-top: 4rem;
}

.block-title.for-publications {
  color: var(--primary-color);
  transition: all 0.2s ease-out 0.2s;
  letter-spacing: normal;
}

.publications-block {
  position: relative;
  border-radius: 15px;
  border: solid 1px var(--primary-color);
  min-height: 150px;
  background: transparent;
  transition: all 0.2s ease-out 0.1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
}

.publications-block:hover .block-title.for-publications {
  color: var(--txt-light-color);
  letter-spacing: 1px;
}

.publications-block:hover {
  background: var(--primary-color);
}

.gofrs-cta.for-nav {
  width: fit-content;
  font-size: 14px;
  border-radius: 15px;
}

@media (min-width: 992px) {
  .gofrs-cta.for-nav {
    width: auto;
    font-size: 14px;
  }
}

.row.for-surg {
  flex-direction: column;
}

@media (min-width: 992px) {
  .row.for-surg {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .gofrs.scrolled {
    width: 100%;
  }
}

@media (min-width:768px) {
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
    width: auto;
  }
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--primary-color);
}

