* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --dark-brown: #473c38;
  --light-brown: #c3ab89;
}
/* ### CONTACT MENU ### */
.navs {
  background: var(--light-brown);
  border-bottom: 1px solid var(--dark-brown);
}
.first__nav > ul {
  display: flex;
  margin-bottom: 0 !important;
}
.first__nav > ul > li {
  list-style: none;
  padding: 10px 16px;
  border-left: 1px solid var(--dark-brown);
}
.first__nav > ul > li:first-child {
  padding-right: 0;
  margin-right: -22px;
}
.first__nav > ul > li:last-child {
  border-right: none;
  border-bottom: none;
}
.first__nav > ul > li > a {
  text-decoration: none;
  color: var(--dark-brown);
  font-weight: 500;
  display: inline-block;
}
.nav__link__3::after {
  content: 'Wellness analysis appointment';
  display: block;
  margin-top: 2px;
}
.nav__link__3:hover::after {
  content: '+91 9724-94-95-96';
}
.navs .call {
  max-width: 40%;
}
@media (max-width: 768px) {
  .first__nav > ul {
    flex-direction: column;
  }
  .navs .call {
    max-width: 9%;
  }
  .first__nav > ul > li:first-child {
    margin-right: 0;
  }
  ol,
  ul {
    padding-left: 0 !important;
  }
  .first__nav > ul > li {
    padding: 8px 16px;
    border-left: none;
    border-bottom: 1px solid var(--dark-brown);
  }
}
/* ### END CONTACT MENU ### */
/* ### HEADER ### */
.main__menu {
  background: var(--dark-brown);
  color: var(--light-brown);
}
.main__menu .sp__pad {
  padding: 0 3.333rem;
}
.main__menu .logo {
  transition: padding 0.4s ease 0s;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  color: #fff;
}
.main__menu .logo img {
  max-width: 11%;
}
.navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.main__menu a {
  font-size: 1em;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
}
.main__menu a:hover {
  color: #fff;
}
.hover-underline-animation {
  position: relative;
  color: var(--light-brown);
}
.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--light-brown);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* ### END HEADER ### */
@media (max-width: 768px) {
  .main__menu .logo {
    display: contents;
  }
  .main__menu .logo img {
    max-width: 15%;
  }
}
