@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap"); /* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Adamina&display=swap");
:root {
  --clr-primary: #CC0000;
  --clr-secondary: #00FFD7;
  --clr-ternary: #D0CECE;
  --clr-accent: #707070;
  --clr-otc: #08C741;
  --clr-hover: #cc0000;
  --clr-extra2: #333333;
}

.preload * {
  transition: none !important;
}

.ff-su {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ff-c {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.ff-poppin {
  font-family: "Poppins", sans-serif;
}

.bg-primary {
  background-color: var(--clr-primary);
}

.bg-secondary {
  background-color: var(--clr-secondary);
}

.fc-primary {
  color: var(--clr-primary) !important;
}

.fc-secondary {
  color: var(--clr-secondary) !important;
}

.fw100 {
  font-weight: 100;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

.fw999 {
  font-weight: 999;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  border: transparent;
  border-radius: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
  border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 5px;
}

/* Handle on hover */
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  background-color: unset;
  border: none;
  border: none;
  color: unset;
}

.btn {
  cursor: pointer;
}

.img-ctn {
  display: grid;
  place-items: center;
}
.img-ctn img {
  width: 100%;
}

.h-img-ctn {
  display: grid;
  place-items: center;
}
.h-img-ctn img {
  height: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}

.socials {
  display: flex;
  align-items: center;
}
.socials .img-ctn {
  width: 2rem;
  margin: 0 0.5rem;
}
.socials img {
  margin: 0 3px;
  transition: 0.1s ease;
}
.socials img:hover {
  transform: scale(1.2);
  filter: invert(90%) sepia(95%) saturate(6262%) hue-rotate(355deg) brightness(91%) contrast(123%);
}
@media screen and (min-width: 1024px) {
  .socials .img-ctn {
    width: 2.4rem;
    margin: 0 0.75rem;
  }
}

.socials.red img {
  filter: invert(90%) sepia(95%) saturate(6262%) hue-rotate(355deg) brightness(91%) contrast(123%);
}
.socials.red img:hover {
  filter: grayscale(100%) brightness(0%);
}

.vertical-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertical-nav .nav-title {
  color: var(--clr-secondary);
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.vertical-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}
.vertical-nav ul li a {
  font-size: 1rem;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
}
.vertical-nav ul li a:hover, .vertical-nav ul li a.active {
  color: var(--clr-primary);
}
@media screen and (min-width: 769px) {
  .vertical-nav {
    align-items: flex-start;
  }
  .vertical-nav .nav-title {
    font-weight: 100;
    margin-bottom: 0.75rem;
  }
  .vertical-nav ul {
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  .vertical-nav ul li a {
    font-size: 0.75rem;
    font-weight: 100;
  }
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .backdrop-blur {
    background-color: rgba(33, 33, 33, 0.75);
    border: 1px solid #707070;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .backdrop-blur::before {
    display: none;
  }
}
.backdrop-blur {
  background-color: rgba(55, 55, 55, 0.75);
  border: 1px solid #707070;
}
.backdrop-blur::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-color: rgba(55, 55, 55, 0.35);
  filter: blur(5rem);
  z-index: -1;
  border-radius: 25px;
}

.subscriber-block {
  display: flex;
  padding: 0.25rem 0.5rem;
  border-bottom: 2px solid #fff;
}
.subscriber-block .sub-input {
  flex: 1;
}
.subscriber-block .sub-input input {
  background-color: transparent;
  color: #fff;
}
.subscriber-block .subscribe-btn {
  padding: 0.1rem 1.5rem;
  background-color: #fff;
  color: var(--clr-primary);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: var(--nav-transition);
}
.subscriber-block .subscribe-btn:hover {
  background-color: var(--clr-hover);
  color: #fff;
  box-shadow: var(--bottom-box-shadow-light);
}

.hanging-placeholder {
  position: relative;
}
.hanging-placeholder input, .hanging-placeholder .disappear {
  font-size: 0.75rem;
  font-weight: 300;
}
.hanging-placeholder input:focus ~ .floating-label,
.hanging-placeholder input:not(:focus):valid ~ .floating-label {
  top: 125%;
  /* bottom: -50%; */
  color: #fff;
  opacity: 1;
  /* border: 1px solid #000; */
}
.hanging-placeholder input:focus ~ .floating-label *,
.hanging-placeholder input:not(:focus):valid ~ .floating-label * {
  font-size: 0.8rem;
}
.hanging-placeholder input:focus ~ .floating-label .appear,
.hanging-placeholder input:not(:focus):valid ~ .floating-label .appear {
  opacity: 1;
}
.hanging-placeholder input:focus ~ .floating-label .disappear,
.hanging-placeholder input:not(:focus):valid ~ .floating-label .disappear {
  display: none;
}
.hanging-placeholder input {
  width: 100%;
  color: #000;
  outline: none;
  font-size: 0.75rem;
  padding: 0.3rem 0;
  border: none;
  border: none;
  transition: border-bottom 0.3s ease-in;
}
.hanging-placeholder input:focus, .hanging-placeholder input:active {
  outline: none;
}
.hanging-placeholder input::-moz-placeholder {
  color: var(--clr-accent);
}
.hanging-placeholder input:-ms-input-placeholder {
  color: var(--clr-accent);
}
.hanging-placeholder input::placeholder {
  color: var(--clr-accent);
}
.hanging-placeholder .floating-label {
  position: absolute;
  pointer-events: none;
  left: 0.5rem;
  top: 0.45rem;
  transition: 0.4s ease all;
  font-size: 0.75rem;
}
.hanging-placeholder .floating-label .appear {
  color: #fff;
  opacity: 0;
  transition: 0.4s ease all;
  position: absolute;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.hanging-placeholder .floating-label .disappear {
  color: var(--clr-accent);
}

.search-top {
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: var(--bottom-box-shadow);
  overflow: hidden;
  border: 1px solid #D7D7D7;
  display: flex;
  align-items: center;
  padding: 0.2rem 1rem;
}
.search-top .search-input {
  flex: 1;
  border-right: 2px solid lightgrey;
}
.search-top .search-input input {
  padding-left: 0.75rem;
}
.search-top .search-btn {
  margin: 0 0.25rem 0 1rem;
}

.booking-btn {
  padding: 0.5rem 2rem;
  background-color: #fff;
  color: #CC0000;
  border-radius: 2rem;
  box-shadow: var(--bottom-box-shadow-light);
  font-size: 1.25rem;
  transition: var(--nav-transition);
}
.booking-btn.dark {
  box-shadow: var(--bottom-box-shadow);
}
.booking-btn:hover {
  background-color: var(--clr-hover);
  color: #fff;
}

.red-btn {
  padding: 0.5rem 2rem;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--nav-transition);
}
.red-btn:hover {
  background-color: #F1F1F1;
  color: var(--clr-primary);
  border: 1px solid #D7D7D7;
  box-shadow: var(--bottom-box-shadow-3);
}

.clear-btn {
  padding: 0.25rem 2rem;
  border-radius: 2rem;
  border: 1px solid #fff;
  transition: var(--nav-transition);
  display: grid;
  place-items: center;
  font-weight: 600;
}
.clear-btn.white-hover:hover {
  background-color: #fff;
  box-shadow: var(--bottom-box-shadow-light);
  color: var(--clr-primary);
}
.clear-btn.red-hover:hover {
  background-color: var(--clr-primary);
  box-shadow: var(--bottom-box-shadow-light);
}

.contact-list {
  display: flex;
}
.contact-list.column {
  flex-direction: column;
}
.contact-list .contact-block {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.contact-list .contact-block .img-ctn {
  translate: 0 10%;
  width: 3rem;
  margin-right: 1rem;
}

.h-line {
  height: 100%;
  width: 3px;
  border-radius: 1rem;
  background-color: var(--clr-secondary);
}
.h-line.primary-clr {
  background-color: var(--clr-primary);
}

.title-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
}
.title-logo img {
  width: 25%;
  margin: -0.5% 0;
}
.title-logo h1 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(1%);
  line-height: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.title-logo h1 .fc-red {
  color: var(--clr-primary);
  margin: -1% 0 1%;
}
@media only screen and (min-width: 768px) {
  .title-logo {
    width: 12.5rem;
  }
  .title-logo h1 {
    font-size: 2.5rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .title-logo {
    width: 15rem;
  }
  .title-logo h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}

.title-block {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.5rem;
}
.title-block .h-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
}
.title-block .text-ctn {
  margin: 1rem 0.25rem;
  display: grid;
  place-items: start;
}
.title-block .text-ctn .min-text {
  font-size: 0.45rem;
  color: var(--clr-primary);
  margin-left: 1rem;
  font-weight: 800;
}
.title-block .text-ctn .h1 {
  font-size: 1rem;
  font-weight: bold;
}
.title-block .text-ctn .h1.grey {
  color: #918d8d;
}
.title-block .text-ctn .subtext {
  margin-left: 1.5rem;
  font-size: 0.65rem;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  .title-block {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1.25rem;
  }
  .title-block .h-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
  }
  .title-block .text-ctn {
    margin: 1rem 0.25rem;
  }
  .title-block .text-ctn .min-text {
    font-size: 0.65rem;
  }
  .title-block .text-ctn .h1 {
    font-size: 2rem;
    font-weight: 600;
  }
}

.blue-title .text-ctn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blue-title .text-ctn .min-text {
  font-size: 0.45rem;
  color: var(--clr-primary);
  margin-left: 1rem;
  font-weight: 800;
}
.blue-title .text-ctn .h1 {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  color: var(--clr-secondary);
  -webkit-text-stroke: 1px rgba(112, 112, 112, 0.1568627451);
}
@media only screen and (min-width: 1024px) {
  .blue-title .text-ctn {
    align-items: flex-start;
  }
  .blue-title .text-ctn .min-text {
    font-size: 0.65rem;
  }
  .blue-title .text-ctn .h1 {
    text-align: left;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
  }
}

.three-circles-1 {
  width: 15rem;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.three-circles-1 .circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: absolute;
}
.three-circles-1 .circle.first {
  width: 25%;
  background-color: #fff;
  border: 1px solid #D7D7D7;
  display: grid;
  z-index: 2;
  transform: translateX(136%) translateY(-110%);
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.three-circles-1 .circle.first::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  box-shadow: var(--bottom-box-shadow);
  border: 1px solid #D7D7D7;
  -webkit-animation: counterRotate 20s linear infinite;
          animation: counterRotate 20s linear infinite;
}
.three-circles-1 .circle.first img {
  width: 75%;
  -webkit-animation: counterRotate 20s linear infinite;
          animation: counterRotate 20s linear infinite;
}
@-webkit-keyframes counterRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes counterRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(136%) translateY(-110%);
  }
  50% {
    transform: rotate(90deg) translateX(136%) translateY(-110%);
  }
  100% {
    transform: rotate(0deg) translateX(136%) translateY(-110%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(136%) translateY(-110%);
  }
  50% {
    transform: rotate(90deg) translateX(136%) translateY(-110%);
  }
  100% {
    transform: rotate(0deg) translateX(136%) translateY(-110%);
  }
}
.three-circles-1 .circle.second {
  width: 90%;
  border: 2px solid #000;
  z-index: 1;
}
.three-circles-1 .circle.third {
  left: -10%;
  bottom: 0;
  width: 60%;
  border: 1px solid #D7D7D7;
  z-index: 1;
  box-shadow: var(--flat-box-shadow);
}
@-webkit-keyframes breath {
  0% {
    box-shadow: var(--flat-box-shadow);
  }
  25% {
    box-shadow: var(--flat-box-shadow-2);
  }
  50% {
    box-shadow: var(--flat-box-shadow-3);
  }
  75% {
    box-shadow: var(--flat-box-shadow-2);
  }
  100% {
    box-shadow: var(--flat-box-shadow);
  }
}
@keyframes breath {
  0% {
    box-shadow: var(--flat-box-shadow);
  }
  25% {
    box-shadow: var(--flat-box-shadow-2);
  }
  50% {
    box-shadow: var(--flat-box-shadow-3);
  }
  75% {
    box-shadow: var(--flat-box-shadow-2);
  }
  100% {
    box-shadow: var(--flat-box-shadow);
  }
}
.three-circles-1.reverse .circle.first {
  transform: translateX(-136%) translateY(-110%);
  -webkit-animation: rotate2 20s linear infinite;
          animation: rotate2 20s linear infinite;
}
.three-circles-1.reverse .circle.first img {
  -webkit-animation: counterRotate2 20s linear infinite;
          animation: counterRotate2 20s linear infinite;
}
@-webkit-keyframes counterRotate2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes counterRotate2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate2 {
  0% {
    transform: rotate(0deg) translateX(-136%) translateY(-110%);
  }
  50% {
    transform: rotate(-90deg) translateX(-136%) translateY(-110%);
  }
  100% {
    transform: rotate(0deg) translateX(-136%) translateY(-110%);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg) translateX(-136%) translateY(-110%);
  }
  50% {
    transform: rotate(-90deg) translateX(-136%) translateY(-110%);
  }
  100% {
    transform: rotate(0deg) translateX(-136%) translateY(-110%);
  }
}
.three-circles-1.reverse .circle.third {
  left: unset;
  right: -10%;
}
@media only screen and (min-width: 768px) {
  .three-circles-1 {
    width: 17.5rem;
  }
  .three-circles-1 .circle.first {
    width: 25%;
  }
  .three-circles-1 .circle.third {
    left: -7.5%;
    bottom: -2.5%;
    width: 85%;
  }
  .three-circles-1.reverse .circle.third {
    left: unset;
    right: -7.5%;
  }
}

