html {
  --tamblue900: rgb(15, 90, 121);
  --tamblue600: #1990ce;
  --tamblue200: #70b7dd;
  --tamwhite: rgb(243, 241, 241);
  --tamblack: #2b2d42;
  --tamblacker: #4a4e77;
  --tamgreen200: #63d471;
  --tamgreen600: #30b03f;

  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  margin-top: 10rem;
  padding-bottom: 2rem;
  background-color: var(--tamwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  max-width: 2100px;
  margin-top: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 3rem;
  color: rgb(102, 102, 102);
  margin: 0;
}

h3 {
  font-size: 2.5rem;
  color: rgb(102, 102, 102);
  margin: 0;
}

p {
  color: rgb(102, 102, 102);
  font-size: 2rem;
  margin: 0;
}

hr {
  margin: 2rem auto;
  width: 2rem;
  height: 2rem;
  background-color: var(--tamblue600);
}

.line {
  height: 1rem;
  /* background: linear-gradient(to right, #02b8bf 0%,#02b8bf 30%,#1990ce 30%,#1990ce 70%,#07bc83 70%,#07bc83 100%); */
  background-color: var(--tamblue600);
}

.contact-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--tamwhite);
}

.contact-button:hover {
  background-color: var(--tamgreen600) !important;
}

.contact-button img {
  margin-left: 0 !important;
}

.whatsapp-icon,
.instagram-icon {
  position: fixed;
  bottom: 4rem;
  left: 4rem;
  height: 2.5em;
  padding: 0.5rem;
  border-radius: 100%;
  transform: scale(2.5);
  background-color: var(--tamwhite);
  transition: 0.2s;
  z-index: 1;
}

.instagram-icon {
  left: 12rem;
}

.whatsapp-icon:hover {
  cursor: pointer;
  background-color: var(--tamgreen600);
}

.instagram-icon:hover {
  cursor: pointer;
  background-color: #d6249f;
}

#calltoaction-top {
  position: fixed;
  text-align: center;
  background-color: var(--tamblue200);
  font-size: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
  top: 0;
  z-index: 2;
}

#navbar {
  display: none;
}

#isologo {
  position: relative;
  display: block;
  margin: auto;
  width: 90%;
  z-index: 1;
}

#isologo-wrapper {
  background-color: var(--tamblack);
}

#logo {
  display: block;
  margin: auto;
  width: 20%;
}

#services ul {
  top: 1rem;
}

#services li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 1rem auto;
  height: 13rem;
  text-align: center;
  font-size: 3rem;
  background: linear-gradient(
    var(--tamblue200) 0%,
    var(--tamblue200) 90%,
    var(--tamblue600) 90%,
    var(--tamblue600) 100%
  );
}

#main-description {
  width: 85%;
  margin: auto;
  /* text-align: justify; */
  hyphens: auto;
}

#description {
  margin-bottom: 3rem;
}

#treatment-detail {
  background-color: var(--tamblue900);
  background-image: url("/public/images/treatment-bg.webp");
  text-align: center;
  padding-bottom: 3rem;
}

#treatment-cards li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  width: 80%;
  padding: 2rem;
  margin: 2rem auto;
}

#treatment-detail p,
#treatment-detail h2,
#treatment-detail h3 {
  color: var(--tamwhite);
}

#treatment-detail h2,
#staff h2,
#contact-info h2 {
  padding-top: 4rem;
  margin: 0 auto;
  font-size: 6rem;
  text-transform: uppercase;
}

#staff {
  width: auto;
  text-align: center;
}

#staff img {
  padding-bottom: 1.5rem;
  background-color: var(--tamblue600);
  width: 750px;
  max-height: 1000px;
  object-fit: cover;
}

#staff li {
  margin-bottom: 3rem;
}

#staff p,
#staff h2,
#staff h3 {
  color: rgb(102, 102, 102);
}

#contact-info {
  text-align: center;
  margin: 0;
}

#contact-info li {
  font-size: 1.5rem;
}

#contact-info a {
  text-decoration: underline;
}

#map {
  display: block;
  margin: 3rem auto 10rem;
  width: 90%;
}

#map iframe {
  height: 800px;
}
