@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #fff;
  font-family: "Arial", sans-serif;
  overflow-x:hidden;
}

header {
  padding: 0 50px;
  background-color: #1d1f1d;
  height: 200px;
  display: flex;
  justify-content: space-between;
  background-image: url('images/header.png');
}

header a {
  text-decoration: none;
}

/** SITE LOGO**/
#brand {
  float: left;
}

#brand img {
  max-width: 100px;
  float: left;
  margin: 50px 20px;
}

/** MAIN TOP NAVIGATION **/
#mainnav { 
  font-size: 11pt;
  letter-spacing: 0.5px;
  padding-bottom: 7px;
}

#mainnav ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
}

#mainnav ul a {
  color: white;
  margin-bottom: 15px;
}

#mainnav ul li {
  padding: 5px;
  margin-left: 25px;
  margin: 0.8em 0.8em 0.8em 0.8em;
  line-height: 18pt;
}

#mainnav ul li:hover {
  color: #fff;
  transition: all 0.2s linear;
}

#mainnav ul li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .4s;
}
    
#mainnav ul li:hover::after {
 width: 100%;
    transition: width .3s;
        color: #116bed;
}


/** COLUMN 1 SIDE NAVIGATION **/
.column1 {
  float: left;
  width: 16%;
  background-color: #f9f9f9;
  padding: px;
  height: 1650px;
    
}

#sidenav {
  float: left;
  width: auto;
  background-color: transparent;
  letter-spacing: 0.5px;
  padding-right: 10px;
  margin-top: 102px;
  margin-left: 50px;
}

#sidenav ul li {
  list-style: none;
  font-size: 1vw;
  display: block;
  line-height: 17pt;
}

#sidenav a {
    text-decoration: none;

}

#sidenav ul li:hover {
  transition: all 0.2s linear;
  font-weight: bold;
}

#sidenav ul li:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #116bed;
  transition: width .4s;
}
    
#sidenav ul li:hover::after {
  width: 65%;
  transition: width .3s;
}

/** COLUMN 2 PAGE INFORMATION **/
.column2 {
  float: right;
  width: 79%;
  background-color: transparent;
  color: #4d4d4d;
  transition: 500ms;
  margin-top: 100px;
  margin-left: -80px;
}

.column2 a {
  color: #116bed;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 9pt;
  border-left: 0px #116bed solid;
  padding-left: 7px;
  padding-top: -2px;
  margin-top: 5px;
  line-height: 30pt;
  text-transform: uppercase;
}

.column2 a:hover {
   border-left: 20px #116bed solid;
   transition: .3s;
   font-weight: bold;
   transform: rotate(90deg)
}

.column2 h2 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  font-size: 30px;   
}

.column2 h3 {
    width: 80%;
    background-color: #3dc2c9;
    color: #fff;
    font-size: 12pt;
    padding: 8px 20px 8px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 16pt;
}

.column2 p { 
   margin: 18px; 
   width: 78%; 
   margin-bottom: 30px;
   font-family: 'Arial', sans-serif;
   line-height: 18pt;
}

.column2 p img {
   width: 70%;
}

.button-overlay {
    position: relative;
    display: inline-block;
}

.button-overlay img {
    width: 80%;

}

.button-overlay a {
    position: absolute;
    top: 70%;
    left: 0%;
    background-color: #116bed;
    color: #fff;
    width: 350px;
    text-align: center;
    border-radius: 200px;
    -webkit-appearance: none;
}

.button-overlay a:hover {
   transform: rotate(0);
   font-weight: bold;
   transition: .5s;
   -webkit-appearance: none;
}

table {
    margin-left: 20px;
    letter-spacing: 1px;
    margin-top: -25px;
}

td {
    padding-top: 35px;
    padding-bottom: 20px;
    border-bottom: 1.5px dashed #d1d1d1;
    line-height: 18pt;
}

table tr td a:hover {
    color: #116bed;
}