.circular-block-ctn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.circular-block-ctn .circular-block {
  width: 12.5rem;
  position: relative;
  margin: 3rem 1rem 0;
  aspect-ratio: 1/1;
}
.circular-block-ctn .circular-block .circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: var(--bottom-box-shadow);
}
.circular-block-ctn .circular-block .circle.abs {
  position: absolute;
  bottom: -2.5%;
  right: -2.5%;
}
.circular-block-ctn .circular-block .img-ctn img {
  width: 50%;
}
.circular-block-ctn .circular-block .center-circle {
  width: 90%;
  background-color: #F1F1F1;
  border: 1px solid #FFF;
}
.circular-block-ctn .circular-block .side-circle {
  width: 42.5%;
  padding: 0.5rem;
  background-color: #0BDCBB;
  border: 1px solid #D7D7D7;
  display: grid;
  place-items: center;
}
.circular-block-ctn .circular-block .side-circle span {
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  text-transform: capitalize;
}
.circular-block-ctn .circular-block.occ-health .side-circle span {
  font-size: 0.75rem;
}

.artpiece-1 {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: grid;
  place-items: center;
}
.artpiece-1 .circle {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: var(--bottom-box-shadow-3);
}
.artpiece-1 .left {
  width: 50%;
  background-color: var(--clr-secondary);
  translate: -80% -60%;
}
.artpiece-1 .center {
  width: 90%;
  border: 2px solid var(--clr-primary);
  display: grid;
  place-items: center;
}
.artpiece-1 .center .grey {
  background-color: #D7D7D7;
  width: 30%;
  bottom: 20%;
}
.artpiece-1 .right {
  width: 80%;
  background-color: var(--clr-primary);
  translate: 65% -30%;
}
.artpiece-1.down .circle {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: var(--bottom-box-shadow-3);
}
.artpiece-1.down .left {
  width: 60%;
  background-color: var(--clr-secondary);
  translate: 80% 60%;
}
.artpiece-1.down .center {
  width: 90%;
  border: 2px solid var(--clr-primary);
  display: grid;
  place-items: center;
}
.artpiece-1.down .center .grey {
  background-color: #D7D7D7;
  width: 30%;
  bottom: unset;
  top: 20%;
}
.artpiece-1.down .right {
  width: 80%;
  background-color: var(--clr-primary);
  translate: -65% 30%;
}

