:root {
  /* banner styles */
  --banner-color: #04223F;
  --banner-text-color: white;
  --banner-font-size: 0.875rem;
  --banner-font-family: 'poppins', sans-serif;
  /* header styles */
  --header-color: #EEEDE9;
  --header-font-family: 'poppins', sans-serif;
  --header-text-color: #080705;
  --header-font-size: 1.125rem;
  /* cta styles */
  --cta-bg-color: #D09859;
  --cta-text-color: white;
  --cta-font-size: 1.125rem;
  --cta-font-family: 'poppins', sans-serif;
  --cta-font-weight: 500;
  /* footer styles */
  --footer-text-color: #1C1C1C;
  --footer-background-color: #EEEDE9;
  --footer-text-size: 0.875rem;
  --footer-font-family: 'poppins', sans-serif;
}

body {
  margin: 0;
  background-color: white !important;
}

p {
  margin: 0;
  padding: 0;
}

/* Mobile Menu Section */
#mobile-menu {
  display: none;
}

.header {
  margin: 0;
}

.header-banner {
  width: 100%;
  min-height: 30px;
  max-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--banner-color);
  font-size: var(--banner-font-size);
  font-family: var(--banner-font-family);
}

.header-banner-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 60%;
}

.header-banner-text-container a {
  color: var(--banner-text-color);
}

.banner-text {
  margin: 0;
  text-align: center;
  text-decoration: underline;
}

.header-banner-close-button {
  color: var(--banner-text-color);
  font-size: 1.125rem;
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-family: var(--header-font-family);
  padding-right: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px 20px 50px;
  background-color: var(--header-color);
}

.header-logo-container img {
  height: auto !important;
}

.header-logo {
  max-width: 100%;
  height: auto;
}

.nav-items-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 80px;
}

.nav-items-container ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-items-container li {
  margin: 0 18px;
}

.nav-items-container a {
  color: var(--header-text-color);
  font-family: var(--header-font-family) !important;
  font-size: var(--header-font-size);
  text-decoration: none;
}

/* dropdown menu */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: var(--header-color);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: left;
  transition: 0.25s ease-in-out;
}

.dropdown-menu li {
  margin: 0px;
  padding: 2px 5px;
  text-align: left;
}

.dropdown-menu li:hover {
  background-color: #dddcd8;
}

.dropdown-menu ul {
  flex-direction: column;
}

.dropdown-menu-links {
  padding: 12px 0px 12px 5px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  text-align: left;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL'0,
    'wght'400,
    'GRAD'0,
    'opsz'48;
  display: none;
}

.dropdown span {
  display: none;
}

.header-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero-cta {
  background-color: #D09859 !important;
}

.main-cta {
  /* background-color: var(--cta-bg-color); */
  background-color: #D09859;
  font-family: var(--cta-font-family);
  font-weight: var(--cta-font-weight);
  font-size: var(--cta-font-size);
  color: var(--cta-text-color);
  padding: 5px 20px;
  border: none;
  border-radius: 30px;
  transition: .5s;
}

.main-cta:hover {
  transform: scale(1.02);
  cursor: pointer;
  /* box-shadow: 1px 3px 5px #575757; */
}


/* footer */
.footer-wrapper {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
}

.footer-inner-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 75px 50px 75px;
}

.footer-col {
  display: flex;
  font-family: var(--footer-font-family);
  flex-direction: column;
  width: 20%;
  text-align: left;
  padding: 0px 5px 0px 5px;
  /* justify-content: space-between; */
  font-size: var(--footer-text-size);
}

.footer-col-1 {
  width: 30%;
  justify-content: center;
  align-items: center;
}

.footer-col-1 img {
  width: 50%;
  max-width: 100%;
  height: auto;
}

.footer-col-6 {
  justify-content: space-between;
}

.new-patient-forms-button, .make-a-payment-button {
  background-color: #F7F7F7;
  font-family: var(--footer-font-family);
  color: #333;
  border: 1px solid black;
  border-radius: 5px;
  padding: 8px 10px;
  margin-top: 20px;
  width: 150px;
  cursor: pointer;
  transition: .25s;
}

.new-patient-forms-button:hover, .make-a-payment-button:hover {
  background-color: #bebebe;
}

.footer-col ul {
  margin: 0;
  padding: 0;
}

.footer-col li {
  padding: 3px 0px 3px 0px;
  list-style: none;
  text-decoration: none;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: var(--footer-text-color);
  transition: .25s;
}

.footer-col a:hover {
  color: #afafaf;
}

.footer-col p {
  margin: 0;
  padding: 3px 0px 3px 0px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.footer-social-icon {
  padding: 10px 10px 0px 0px;
}

.llm-link {
  color: var(--footer-text-color);
  font-family: var(--footer-font-family);
  text-decoration: none;
}

@media (max-width: 1300px) {
  .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-inner-container {
    width: 80%;
    flex-direction: column;
    padding: 0;
  }

  .footer-col {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid #939393;
    border-bottom: 1px solid #939393;
    padding: 15px 0px 15px 0px;
  }

  .footer-col-1 img {
    width: 30%;
    /* max-width: 50%; */
    height: auto;
  }

}

@media (max-width: 1075px) {

  .header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .header-logo-container {
    position: relative;
    right: 5vw;
  }

  #mobile-menu {
    display: block;
    position: absolute;
    /* top: 20%; */
    right: 10%;
    transform: translate(5%, 20%);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    z-index: 100;
    margin-left: 15%;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar-toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    display: block;
    background: #000000;
    transition: all .5s ease-in-out;
    z-index: 900;
  }

  #nav-btn-cont {
    display: none;
  }


  .nav-items-container {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    z-index: -1;
    background: #000000;
    transition: all 0.5s ease;
    padding: 5px 10px 5px 10px;

  }

  .nav-items-container.active {
    background: var(--header-color);
    margin: 0 auto;
    top: 0%;
    opacity: 1;
    z-index: 100;
    height: 100vh;
    font-size: 1.6rem;
    transition: all 1s ease;
    padding: 5px 10px 5px 10px;
  }

  /* dropdown menu after 1075px breakpoint */
  .dropdown {
    width: 250px;
    visibility: visible;
    opacity: 1;
  }

  .dropdown-menu {
    position: relative;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    /* max-height: 0; */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }

  .dropdown span {
    display: block;
    right: 0;
    float: right;
    cursor: pointer;
    font-size: 40px;
    max-height: 300px;
  }

  .dropdown-menu.selected {
    display: block;
    max-height: 500px;
    /* animation-name: dropdownAnimation; */
    /* animation-duration: .65s;
    animation-timing-function: ease-in-out; */
  }

  @keyframes dropdownAnimation {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }


  .dropdown-menu.default {
    display: none;
  }


  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* text-align: center; */
    width: 100%;
    display: table;
  }

  .nav-list li {
    padding: 15px 20px;
    /* width: 100%; */
    height: auto;
  }

  .main-cta {
    display: none;
  }

}

@media (max-width: 767px) {
  .header-container {
    flex-wrap: wrap;
  }

  .header-logo-container,
  .nav-items-container,
  .header-cta-container {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .header-container {
    /* justify-content: space-between; */
    padding: 20px 60px;
  }

  .footer-col-1 img {
    width: 50%;
    /* max-width: 50%; */
    height: auto;
  }
}