#memberphoto {
border-radius: 150px;
width: 100px;
border: 1.5px #d1d1d1 dashed;
padding: 3px;
float: left;
margin-right: 30px;
margin-top: -10px;
}

#clinicphotos {
width: 125px;
border: 1.5px #d1d1d1 dashed;
padding: 3px;
float: left;
margin-right: 30px;
margin-top: -10px;
}

/** ANIMATIONS **/
.bounce-in {animation: bounce-in 2s ease 1;}
@keyframes bounce-in {
  0% {opacity: 0.8; transform: scale(.3);}
  50% {opacity: 1; transform: scale(1.05);}
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}

.bounce-in-right {animation: bounce-in-right 2s ease 1;}
@keyframes bounce-in-right {
  0% {opacity: 0; transform: translateX(300px);}
  60% {opacity: 0.8; transform: translateX(-30px);}
  80% {transform: translateX(10px);}
  100% {transform: translateX(0);}
}

.bounce-in-left {animation: bounce-in-left 2s ease 1;}
@keyframes bounce-in-left {
  0% {opacity: 0; transform: translateX(-300px);}
  60% {opacity: 0.8; transform: translateX(30px);}
  80% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0.25;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

.reveal2{
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal2.active{
  transform: translateX(0);
  opacity: 1;
}

.reveal3{
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal3.active{
  transform: translateX(0);
  opacity: 1;
}

.reverse{
  position: relative;
  transform: translateY(0);
  opacity: 1;
  transition: 3s all ease;
}

.reverse.active{
  transform: translateY(50px);
  opacity: 0;
}

.column2 ol li { 
width: 70%; 
margin-bottom: 20px;
font-family: 'Arial', sans-serif;
line-height: 18pt;
margin-left: 80px;
}

/* Clear floats after the columns */
.row { 
  }

.row:after {
  content: "";
  display: table;
  clear: both;
}

/** GENERAL NAVIGATION **/
ul a {
  color: white;
  margin-bottom: 15px;
}

ul li {
  padding: 5px;
  margin: 0.8em;
  line-height: 20pt;
}

ul li:hover {
  color: #fff;
  transition: all 0.2s linear; 
}

ul li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .4s;
}
    
ul li:hover::after {
  width: 45%;
  transition: width .3s;
  color: #116bed;
}


/** MOBILE MENU **/
#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: inline-block;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 175px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
  background-color: #116bed;
  font-size: 14pt;
  margin-bottom: -15px;
  padding: 20px;
  line-height: 20pt;
  letter-spacing: 1px;
}

.mobile-menu li {
  margin-bottom: px;
  list-style: none;
  margin-left: 80px;
}

.mobile-menu li ul {
  position: relative;
  width: 50%;
  line-height: 20pt;  
}

/** DOWN ARROW PADDING **/
.nav__link img {
   padding: 3px;
}

/** DROPDOWN LINKS **/
.nav__link { 
  align-items: center; 
}

.dropdown__menu li {
  padding: 0px;
  width: 300px;
  margin-left: 130px;
}

.dropdown__menu2 li {
  padding: 0px;
  width: ;
  margin-left: 75px;
}

.dropdown__item {
  cursor: pointer;
  color: #ffffff;
  margin-left: 85px;
  margin-bottom: 65px;
}

.dropdown__item2 li {
  cursor: pointer;
  color: #4d4d4d;
  line-height: 12pt;
}

.dropdown__item2 li:hover {
  cursor: ;
  color: #4d4d4d;
}

.dropdown__link {
  padding: 0;
  color: #fff;
  display: ;
  align-items: left;
  column-gap: 0;
  font-size: 12pt;
}

.dropdown__link li {
  border-left: 1px solid #a1b3c9;
  padding-left: 15px;
  text-indent: inherit;
}

.dropdown__link ul li a {
  font-size: 1.25rem;
  font-weight: initial;
  margin-bottom: 5px;
}

.dropdown__menu, .dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
  margin-left: 10px;
}