.glow-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}
.glow-carousel-container .dir-arrow {
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  aspect-ratio: 1/1;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #fff;
  border: 1px solid #F1F1F1;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.glow-carousel-container .dir-arrow img {
  width: 0.5rem;
}
.glow-carousel-container .dir-arrow.left {
  transform: rotate(180deg);
  left: 5%;
}
.glow-carousel-container .dir-arrow.right {
  right: 5%;
}
.glow-carousel-container .carousel-viewport {
  width: 250px;
  margin: 0 0.5rem;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.glow-carousel-container .carousel-viewport::-webkit-scrollbar {
  width: unset;
  border-radius: 1rem;
  display: none;
}
.glow-carousel-container .carousel-viewport::-webkit-scrollbar-track {
  display: none;
  margin: 0 clamp(20rem, 4.2308rem + 23.0769vw, 25.5rem);
  background-color: var(--clr-tertiary);
  border-radius: 1rem;
}
.glow-carousel-container .carousel-viewport .carousel-cell {
  flex: 0 0 auto;
  margin: 0.5rem;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  border-radius: 1rem;
}
.glow-carousel-container .carousel-viewport .carousel-cell:first-of-type {
  margin-left: 2rem;
}
.glow-carousel-container .carousel-viewport .carousel-cell:last-of-type {
  margin-right: 2rem;
}

.rating-ctn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 420/550;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 1rem;
}
.rating-ctn .top {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.rating-ctn .top .left {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--clr-primary);
  overflow: hidden;
  margin: 0 1rem;
}
.rating-ctn .top .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rating-ctn .top .right .username {
  font-weight: bold;
  color: #707070;
}
.rating-ctn .top .right .rating {
  height: 1rem;
  background: url(../images/icons/star.svg);
  background-repeat-x: repeat;
  background-repeat-y: no-repeat;
  background-size: 1rem 1rem;
}
.rating-ctn .top .right .rating[value="0"] {
  width: 0rem;
}
.rating-ctn .top .right .rating[value="0.5"] {
  width: 0.5rem;
}
.rating-ctn .top .right .rating[value="1"] {
  width: 1rem;
}
.rating-ctn .top .right .rating[value="1.5"] {
  width: 1.5rem;
}
.rating-ctn .top .right .rating[value="2"] {
  width: 2rem;
}
.rating-ctn .top .right .rating[value="2.5"] {
  width: 2.5rem;
}
.rating-ctn .top .right .rating[value="3"] {
  width: 3rem;
}
.rating-ctn .top .right .rating[value="3.5"] {
  width: 3.5rem;
}
.rating-ctn .top .right .rating[value="4"] {
  width: 4rem;
}
.rating-ctn .top .right .rating[value="4.5"] {
  width: 4.5rem;
}
.rating-ctn .top .right .rating[value="5"] {
  width: 5rem;
}
.rating-ctn .bottom {
  width: 100%;
  flex: 1;
  overflow-y: auto;
}
.rating-ctn .bottom .message {
  width: 100%;
  font-size: clamp(0.85rem, 0.8071rem + 0.2143vw, 1rem);
  font-weight: 300;
  padding: 0.25rem 1rem;
}
@media screen and (min-width: 1024px) {
  .rating-ctn {
    aspect-ratio: 420/380;
  }
}

