*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
  font-size: 16px;
	font-family: "Roboto", sans-serif;
	background-image: url('../img/Background.png');
  background-size: cover;
	color: #fff;
}

.column {
  float: left;
  width: 50%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.center {
  text-align: center;
}

.brand {
  font-size: xx-large;
}

hr {
  border: 1px solid red;
}
.container{
	width: 90%;
	margin: auto;
}
.header {
  text-align: center;
  padding: 40px 0px;
}
.logo img {
  width: 75%;
  height: auto;
  max-height: 400px;
}

nav {
  text-align: center;
  margin-bottom: 40px;
}
nav ul li {
  font-size: 20px;
  list-style: none;
  display: inline-flex;
  padding: 10px 25px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav ul li a:hover{
  text-decoration: none;
  color: #c0b298;
}
nav ul li a.active {
  color: #c0b298;
}
.bio {
  display: flex;
  justify-content: space-between;
}
.bio-left img {
  width: 95%;
  height: 95%;
  max-width: 450px;
  max-height: 500px;
  border: 3px solid red;
  border-radius: 5px;
}
.bio-right {
  width: 48%;
  padding: 10px 0;
}
.bio-left {
  width: 48%;
  text-align: right;
}
.bio-right p {
  max-width: 600px;
  max-height: 600px;
  font-size: 15px;
  line-height: 2rem;
  letter-spacing: 0.05rem;
}

.bio-right p b {
  color: #c0b298;
}
.contact {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px;
  width: 80%;
  margin: auto;
}
.contact-left h1 {
  font-size: 50px;
  margin: 20px 0px;
  color: #c0b298;
}
.contact-lef ul {
  margin: 0;
  padding: 0;
}
.contact-left ul {
  list-style: none;
}

.contact-left ul li {
  line-height: 46px;
}
.contact-left ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-right img {
  width: 100%;
}
.contact-right {
  margin-top: 50px;
}

.contact-left {
  padding-top: 130px;
}

/* Contact CSS */
.contact-page {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
}
.contact-title h1 {
  margin-bottom: 20px;
}
.contact-title p {
  line-height: 24px;
}

.contact-title p a {
  color: #c0b298;
  font-weight: 800;
  text-decoration: none;
}
form {
  margin-top: 30px;
}
form input, textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  border: 2px solid red;
  border-radius: 5px;
}
form textarea{
  height: 100px;
  font-size: 17px;
}
form a#book-appointment-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
form button,
form a#book-appointment-button {
  padding: 15px;
  width: 150px;
  font-weight: 600;
  border-radius: 6px;
  outline: none;
  color: #000;
  border: 3px solid #c0b298;
  font-size: 15px;
  transition: .3s all;
  background-color: #c0b298;
}
form button:hover,
form a#book-appointment-button:hover {
  background-color: #000;
  color: #fff;
  border: 3px solid #c0b298;
  cursor: pointer;
}

footer {
  margin-top: 75px;
  padding: 20px;
}

footer a {
  color: #fff !important;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .bio{
    display: block;
  }
  .bio-left, .bio-right{
    width: 100%;
  }
  #audios{
    margin-bottom: 50px;
  }
  .contact-page{
   width: 80%;
 }
 form button,
 form a#book-appointment-button {
  margin-top: 40px;
 }
}

@media screen and (max-width: 768px) {
  .contact-page{
    width: 100%;
  }
  .contact{
    width: 100%;
  }
  .contact-left ul li a{
    font-size: 15px;
  }
  .contact-left{
    padding-top: 0px !important;
  }
  .contact-page {
    margin-bottom: 50px;
  }
  form button,
  form a#book-appointment-button {
    margin-top: 30px;
  }
}

@media screen and (max-width: 500px) {
  .contact-left ul li:last-child{
    font-size: 15px !important;
  }
}