/** Show dropdown menu & submenu **/
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__item2:hover .dropdown__menu, 
.dropdown__subitem > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__menu2, .dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
  margin-left: 10px;
}

/** Show dropdown menu & submenu **/
.dropdown__item:hover .dropdown__menu2, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__item2:hover .dropdown__menu2, 
.dropdown__subitem > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

/** Rotate dropdown icon **/
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/** Rotate dropdown icon **/
.dropdown__item2:hover .dropdown__arrow {
  transform: rotate(90deg);
}

/** HORIZONTAL MOBILE BORDER **/
hr {
  background: linear-gradient(90deg, 
      #3dc2c9,
      #3dc2c9 25%,
      #b4c948 25%,
      #b4c948 50%,
      #ffa24b 50%,
      #ffa24b 75%,
      #f15141 75%);
  height: 8px;
  width: 70%;
  margin-left: 70px;
  border: 0;
  margin-top: 40px;
}


/* FOOTER SECTION */
footer {
	padding: 1em;
	color: silver;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    background-color: #116bed; 
    text-align: center;
    padding-bottom: 25px;
    letter-spacing: 0.5px;
}
.footerhr {
  background: linear-gradient(90deg, 
      #3dc2c9,
      #3dc2c9 25%,
      #b4c948 25%,
      #b4c948 50%,
      #ffa24b 50%,
      #ffa24b 75%,
      #f15141 75%);
  height: 5px;
  width: 90%;
  border: 0;
  margin-top: 40px;
}



/** RESPONSIVE FOR MOBILE **/
@media only screen and (max-width: 1024px) {
header nav {display: none;}
    
body {overflow-x: hidden;}
    
header {
  background-color: #1d1f1d;
  height: 150px;
  display: flex;
  justify-content: space-between;
  background-image: url('images/header.png');
  background-size: cover;
  background-repeat: no-repeat;
}
    
#brand img {
  max-width: 60px;
  float: ;
  margin-top: 30px;
  margin-left: -20px;
}
    
.column1 {
  display: none;
}
  
.column2 {
  margin-top: 50px;
  width: 93%;
  margin-bottom: 100px;
  margin-left: 250px;
}
    
.column2 p {
  font-size: 9.5pt;
  line-height: 14pt;
}
    
.column2 h2 {
  font-size: 21pt;
}
    
.column2 h3 {
  font-size: 12pt;
  letter-spacing: 0.5pt;
}
    
#hamburger-icon {
  display: block;
  margin-top: 40px;
  margin-right: 90px;
}
    
.mobile-menu {
  margin-top: -50px;
  margin-left: -25px;
}

#sidenav {
  display: none;
}
    
    
.footerhr {
  margin-left: 20px;
}
    
.button-overlay img {
  width: 100%;
}
    
.button-overlay {
  position: none;
  margin-bottom: 50px;
}
    
.button-overlay a {
  width: 90%;
  font-size: 8pt;
  font-weight: bold;
  padding: 0px 3px;
  margin-top: 80px;     
}
    
table {
  margin-left: -25px;
  padding: 25px;
  margin-top: -65px;
}
    
td {
  font-size: 9pt;
  line-height: 12pt;
}
    
.bio {
  margin-left: -10px;
  font-size: 1em;
}
    
.mobile-menu li {
  margin-bottom: px;
  list-style: none;
  width: 55%;
}

.mobile-menu li ul {
  position: relative;
  width: 50%;
  line-height: 20pt;  
}
    
#clinicphotos {
  width: 100px;
  border: 1px dashed #d1d1d1;
}
    
.survey iframe {
  width: 1000px;

    }
    
header {
position: fixed;
position: top;
z-index: 999;
width: 100%;
    }

    .row {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 1200px) {
#sidenav {
  margin-left: 50px;
  padding-right: 10px;
}
}