.doctors-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 500/720;
  width: clamp(15rem, 13.5714rem + 7.1429vw, 20rem);
  background-color: #fff;
  border-radius: 0 1rem 0 1rem !important;
  overflow: hidden;
  position: relative;
  box-shadow: var(--bottom-box-shadow-2) !important;
}
.doctors-panel::before {
  content: "";
  position: absolute;
  width: 70%;
  bottom: -1.5px;
  left: 15%;
  height: 3px;
  border-radius: 1rem;
  background-color: var(--clr-secondary);
}
.doctors-panel .profile-pic {
  align-self: flex-start;
  border-radius: 0 1rem 0 1rem;
  overflow: hidden;
}
.doctors-panel .doc-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.doctors-panel .doc-details .name {
  font-weight: bold;
}
.doctors-panel .doc-details .role {
  font-weight: lighter;
  font-size: 0.65rem;
  color: var(--clr-primary);
  margin: 0.5rem 0;
}

.info-popup {
  z-index: 200;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6666666667);
  place-items: center;
  overflow-y: auto;
  padding: 8rem 0;
}
.info-popup[data-tab] {
  display: grid !important;
}
.info-popup .close-btn {
  width: 1.5rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.info-popup .close-ctn {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.info-popup .service-info-block {
  width: 90%;
  position: relative;
  border: 1px solid #F1F1F1;
  background-color: #FFFFFF;
  box-shadow: var(--bottom-box-shadow);
  flex-direction: column;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  display: none;
}
.info-popup .service-info-block::before {
  content: "";
  position: absolute;
  width: 80%;
  top: -1.5px;
  left: 10%;
  height: 3px;
  border-radius: 1rem;
  background-color: var(--clr-secondary);
}
.info-popup .service-info-block .header-ctn {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}
.info-popup .service-info-block .header-ctn .center-circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: var(--bottom-box-shadow);
  border: 1px solid #F1F1F1;
  width: 5rem;
  margin: 0.75rem 0;
}
.info-popup .service-info-block .header-ctn .center-circle img {
  width: 50%;
}
.info-popup .service-info-block .header-ctn .h-text {
  font-weight: 700;
  text-align: center;
  font-size: 0.8rem;
}
.info-popup .service-info-block .body-ctn {
  width: auto;
  padding: 0.5rem 0.5rem;
  flex: 1;
  overflow: auto;
  margin: 1rem 0;
}
.info-popup .service-info-block .body-ctn p {
  font-size: 0.85rem;
  font-weight: 300;
}
.info-popup .service-info-block .body-ctn .h1 {
  font-weight: 700;
}
.info-popup .service-info-block .body-ctn ul {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem 0.5rem;
}
.info-popup .service-info-block .body-ctn ul br {
  display: none;
}
.info-popup .service-info-block .body-ctn ul li {
  font-size: 0.85rem;
  font-weight: 300;
  list-style: disc;
  list-style-position: outside;
  margin-left: 1rem;
}
.info-popup .service-info-block .body-ctn ul li::marker {
  color: var(--clr-primary);
}
.info-popup .service-info-block .body-ctn ul li:first-of-type {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .info-popup .service-info-block.medical-center .body-ctn {
    align-self: center;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(3, auto);
    gap: 0.5rem 2rem;
  }
  .info-popup .service-info-block.medical-center .body-ctn .first {
    grid-column: 1/1;
    grid-row: 1/4;
  }
  .info-popup .service-info-block.medical-center .body-ctn .second {
    grid-column: 2/2;
    grid-row: 1/2;
  }
  .info-popup .service-info-block.medical-center .body-ctn .third {
    grid-column: 2/2;
    grid-row: 2/3;
  }
  .info-popup .service-info-block.medical-center .body-ctn .fourth {
    grid-column: 3/3;
    grid-row: 1/1;
  }
  .info-popup .service-info-block.medical-center .body-ctn .fifth {
    grid-column: 3/3;
    grid-row: 2/3;
  }
  .info-popup .service-info-block.medical-center .body-ctn .sixth {
    grid-column: 4/4;
    grid-row: 1/1;
  }
  .info-popup .service-info-block.medical-center .body-ctn .seventh {
    grid-column: 2/2;
    grid-row: 3/3;
  }
}
.info-popup .service-info-block .footer-ctn {
  align-self: center;
  margin-bottom: 1.25rem;
}
.info-popup[data-tab=medical-center] .medical-center {
  display: flex;
}
.info-popup[data-tab=health-insure] .health-insure {
  display: flex;
}
.info-popup[data-tab=occ-health] .occ-health {
  display: flex;
}

.snack-ctn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: none;
  min-width: 2.5rem;
  min-height: 2.5rem;
  transition: var(--nav-transition);
  overflow: hidden;
  opacity: 1;
}
.snack-ctn .snack {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  border: 1px solid var(--clr-primary);
  border-radius: 25px;
  background-color: var(--clr-ternary);
}
.snack-ctn img {
  height: 2.5rem;
}
.snack-ctn .snack-icon {
  cursor: pointer;
}
.snack-ctn .snack-message {
  flex: 0;
  white-space: nowrap;
  width: 0;
  overflow: hidden;
  transition: var(--nav-transition);
}
.snack-ctn .snack-close {
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50%;
  padding: 0.5rem;
  transition: 0.3s ease;
  display: none;
}
.snack-ctn .snack-close:hover {
  background-color: var(--clr-primary);
}
.snack-ctn.shown {
  min-width: 25rem;
}
.snack-ctn.shown .snack-message {
  flex: 1;
  width: auto;
  margin-left: 1rem;
  margin-right: 1rem;
}/*# sourceMappingURL=components.css.map */