@import url('https://fonts.googleapis.com/css2?family=Joan&display=swap');

body{
  background-color: #6C706E;
  font-family: 'Joan', serif;
}



.header  h1{
  position: absolute;
  z-index: 3;
  color: white;
  top: 3%;
  left: 5%;
  font-family: 'Joan', serif;

}

/* Dropdown Button */
.header .dropbtn {
  background-color: rgba(0,0,0,0.2);
  color: white;
  padding: 16px;
  padding-right: 30px;
  font-size: 16px;
  border: none;
  width: 200px;
  border-radius: 10px;
}

/* The container <div> - needed to position the dropdown content */
.header .dropdown {
  left: 70%;
  top: 5%;
  position: absolute;
  display: inline-block;
  z-index: 3;
}

/* Dropdown Content (Hidden by Default) */
.header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #CCCECE ;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
  border-bottom-right-radius: 30px;
}

/* Links inside the dropdown */
.header .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom-right-radius: 30px;
}

/* Change color of dropdown links on hover */
.header .dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.2);

}

/* Show the dropdown menu on hover */
.header .dropdown:hover .dropdown-content {
  display: block;
  animation-name: fade-in;
  animation-duration: 0.5s;
}

@keyframes fade-in {
  0%{
    height: 100px;
    opacity: 0;
  }
  50%{
    height: 295px;
    opacity: 0.3;
  }
  100%{
    height: auto;
    opacity: 1;
  }
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.header .dropdown:hover .dropbtn {
  background-color: rgba(0,0,0,0.1);
}

.arrow {
  position:  absolute;
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  z-index: 3;
  left: 90%;
  top: 40%;

}

.down {
  position: absolute;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transition: 0.5s;
  z-index: 3;
  border-color: white;
}
.header .dropdown:hover > .down{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: 0.5s;
}

.arrow1 {
  position:  absolute;
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  z-index: 3;
  top: 30px;
  left: 30px;

}

.down1 {
  position: absolute;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transition: 0.5s;
  z-index: 3;
  border-color: black;
}
 .dropdown1:hover > .down1{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: 0.5s;
}

.dropbtn1 {
  background-color: rgba(0,0,0,0.3);
  color: white;
  padding: 16px;
  padding-left: 70px;
  margin-top: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 900px;
  text-align: left;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropbtn1:hover, .dropbtn1:focus {
  background-color: rgba(0,0,0,0.6);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown1 {
  position: relative;
  display: inline-block;
}

.dropdown-content1 {
  display: none;
  opacity: 0;
  position: relative;
  background-color: transparent;
  width: 870px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 5;
  animation-name: fade;
  animation-duration: 1s;
  padding: 15px;
  color: black;
}

.show1 {
  display: block;
  opacity: 1;
  background-color: rgba(0,0,0,0.3);
  color: white;
}
.article{
  overflow-x: hidden;
  margin-top: 200px;
  margin-left: 3%;
  margin-right: 3%;
  background-color:#E6EFF0;
  border-radius: 20px;
  padding: 20px;
  width: 90%;
}

.article .title {
  width: 100vw;
  left: 0;
  text-align: center;
  margin-bottom: 150px;
  font-size: 20px;

}
.article img{
  width: 300px;
  height: auto;
  float: right;
  border-radius: 10px;
  margin: 5px;
}
.article h2{
  color: black;
  text-decoration: underline;
}
.article p{
  font-size: 20px;
  text-indent: 70px;
}
.article p span{
  font-size: 15px;
}
.article .citations{
  text-align: center;
}
.article .citations h3{
  font-size: 25px;
}

.ham_btn{
  display: none;
}
@media screen and (max-width: 1050px){
  .ham_btn{
    position: absolute;
    top: 0px;
    left: 70%;
    display: flex;
    height: 100px;
    z-index: 25;


  }
  .ham_btn .menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    margin: 0;
  }
  .ham_btn  .line {

    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ham_btn .line1 {

    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .ham_btn .line2 {

    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .ham_btn .line3 {

    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
.ham_btn   .opened .line1 {

    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .ham_btn .opened .line2 {

    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .ham_btn .opened .line3 {

    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }

  .header .dropdown{
    display: none;
  }
  /* .header .dropdown-content{
    display: none;
  }
  .headedr .dropdown-content.active{
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: grey;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin:0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  } */
  .header .dropdown.active {
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: grey;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin:0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;


  }
  .header .toggle{
    display: none;
    position: relative;
    width: 70px;
    height: 70px;
    background: url('clinic_photos/ham.jpg');
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 10000;
    margin-left: 85%;
  }
  .header .toggle.active{
    display: none;
    background: url('clinic_photos/ham_closed1.jpg');
    background-size: 65px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header .dropdown .dropdown-content {
    display: block;
  }
  .article{
    overflow-x: hidden;
    margin-top: 150px;
    margin-left: 3%;
    margin-right: 3%;
    background-color:#BBD7E3 ;
    border-radius: 20px;
    padding: 10px;
    width: 90%;
  }

  .article .title {
    left: 0;
    margin-bottom: 100px;
    font-size: 15px;

  }
  .article .title h1{
    font-size: 21px;
  }
  .article .title h2{
    font-size: 15px;
  }
  .article p{
    text-align: center;
  }
  .header  h1{
    position: absolute;
    z-index: 3;
    color: black;
    top: 3%;
    left: 5%;
    font-family: fantasy;
    font-size: 23px;

  }
  .header .dropdown:hover .dropdown-content {
  display: block;
  animation-name: none;
  animation-duration: 0s;
}
.arrow {
  display: none;
}


}
